/* * ome.xml.model.ROI * *----------------------------------------------------------------------------- * * Copyright (C) @year@ 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 melissa via xsd-fu on 2011-11-09 10:55:09-0500 * *----------------------------------------------------------------------------- */ package ome.xml.model; import java.util.ArrayList; import java.util.List; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import ome.xml.model.enums.*; import ome.xml.model.primitives.*; public class ROI extends AbstractOMEModelObject { // Base: -- Name: ROI -- Type: ROI -- javaBase: AbstractOMEModelObject -- javaType: Object // -- Constants -- public static final String NAMESPACE = "http://www.openmicroscopy.org/Schemas/ROI/2011-06"; /** Logger for this class. */ private static final Logger LOGGER = LoggerFactory.getLogger(ROI.class); // -- Instance variables -- // Property private String namespace; // Property private String id; // Property private String name; // Property private Union union; // Reference AnnotationRef private List<Annotation> annotationList = new ArrayList<Annotation>(); // Property private String description; // Back reference Image_BackReference private List<Image> image_BackReferenceList = new ArrayList<Image>(); // Back reference MicrobeamManipulation_BackReference private List<MicrobeamManipulation> microbeamManipulation_BackReferenceList = new ArrayList<MicrobeamManipulation>(); // -- Constructors -- /** Default constructor. */ public ROI() { super(); } /** * Constructs ROI recursively from an XML DOM tree. * @param element Root of the XML DOM tree to construct a model object * graph from. * @param model Handler for the OME model which keeps track of instances * and references seen during object population. * @throws EnumerationException If there is an error instantiating an * enumeration during model object creation. */ public ROI(Element element, OMEModel model) throws EnumerationException { update(element, model); } // -- Custom content from ROI specific template -- // -- OMEModelObject API methods -- /** * Updates ROI recursively from an XML DOM tree. <b>NOTE:</b> No * properties are removed, only added or updated. * @param element Root of the XML DOM tree to construct a model object * graph from. * @param model Handler for the OME model which keeps track of instances * and references seen during object population. * @throws EnumerationException If there is an error instantiating an * enumeration during model object creation. */ public void update(Element element, OMEModel model) throws EnumerationException { super.update(element, model); String tagName = element.getTagName(); if (!"ROI".equals(tagName)) { LOGGER.debug("Expecting node name of ROI got {}", tagName); } if (element.hasAttribute("Namespace")) { // Attribute property Namespace setNamespace(String.valueOf( element.getAttribute("Namespace"))); } if (!element.hasAttribute("ID") && getID() == null) { // TODO: Should be its own exception throw new RuntimeException(String.format( "ROI missing required ID property.")); } if (element.hasAttribute("ID")) { // ID property setID(String.valueOf( element.getAttribute("ID"))); // Adding this model object to the model handler model.addModelObject(getID(), this); } if (element.hasAttribute("Name")) { // Attribute property Name setName(String.valueOf( element.getAttribute("Name"))); } List<Element> Union_nodeList = getChildrenByTagName(element, "Union"); if (Union_nodeList.size() > 1) { // TODO: Should be its own Exception throw new RuntimeException(String.format( "Union node list size %d != 1", Union_nodeList.size())); } else if (Union_nodeList.size() != 0) { // Element property Union which is complex (has // sub-elements) setUnion(new Union( (Element) Union_nodeList.get(0), model)); } // Element reference AnnotationRef List<Element> AnnotationRef_nodeList = getChildrenByTagName(element, "AnnotationRef"); for (Element AnnotationRef_element : AnnotationRef_nodeList) { AnnotationRef annotationList_reference = new AnnotationRef(); annotationList_reference.setID(AnnotationRef_element.getAttribute("ID")); model.addReference(this, annotationList_reference); } List<Element> Description_nodeList = getChildrenByTagName(element, "Description"); if (Description_nodeList.size() > 1) { // TODO: Should be its own Exception throw new RuntimeException(String.format( "Description node list size %d != 1", Description_nodeList.size())); } else if (Description_nodeList.size() != 0) { // Element property Description which is not complex (has no // sub-elements) setDescription( String.valueOf(Description_nodeList.get(0).getTextContent())); } // *** IGNORING *** Skipped back reference Image_BackReference // *** IGNORING *** Skipped back reference MicrobeamManipulation_BackReference } // -- ROI API methods -- public boolean link(Reference reference, OMEModelObject o) { boolean wasHandledBySuperClass = super.link(reference, o); if (wasHandledBySuperClass) { return true; } if (reference instanceof AnnotationRef) { Annotation o_casted = (Annotation) o; o_casted.linkROI(this); annotationList.add(o_casted); return true; } LOGGER.debug("Unable to handle reference of type: {}", reference.getClass()); return false; } // Property public String getNamespace() { return namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } // Property public String getID() { return id; } public void setID(String id) { this.id = id; } // Property public String getName() { return name; } public void setName(String name) { this.name = name; } // Property public Union getUnion() { return union; } public void setUnion(Union union) { this.union = union; } // Reference which occurs more than once public int sizeOfLinkedAnnotationList() { return annotationList.size(); } public List<Annotation> copyLinkedAnnotationList() { return new ArrayList<Annotation>(annotationList); } public Annotation getLinkedAnnotation(int index) { return annotationList.get(index); } public Annotation setLinkedAnnotation(int index, Annotation o) { return annotationList.set(index, o); } public boolean linkAnnotation(Annotation o) { o.linkROI(this); return annotationList.add(o); } public boolean unlinkAnnotation(Annotation o) { o.unlinkROI(this); return annotationList.remove(o); } // Property public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } // Reference which occurs more than once public int sizeOfLinkedImageList() { return image_BackReferenceList.size(); } public List<Image> copyLinkedImageList() { return new ArrayList<Image>(image_BackReferenceList); } public Image getLinkedImage(int index) { return image_BackReferenceList.get(index); } public Image setLinkedImage(int index, Image o) { return image_BackReferenceList.set(index, o); } public boolean linkImage(Image o) { return image_BackReferenceList.add(o); } public boolean unlinkImage(Image o) { return image_BackReferenceList.remove(o); } // Reference which occurs more than once public int sizeOfLinkedMicrobeamManipulationList() { return microbeamManipulation_BackReferenceList.size(); } public List<MicrobeamManipulation> copyLinkedMicrobeamManipulationList() { return new ArrayList<MicrobeamManipulation>(microbeamManipulation_BackReferenceList); } public MicrobeamManipulation getLinkedMicrobeamManipulation(int index) { return microbeamManipulation_BackReferenceList.get(index); } public MicrobeamManipulation setLinkedMicrobeamManipulation(int index, MicrobeamManipulation o) { return microbeamManipulation_BackReferenceList.set(index, o); } public boolean linkMicrobeamManipulation(MicrobeamManipulation o) { return microbeamManipulation_BackReferenceList.add(o); } public boolean unlinkMicrobeamManipulation(MicrobeamManipulation o) { return microbeamManipulation_BackReferenceList.remove(o); } public Element asXMLElement(Document document) { return asXMLElement(document, null); } protected Element asXMLElement(Document document, Element ROI_element) { // Creating XML block for ROI if (ROI_element == null) { ROI_element = document.createElementNS(NAMESPACE, "ROI"); } if (namespace != null) { // Attribute property Namespace ROI_element.setAttribute("Namespace", namespace.toString()); } if (id != null) { // Attribute property ID ROI_element.setAttribute("ID", id.toString()); } if (name != null) { // Attribute property Name ROI_element.setAttribute("Name", name.toString()); } if (union != null) { // Element property Union which is complex (has // sub-elements) ROI_element.appendChild(union.asXMLElement(document)); } if (annotationList != null) { // Reference property AnnotationRef which occurs more than once for (Annotation annotationList_value : annotationList) { AnnotationRef o = new AnnotationRef(); o.setID(annotationList_value.getID()); ROI_element.appendChild(o.asXMLElement(document)); } } if (description != null) { // Element property Description which is not complex (has no // sub-elements) Element description_element = document.createElementNS(NAMESPACE, "Description"); description_element.setTextContent(description.toString()); ROI_element.appendChild(description_element); } if (image_BackReferenceList != null) { // *** IGNORING *** Skipped back reference Image_BackReference } if (microbeamManipulation_BackReferenceList != null) { // *** IGNORING *** Skipped back reference MicrobeamManipulation_BackReference } return super.asXMLElement(document, ROI_element); } }