Package org.apache.wsil.extension
Class UnknownExtensionElement
- java.lang.Object
-
- org.apache.wsil.extension.UnknownExtensionElement
-
- All Implemented Interfaces:
java.io.Serializable
,ExtensionElement
,WSILElement
public class UnknownExtensionElement extends java.lang.Object implements ExtensionElement
This class is used to represent an unknown extension element.- Version:
- 1.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownExtensionElement(QName qname, org.w3c.dom.Element element)
Create an uknown extension element.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.Element
getElement()
Get the Element for this extension element.QName
getQName()
Get the language attribute for the abstract.java.lang.String
toXMLString()
XML String representation of this object.
-
-
-
Field Detail
-
qname
protected QName qname
QName for the unknown extension element.
-
element
protected org.w3c.dom.Element element
Unknown extension element.
-
-
Constructor Detail
-
UnknownExtensionElement
public UnknownExtensionElement(QName qname, org.w3c.dom.Element element)
Create an uknown extension element.- Parameters:
qname
- the element type for this elementelement
- the unknown extension element
-
-
Method Detail
-
getQName
public QName getQName()
Get the language attribute for the abstract.- Specified by:
getQName
in interfaceExtensionElement
- Returns:
- Returns the element type for this element.
-
getElement
public org.w3c.dom.Element getElement()
Get the Element for this extension element.- Returns:
- the unknown element that was encountered
-
toXMLString
public java.lang.String toXMLString()
XML String representation of this object.- Specified by:
toXMLString
in interfaceWSILElement
- Returns:
- Returns the XML string format of this element.
-
-