10-03-2011 04:57 PM
public class Animal{
private String color;
(getters&setters)
}
public class Cat extends Animal{
private String name;
(getters&setters)
}
public class AnimalTask
implements JavaDelegate {
public void execute(DelegateExecution execution) {
Cat cat = new Cat();
cat.setColor = "cyan";
cat.setName = "Tom";
execution.setVariable("ANIMAL", cat);
}
}
10-05-2011 02:27 AM
10-05-2011 09:11 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.