List of usage examples for org.dom4j Node subclass-usage
From source file org.jbpm.jpdl.internal.convert.node.MailNode.java
public class MailNode extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("mail"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.StartState.java
public class StartState extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("start"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.State.java
public class State extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("state"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.SuperState.java
public class SuperState extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("group"); return convertedElement; }
From source file org.jbpm.jpdl.internal.convert.node.TaskNode.java
public class TaskNode extends Node { public Element createConvertedElement(Element jpdl4Doc) { convertedElement = jpdl4Doc.addElement("task"); return convertedElement; }
From source file org.jivesoftware.openfire.pubsub.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 org.jivesoftware.openfire.pubsub.LeafNode.java
/**
* A type of node that contains published items only. It is NOT a container for
* other nodes.
*
* @author Matt Tucker
*/