public class TypedContentHandler.TypeInfoProviderImpl extends TypeInfoProvider
| Constructor and Description |
|---|
TypedContentHandler.TypeInfoProviderImpl() |
| Modifier and Type | Method and Description |
|---|---|
TypeInfo |
getAttributeTypeInfo(int index)
Returns the immutable
TypeInfo object for the specified
attribute of the current element. |
TypeInfo |
getElementTypeInfo()
Returns the immutable
TypeInfo object for the current element. |
boolean |
isIdAttribute(int index)
Returns true if the specified attribute is determined
to be an ID.
|
boolean |
isSpecified(int index)
Returns false if the attribute was added by the validator.
|
public TypedContentHandler.TypeInfoProviderImpl()
public TypeInfo getElementTypeInfo()
TypeInfo object for the current element.getElementTypeInfo in class TypeInfoProviderTypeInfo object that represents the
type of the current element.
Note that the caller can keep references to the obtained
TypeInfo longer than the callback scope.
Otherwise, this method returns null if the validator is unable to
determine the type of the current element for some reasonpublic TypeInfo getAttributeTypeInfo(int index)
TypeInfo object for the specified
attribute of the current element.
The method may only be called by the startElement event of
the ContentHandler that the application sets to the
ValidatorHandler.getAttributeTypeInfo in class TypeInfoProviderindex - The index of the attribute. The same index for
the Attributes object passed to the
startElement callback.TypeInfo object that represents the
type of the specified attribute.
Note that the caller can keep references to the obtained
TypeInfo longer than the callback scope.
Otherwise, this method returns null if the validator is unable to
determine the type.IndexOutOfBoundsException - If the index is invalid.IllegalStateException - If this method is called from other ContentHandler
methods.public boolean isIdAttribute(int index)
isIdAttribute in class TypeInfoProviderindex - The index of the attribute. The same index for
the Attributes object passed to the
startElement callback.public boolean isSpecified(int index)
isSpecified in class TypeInfoProviderindex - The index of the attribute. The same index for
the Attributes object passed to the
startElement callback.Copyright (c) 2004-2013 Saxonica Limited. All rights reserved.