/** 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));
 }
Example #2
0
 /** 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));
 }
Example #4
0
 /** 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));
 }
Example #5
0
 /** 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));
 }