|
|||||||||
Home >> All >> org >> apache >> xerces >> [ parsers overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |
org.apache.xerces.parsers
Class AbstractSAXParser.AttributesProxy

java.lang.Objectorg.apache.xerces.parsers.AbstractSAXParser.AttributesProxy
- All Implemented Interfaces:
- org.xml.sax.AttributeList, org.xml.sax.Attributes
- Enclosing class:
- AbstractSAXParser
- protected static final class AbstractSAXParser.AttributesProxy
- extends java.lang.Object
- implements org.xml.sax.AttributeList, org.xml.sax.Attributes
- extends java.lang.Object
Field Summary | |
protected org.apache.xerces.xni.XMLAttributes |
fAttributes
XML attributes. |
Constructor Summary | |
protected |
AbstractSAXParser.AttributesProxy()
|
Method Summary | |
int |
getIndex(java.lang.String qName)
Look up the index of an attribute by XML qualified (prefixed) name. |
int |
getIndex(java.lang.String uri,
java.lang.String localPart)
Look up the index of an attribute by Namespace name. |
int |
getLength()
Return the number of attributes in this list. |
java.lang.String |
getLocalName(int index)
Look up an attribute's local name by index. |
java.lang.String |
getName(int i)
Return the name of an attribute in this list (by position). |
java.lang.String |
getQName(int index)
Look up an attribute's XML qualified (prefixed) name by index. |
java.lang.String |
getType(int i)
Return the type of an attribute in the list (by position). |
java.lang.String |
getType(java.lang.String name)
Return the type of an attribute in the list (by name). |
java.lang.String |
getType(java.lang.String uri,
java.lang.String localName)
Look up an attribute's type by Namespace name. |
java.lang.String |
getURI(int index)
Look up an attribute's Namespace URI by index. |
java.lang.String |
getValue(int i)
Return the value of an attribute in the list (by position). |
java.lang.String |
getValue(java.lang.String name)
Return the value of an attribute in the list (by name). |
java.lang.String |
getValue(java.lang.String uri,
java.lang.String localName)
Look up an attribute's value by Namespace name. |
void |
setAttributes(org.apache.xerces.xni.XMLAttributes attributes)
Sets the XML attributes. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
fAttributes
protected org.apache.xerces.xni.XMLAttributes fAttributes
- XML attributes.
Constructor Detail |
AbstractSAXParser.AttributesProxy
protected AbstractSAXParser.AttributesProxy()
Method Detail |
setAttributes
public void setAttributes(org.apache.xerces.xni.XMLAttributes attributes)
- Sets the XML attributes.
getLength
public int getLength()
- Description copied from interface:
org.xml.sax.AttributeList
- Return the number of attributes in this list.
The SAX parser may provide attributes in any arbitrary order, regardless of the order in which they were declared or specified. The number of attributes may be zero.
- Specified by:
getLength
in interfaceorg.xml.sax.AttributeList
getName
public java.lang.String getName(int i)
- Description copied from interface:
org.xml.sax.AttributeList
- Return the name of an attribute in this list (by position).
The names must be unique: the SAX parser shall not include the same attribute twice. Attributes without values (those declared #IMPLIED without a value specified in the start tag) will be omitted from the list.
If the attribute name has a namespace prefix, the prefix will still be attached.
- Specified by:
getName
in interfaceorg.xml.sax.AttributeList
getQName
public java.lang.String getQName(int index)
- Description copied from interface:
org.xml.sax.Attributes
- Look up an attribute's XML qualified (prefixed) name by index.
- Specified by:
getQName
in interfaceorg.xml.sax.Attributes
getURI
public java.lang.String getURI(int index)
- Description copied from interface:
org.xml.sax.Attributes
- Look up an attribute's Namespace URI by index.
- Specified by:
getURI
in interfaceorg.xml.sax.Attributes
getLocalName
public java.lang.String getLocalName(int index)
- Description copied from interface:
org.xml.sax.Attributes
- Look up an attribute's local name by index.
- Specified by:
getLocalName
in interfaceorg.xml.sax.Attributes
getType
public java.lang.String getType(int i)
- Description copied from interface:
org.xml.sax.AttributeList
- Return the type of an attribute in the list (by position).
The attribute type is one of the strings "CDATA", "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", or "NOTATION" (always in upper case).
If the parser has not read a declaration for the attribute, or if the parser does not report attribute types, then it must return the value "CDATA" as stated in the XML 1.0 Recommentation (clause 3.3.3, "Attribute-Value Normalization").
For an enumerated attribute that is not a notation, the parser will report the type as "NMTOKEN".
- Specified by:
getType
in interfaceorg.xml.sax.AttributeList
getType
public java.lang.String getType(java.lang.String name)
- Description copied from interface:
org.xml.sax.AttributeList
- Return the type of an attribute in the list (by name).
The return value is the same as the return value for getType(int).
If the attribute name has a namespace prefix in the document, the application must include the prefix here.
- Specified by:
getType
in interfaceorg.xml.sax.AttributeList
getType
public java.lang.String getType(java.lang.String uri, java.lang.String localName)
- Description copied from interface:
org.xml.sax.Attributes
- Look up an attribute's type by Namespace name.
See getType(int) 55 for a description of the possible types.
- Specified by:
getType
in interfaceorg.xml.sax.Attributes
getValue
public java.lang.String getValue(int i)
- Description copied from interface:
org.xml.sax.AttributeList
- Return the value of an attribute in the list (by position).
If the attribute value is a list of tokens (IDREFS, ENTITIES, or NMTOKENS), the tokens will be concatenated into a single string separated by whitespace.
- Specified by:
getValue
in interfaceorg.xml.sax.AttributeList
getValue
public java.lang.String getValue(java.lang.String name)
- Description copied from interface:
org.xml.sax.AttributeList
- Return the value of an attribute in the list (by name).
The return value is the same as the return value for getValue(int).
If the attribute name has a namespace prefix in the document, the application must include the prefix here.
- Specified by:
getValue
in interfaceorg.xml.sax.AttributeList
getValue
public java.lang.String getValue(java.lang.String uri, java.lang.String localName)
- Description copied from interface:
org.xml.sax.Attributes
- Look up an attribute's value by Namespace name.
See getValue(int) 55 for a description of the possible values.
- Specified by:
getValue
in interfaceorg.xml.sax.Attributes
getIndex
public int getIndex(java.lang.String qName)
- Description copied from interface:
org.xml.sax.Attributes
- Look up the index of an attribute by XML qualified (prefixed) name.
- Specified by:
getIndex
in interfaceorg.xml.sax.Attributes
getIndex
public int getIndex(java.lang.String uri, java.lang.String localPart)
- Description copied from interface:
org.xml.sax.Attributes
- Look up the index of an attribute by Namespace name.
- Specified by:
getIndex
in interfaceorg.xml.sax.Attributes
|
|||||||||
Home >> All >> org >> apache >> xerces >> [ parsers overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: ![]() ![]() ![]() |
DETAIL: FIELD | CONSTR | METHOD |