ingo@1990: package de.intevation.flys.exports;
ingo@1990:
ingo@1990: import org.w3c.dom.Element;
ingo@1990: import org.w3c.dom.Node;
ingo@1990:
ingo@1990:
ingo@1990: /**
ingo@1990: * @author Ingo Weinzierl
ingo@1990: */
ingo@1990: public class IntegerAttribute extends VisibleAttribute {
ingo@1990:
ingo@1990:
ingo@1990: public IntegerAttribute(String name, int value, boolean visible) {
ingo@1990: super(name, value, visible);
ingo@1990: }
ingo@1990:
ingo@1990:
ingo@1990: /**
ingo@1990: * Calls VisibleAttribute.toXML() and appends afterwards an attribute
ingo@1990: * type with value integer.
ingo@1990: *
ingo@1990: * @param parent The parent Node.
ingo@1990: *
ingo@1990: * @return the new Node that represents this Attribute.
ingo@1990: */
ingo@1990: @Override
ingo@1990: public Node toXML(Node parent) {
ingo@1990: Element ele = (Element) super.toXML(parent);
ingo@1990: ele.setAttribute("type", "integer");
ingo@1990:
ingo@1990: return ele;
ingo@1990: }
ingo@1990: }
ingo@1990: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :