/* * ome.xml.model.Detector * *----------------------------------------------------------------------------- * * 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 Detector extends ManufacturerSpec { // Base: ManufacturerSpec -- Name: Detector -- Type: Detector -- javaBase: ManufacturerSpec -- javaType: Object // -- Constants -- public static final String NAMESPACE = "http://www.openmicroscopy.org/Schemas/OME/2011-06"; /** Logger for this class. */ private static final Logger LOGGER = LoggerFactory.getLogger(Detector.class); // -- Instance variables -- // Property private Double zoom; // Property private Double amplificationGain; // Property private Double gain; // Property private Double offset; // Property private DetectorType type; // Property private String id; // Property private Double voltage; // -- Constructors -- /** Default constructor. */ public Detector() { super(); } /** * Constructs Detector 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 Detector(Element element, OMEModel model) throws EnumerationException { update(element, model); } // -- Custom content from Detector specific template -- // -- OMEModelObject API methods -- /** * Updates Detector 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 (!"Detector".equals(tagName)) { LOGGER.debug("Expecting node name of Detector got {}", tagName); } if (element.hasAttribute("Zoom")) { // Attribute property Zoom setZoom(Double.valueOf( element.getAttribute("Zoom"))); } if (element.hasAttribute("AmplificationGain")) { // Attribute property AmplificationGain setAmplificationGain(Double.valueOf( element.getAttribute("AmplificationGain"))); } if (element.hasAttribute("Gain")) { // Attribute property Gain setGain(Double.valueOf( element.getAttribute("Gain"))); } if (element.hasAttribute("Offset")) { // Attribute property Offset setOffset(Double.valueOf( element.getAttribute("Offset"))); } if (element.hasAttribute("Type")) { // Attribute property which is an enumeration Type setType(DetectorType.fromString( element.getAttribute("Type"))); } if (!element.hasAttribute("ID") && getID() == null) { // TODO: Should be its own exception throw new RuntimeException(String.format( "Detector 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("Voltage")) { // Attribute property Voltage setVoltage(Double.valueOf( element.getAttribute("Voltage"))); } } // -- Detector API methods -- public boolean link(Reference reference, OMEModelObject o) { boolean wasHandledBySuperClass = super.link(reference, o); if (wasHandledBySuperClass) { return true; } LOGGER.debug("Unable to handle reference of type: {}", reference.getClass()); return false; } // Property public Double getZoom() { return zoom; } public void setZoom(Double zoom) { this.zoom = zoom; } // Property public Double getAmplificationGain() { return amplificationGain; } public void setAmplificationGain(Double amplificationGain) { this.amplificationGain = amplificationGain; } // Property public Double getGain() { return gain; } public void setGain(Double gain) { this.gain = gain; } // Property public Double getOffset() { return offset; } public void setOffset(Double offset) { this.offset = offset; } // Property public DetectorType getType() { return type; } public void setType(DetectorType type) { this.type = type; } // Property public String getID() { return id; } public void setID(String id) { this.id = id; } // Property public Double getVoltage() { return voltage; } public void setVoltage(Double voltage) { this.voltage = voltage; } public Element asXMLElement(Document document) { return asXMLElement(document, null); } protected Element asXMLElement(Document document, Element Detector_element) { // Creating XML block for Detector if (Detector_element == null) { Detector_element = document.createElementNS(NAMESPACE, "Detector"); } if (zoom != null) { // Attribute property Zoom Detector_element.setAttribute("Zoom", zoom.toString()); } if (amplificationGain != null) { // Attribute property AmplificationGain Detector_element.setAttribute("AmplificationGain", amplificationGain.toString()); } if (gain != null) { // Attribute property Gain Detector_element.setAttribute("Gain", gain.toString()); } if (offset != null) { // Attribute property Offset Detector_element.setAttribute("Offset", offset.toString()); } if (type != null) { // Attribute property Type Detector_element.setAttribute("Type", type.toString()); } if (id != null) { // Attribute property ID Detector_element.setAttribute("ID", id.toString()); } if (voltage != null) { // Attribute property Voltage Detector_element.setAttribute("Voltage", voltage.toString()); } return super.asXMLElement(document, Detector_element); } }