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