コード例 #1
0
 /** 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));
 }
コード例 #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));
 }
コード例 #3
0
 /** 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));
 }
コード例 #4
0
ファイル: EmFilterNode.java プロジェクト: knabar/bioformats
 /** 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));
 }
コード例 #5
0
ファイル: ObjectiveNode.java プロジェクト: Raimooo/bioformats
 /** 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));
 }