View Javadoc
1 package org.smartcomps.twister.deployer.priv; 2 3 import org.dom4j.Element; 4 import org.smartcomps.twister.deployer.exception.DeploymentException; 5 import org.smartcomps.twister.engine.priv.core.definition.Activity; 6 import org.smartcomps.twister.engine.priv.core.definition.Terminate; 7 8 /* 9 <terminate standard-attributes> 10 standard-elements 11 </terminate> 12 */ 13 public class TerminateDeployer extends ActivityDeployer { 14 15 protected void processSpecificElements(Element element, Activity activity) throws DeploymentException { 16 // No Specific Elements 17 } 18 19 protected void processSpecificAttributes(Element element, Activity activity) throws DeploymentException { 20 // No Specific Attributes 21 } 22 23 protected Class getActivityClass() { 24 return Terminate.class; 25 } 26 }

This page was automatically generated by Maven