ORAElementpublic class ORAElement extends org.jdom.Element ORAElement is an example of a custom
JDOM subclass, in this case for
org.jdom.Element . It takes the provided
element, and always sets the namespace to an O'Reilly
namespace. |
Fields Summary |
---|
private static final org.jdom.Namespace | ORA_NAMESPACEThe Namespace for every element. |
Constructors Summary |
---|
public ORAElement(String name)
super(name, ORA_NAMESPACE);
| public ORAElement(String name, org.jdom.Namespace ns)
super(name, ORA_NAMESPACE);
| public ORAElement(String name, String uri)
super(name, ORA_NAMESPACE);
| public ORAElement(String name, String prefix, String uri)
super(name, ORA_NAMESPACE);
|
|