1 package org.jbpm.bpel.par; 2 3 import java.util.ArrayList ; 4 import java.util.List ; 5 6 import org.jbpm.bpel.def.Import; 7 8 9 13 public class ParDefinition { 14 15 private String location; 16 private List imports = new ArrayList (); 17 18 public String getLocation() { 19 return location; 20 } 21 22 public void setLocation(String location) { 23 this.location = location; 24 } 25 26 public List getImports() { 27 return imports; 28 } 29 30 public void addImport(Import imp) { 31 imports.add(imp); 32 } 33 } 34 | Popular Tags |