| java.lang.Object javanet.staxutils.events.AbstractXMLEvent javanet.staxutils.events.AttributeEvent
All known Subclasses: javanet.staxutils.events.NamespaceEvent,
Constructor Summary | |
public | AttributeEvent(QName name, String value) Constructs an AttributeEvent with the specified name and value. | public | AttributeEvent(QName name, String value, boolean specified) Constructs a new AttributeEvent . | public | AttributeEvent(QName name, String value, Location location) Constructs a new AttributeEvent . | public | AttributeEvent(QName name, String value, Location location, QName schemaType) Constructs a new AttributeEvent . | public | AttributeEvent(QName name, String value, boolean specified, String dtdType, Location location, QName schemaType) Constructs a new AttributeEvent . | public | AttributeEvent(QName name, String value, Attribute that) Copy constructor that optionally allows the name and/or value to be changed. | public | AttributeEvent(Attribute that) Copy constructor. |
AttributeEvent | public AttributeEvent(QName name, String value)(Code) | | Constructs an AttributeEvent with the specified name and value.
Parameters: name - The qualified attribute name. Parameters: value - The attribute value. |
AttributeEvent | public AttributeEvent(QName name, String value, boolean specified)(Code) | | Constructs a new AttributeEvent .
Parameters: name - The qualified attribute name. Parameters: value - The attribute value. Parameters: specified - Whether the attribute was specified in the document(true false). |
AttributeEvent | public AttributeEvent(QName name, String value, Location location)(Code) | | Constructs a new AttributeEvent .
Parameters: name - The qualified attribute name. Parameters: value - The attribute value. Parameters: location - The Location of the attribute. |
AttributeEvent | public AttributeEvent(QName name, String value, Location location, QName schemaType)(Code) | | Constructs a new AttributeEvent .
Parameters: name - The qualified attribute name. Parameters: value - The attribute value. Parameters: location - The Location of the attribute. Parameters: schemaType - The attribute type as specified in the schema. |
AttributeEvent | public AttributeEvent(QName name, String value, boolean specified, String dtdType, Location location, QName schemaType)(Code) | | Constructs a new AttributeEvent .
Parameters: name - The qualified attribute name. Parameters: value - The attribute value. Parameters: specified - Whether the attribute was specified in the document(true false). Parameters: location - The Location of the attribute. Parameters: dtdType - The attribute type as specified in the DTD. Parameters: schemaType - The attribute type as specified in the schema. |
AttributeEvent | public AttributeEvent(QName name, String value, Attribute that)(Code) | | Copy constructor that optionally allows the name and/or value to be changed.
Parameters: name - The new attribute name, or null to use the name fromthe provided attribute. Parameters: value - The new attribute value, or null to use the valuefrom the provided attribute. Parameters: that - The Attribute event to copy. |
AttributeEvent | public AttributeEvent(Attribute that)(Code) | | Copy constructor.
Parameters: that - The Attribute event to copy. |
isSpecified | public boolean isSpecified()(Code) | | |
|
|