1 package org.enhydra.shark.xpdl.elements; 2 3 4 import org.enhydra.shark.xpdl.XMLCollection; 5 import org.enhydra.shark.xpdl.XMLElement; 6 7 12 public class Responsibles extends XMLCollection { 13 14 public Responsibles (RedefinableHeader parent) { 15 super(parent, false); 16 } 17 18 public XMLElement generateNewElement() { 19 return new Responsible(this); 20 } 21 22 } 23 | Popular Tags |