Mercurial > dive4elements > river
view flys-artifacts/src/main/java/de/intevation/flys/exports/StringAttribute.java @ 2553:c7b0dfa6a52c
Some refactoring in chart creation; timeseries charts are now able to apply plot specific settings as well.
flys-artifacts/trunk@4068 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Fri, 17 Feb 2012 07:45:27 +0000 |
parents | 5c1e7c1e9e09 |
children | 58bdf95df5e4 |
line wrap: on
line source
package de.intevation.flys.exports; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; /** * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a> */ public class StringAttribute extends VisibleAttribute { public StringAttribute(String name, String value, boolean visible) { super(name, value, visible); } /** * Calls VisibleAttribute.toXML() and appends afterwards an attribute * <i>type</i> with value <i>string</i>. * * @param parent The parent Node. * * @return the new Node that represents this Attribute. */ @Override public Node toXML(Node parent) { Document owner = parent.getOwnerDocument(); Element ele = (Element) super.toXML(parent); ele.setAttribute("type", "string"); return ele; } } // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :