/* * ome.xml.r2003fc.ome.ObjectiveRefNode * *----------------------------------------------------------------------------- * * Copyright (C) 2007 Open Microscopy Environment * Massachusetts Institute of Technology, * National Institutes of Health, * University of Dundee, * University of Wisconsin-Madison * * * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * *----------------------------------------------------------------------------- */ /*----------------------------------------------------------------------------- * * THIS IS AUTOMATICALLY GENERATED CODE. DO NOT MODIFY. * Created by curtis via xsd-fu on 2008-10-16 06:18:35-0500 * *----------------------------------------------------------------------------- */ package ome.xml.r2003fc.ome; import ome.xml.DOMUtil; import ome.xml.OMEXMLNode; import ome.xml.r2003fc.ome.*; import org.w3c.dom.Element; public class ObjectiveRefNode extends ReferenceNode { // -- Constructors -- /** Constructs a ObjectiveRef node with an associated DOM element. */ public ObjectiveRefNode(Element element) { super(element); } /** * Constructs a ObjectiveRef node with an associated DOM element beneath * a given parent. */ public ObjectiveRefNode(OMEXMLNode parent) { this(parent, true); } /** * Constructs a ObjectiveRef node with an associated DOM element beneath * a given parent. */ public ObjectiveRefNode(OMEXMLNode parent, boolean attach) { super(DOMUtil.createChild(parent.getDOMElement(), "ObjectiveRef", attach)); } /** * Returns the <code>ObjectiveNode</code> which this reference * links to. */ public ObjectiveNode getObjective() { return (ObjectiveNode) getAttrReferencedNode("Objective", "ID"); } /** * Sets the active reference node on this node. * @param node The <code>ObjectiveNode</code> to set as a * reference. */ public void setObjectiveNode(ObjectiveNode node) { setNodeID(node.getNodeID()); } // -- ObjectiveRef API methods -- // *** WARNING *** Unhandled or skipped property ID // -- OMEXMLNode API methods -- public boolean hasID() { return true; } }