/** Constructs a Filament node with an associated DOM element beneath a given parent. */ public FilamentNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "Filament", attach)); }
/** Constructs a Projection node with an associated DOM element beneath a given parent. */ public ProjectionNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "Projection", attach)); }
/** Constructs a Thumbnail node with an associated DOM element beneath a given parent. */ public ThumbnailNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "Thumbnail", attach)); }
/** Constructs a EmFilter node with an associated DOM element beneath a given parent. */ public EmFilterNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "EmFilter", attach)); }
/** Constructs a Objective node with an associated DOM element beneath a given parent. */ public ObjectiveNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "Objective", attach)); }