1 package org.jbpm.bpel.xml; 2 3 import org.w3c.dom.Element ; 4 5 import org.jbpm.bpel.def.Activity; 6 import org.jbpm.bpel.def.Validate; 7 8 12 public class ValidateReader extends ActivityReader { 13 14 protected Activity createActivity() { 15 return new Validate(); 16 } 17 18 protected void readActivity(Activity activity, Element activityElem) { 19 } 21 } 22 | Popular Tags |