teichmann@5863: /* Copyright (C) 2011, 2012, 2013 by Bundesanstalt für Gewässerkunde teichmann@5863: * Software engineering by Intevation GmbH teichmann@5863: * teichmann@5994: * This file is Free Software under the GNU AGPL (>=v3) teichmann@5863: * and comes with ABSOLUTELY NO WARRANTY! Check out the teichmann@5994: * documentation coming with Dive4Elements River for details. teichmann@5863: */ teichmann@5863: teichmann@5831: package org.dive4elements.river.exports; ingo@1992: ingo@1992: import org.w3c.dom.Element; ingo@1992: import org.w3c.dom.Node; ingo@1992: ingo@1992: ingo@1992: /** ingo@1992: * @author Ingo Weinzierl ingo@1992: */ ingo@1992: public class DoubleAttribute extends VisibleAttribute { ingo@1992: ingo@1992: ingo@1992: public DoubleAttribute(String name, double value, boolean visible) { ingo@1992: super(name, value, visible); ingo@1992: } ingo@1992: ingo@1992: ingo@1992: /** ingo@1992: * Calls VisibleAttribute.toXML() and appends afterwards an attribute ingo@1992: * type with value double. ingo@1992: * ingo@1992: * @param parent The parent Node. ingo@1992: * ingo@1992: * @return the new Node that represents this Attribute. ingo@1992: */ ingo@1992: @Override ingo@1992: public Node toXML(Node parent) { ingo@1992: Element ele = (Element) super.toXML(parent); ingo@1992: ele.setAttribute("type", "double"); ingo@1992: ingo@1992: return ele; ingo@1992: } ingo@1992: } ingo@1992: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :