Package org.eigenbase.xom
Class GenericDef
java.lang.Object
org.eigenbase.xom.ElementDef
org.eigenbase.xom.GenericDef
- All Implemented Interfaces:
Serializable
,Cloneable
,NodeDef
A
GenericDef
is a ElementDef
whose attributes and
children are stored in collections, not generated members. It is convenient
for building XML documents, but is not strongly typed.- Since:
- 3 October, 2001
- Version:
- $Id: //open/util/resgen/src/org/eigenbase/xom/GenericDef.java#3 $
- Author:
- jhyde
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
void
display
(PrintWriter out, int indent) Outputs this node to any PrintWriter, in a formatted fashion with automatic indenting.void
displayXML
(XMLOutput out, int indent) Outputs this element definition in XML to any XMLOutput.getAttribute
(String key) NodeDef[]
Returns the children of this node.getName()
Returns the tag name of this element, or null for TEXT elements.int
getType()
Returns the type of this element.void
setAttribute
(String key, Object value) Methods inherited from class org.eigenbase.xom.ElementDef
addChildren, clone, constructElement, constructElement, deepCopy, diff, displayAttribute, displayAttributeDiff, displayDiff, displayElement, displayElementArray, displayElementArrayDiff, displayElementDiff, displayIndent, displayString, displayStringArray, displayStringArrayDiff, displayStringDiff, displayXML, displayXMLElement, displayXMLElementArray, displayXMLString, displayXMLStringArray, equals, getElementChildren, getElementClass, getLocation, getMixedChildren, getMixedChildren_new, getText, getWrapper, hashCode, toCompactXML, toString, toXML, verifyEqual
-
Constructor Details
-
GenericDef
-
-
Method Details
-
display
Description copied from interface:NodeDef
Outputs this node to any PrintWriter, in a formatted fashion with automatic indenting.- Parameters:
out
- the PrintWriter to which to write this NodeDef.indent
- the indentation level for the printout.
-
displayXML
Description copied from interface:NodeDef
Outputs this element definition in XML to any XMLOutput.- Specified by:
displayXML
in interfaceNodeDef
- Overrides:
displayXML
in classElementDef
- Parameters:
out
- the XMLOutput class to display the XML
-
getType
public int getType()Description copied from interface:NodeDef
Returns the type of this element. Values are as forDOMWrapper.getType()
.- Specified by:
getType
in interfaceNodeDef
- Overrides:
getType
in classElementDef
-
getName
Returns the tag name of this element, or null for TEXT elements.- Specified by:
getName
in interfaceNodeDef
- Overrides:
getName
in classElementDef
-
addChild
- Overrides:
addChild
in classElementDef
-
getChildren
Description copied from interface:NodeDef
Returns the children of this node.- Specified by:
getChildren
in interfaceNodeDef
- Overrides:
getChildren
in classElementDef
-
setAttribute
-
getAttribute
-