List of usage examples for org.dom4j Node subclass-usage
From source file com.adspore.splat.xep0060.CollectionNode.java
/**
* A type of node that contains nodes and/or other collections but no published
* items. Collections provide the foundation entity to provide a means of representing
* hierarchical node structures.
*
* @author Matt Tucker
From source file com.adspore.splat.xep0060.LeafNode.java
/**
* A type of node that contains published items only. It is NOT a container for
* other nodes.
*
* @author Matt Tucker
*/
From source file org.atricore.idbus.kernel.planning.jbpm.ProcessFragmentState.java
/** * @author <a href="mailto:gbrigandi@atricore.org">Gianluca Brigandi</a> * @version $Rev: 278 $ $Date: 2008-12-31 19:42:22 -0200 (Wed, 31 Dec 2008) $ */ public class ProcessFragmentState extends Node implements Parsable {
From source file org.jbpm.graph.def.SuperState.java
/** * brings hierarchy into the elements of a process definition by creating a * parent-child relation between {@link GraphElement}s. */ public class SuperState extends Node implements Parsable, NodeCollection {
From source file org.jbpm.graph.node.InterleaveEnd.java
/**
* a interleaving end node should have 2 leaving transitions.
* one with the name 'back' that has the interleaving start node as
* destinationNode. and one with the name 'done' that specifies the
* destinationNode in case the interleaving is done.
* Alternatively, the back and done transitions can be specified
From source file org.jbpm.graph.node.TaskNode.java
/** * is a node that relates to one or more tasks. * Property <code>signal</code> specifies how task completion * triggers continuation of execution. */ public class TaskNode extends Node implements Parsable {
From source file org.jbpm.jpdl.internal.convert.node.Decision.java
public class Decision extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("decision"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.EndState.java
public class EndState extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("end"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.Fork.java
public class Fork extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("fork"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.Join.java
public class Join extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("join"); return convertedElement; }