|
|||||||||
| Home >> All >> org >> apache >> ws >> jaxme >> xs >> parser >> [ impl overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.ws.jaxme.xs.parser.impl
Class XSContextImpl

java.lang.Objectorg.apache.ws.jaxme.xs.parser.impl.XSContextImpl
- All Implemented Interfaces:
- org.apache.ws.jaxme.xs.parser.XSContext
- public class XSContextImpl
- extends java.lang.Object
- implements org.apache.ws.jaxme.xs.parser.XSContext
- extends java.lang.Object
This class provides access to the parsers internal data. The
Context instance is stored as a thread local element, thus
accessible via a static method.
| Constructor Summary | |
XSContextImpl()
|
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
DEFAULT_OBJECT_FACTORY
public static final org.apache.ws.jaxme.xs.xml.XsObjectFactory DEFAULT_OBJECT_FACTORY
DEFAULT_XS_OBJECT_FACTORY
public static final org.apache.ws.jaxme.xs.XSObjectFactory DEFAULT_XS_OBJECT_FACTORY
DEFAULT_ATTRIBUTE_SETTER
public static final org.apache.ws.jaxme.xs.parser.AttributeSetter DEFAULT_ATTRIBUTE_SETTER
DEFAULT_CHILD_SETTER
public static final org.apache.ws.jaxme.xs.parser.ChildSetter DEFAULT_CHILD_SETTER
DEFAULT_TEXT_SETTER
public static final org.apache.ws.jaxme.xs.parser.TextSetter DEFAULT_TEXT_SETTER
objectFactory
private org.apache.ws.jaxme.xs.xml.XsObjectFactory objectFactory
xSObjectFactory
private org.apache.ws.jaxme.xs.XSObjectFactory xSObjectFactory
attributeSetter
private org.apache.ws.jaxme.xs.parser.AttributeSetter attributeSetter
childSetter
private org.apache.ws.jaxme.xs.parser.ChildSetter childSetter
textSetter
private org.apache.ws.jaxme.xs.parser.TextSetter textSetter
xsParser
private org.apache.ws.jaxme.xs.impl.XSLogicalParser xsParser
locator
private org.xml.sax.Locator locator
namespaceSupport
private org.xml.sax.helpers.NamespaceSupport namespaceSupport
currentContentHandler
private org.xml.sax.ContentHandler currentContentHandler
| Constructor Detail |
XSContextImpl
public XSContextImpl()
| Method Detail |
getXsObjectFactory
public org.apache.ws.jaxme.xs.xml.XsObjectFactory getXsObjectFactory()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the parsers object factory for syntax elements.
- Specified by:
getXsObjectFactoryin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setXsObjectFactory
public void setXsObjectFactory(org.apache.ws.jaxme.xs.xml.XsObjectFactory pFactory)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the parsers object factory for syntax elements.
- Specified by:
setXsObjectFactoryin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getXSObjectFactory
public org.apache.ws.jaxme.xs.XSObjectFactory getXSObjectFactory()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the parsers object factory for logical elements.
- Specified by:
getXSObjectFactoryin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setXSObjectFactory
public void setXSObjectFactory(org.apache.ws.jaxme.xs.XSObjectFactory pFactory)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the parsers object factory for logical elements.
- Specified by:
setXSObjectFactoryin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getAttributeSetter
public org.apache.ws.jaxme.xs.parser.AttributeSetter getAttributeSetter()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the org.apache.ws.jaxme.xs.parser.AttributeSetter, which is used to configure properties.
- Specified by:
getAttributeSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setAttributeSetter
public void setAttributeSetter(org.apache.ws.jaxme.xs.parser.AttributeSetter pAttributeSetter)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the AttributeSetter, which is used to configure properties.
- Specified by:
setAttributeSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getChildSetter
public org.apache.ws.jaxme.xs.parser.ChildSetter getChildSetter()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the org.apache.ws.jaxme.xs.parser.ChildSetter, which is used to create child elements.
- Specified by:
getChildSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setChildSetter
public void setChildSetter(org.apache.ws.jaxme.xs.parser.ChildSetter pChildSetter)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the ChildSetter, which is used to create child elements.
- Specified by:
setChildSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getTextSetter
public org.apache.ws.jaxme.xs.parser.TextSetter getTextSetter()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the org.apache.ws.jaxme.xs.parser.TextSetter, used to add text sections.
- Specified by:
getTextSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setTextSetter
public void setTextSetter(org.apache.ws.jaxme.xs.parser.TextSetter pTextSetter)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the TextSetter, used to add text sections.
- Specified by:
setTextSetterin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getXSLogicalParser
public org.apache.ws.jaxme.xs.impl.XSLogicalParser getXSLogicalParser()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the currently running org.apache.ws.jaxme.xs.XSParser or null, if no such instance is available.
- Specified by:
getXSLogicalParserin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setXSLogicalParser
public void setXSLogicalParser(org.apache.ws.jaxme.xs.impl.XSLogicalParser pParser)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the currently active instance of org.apache.ws.jaxme.xs.XSParser, if any. Returns null, if no such instance is available.
- Specified by:
setXSLogicalParserin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getXSSchema
public org.apache.ws.jaxme.xs.XSSchema getXSSchema()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the org.apache.ws.jaxme.xs.XSSchema, which is currently being parsed, if any.
- Specified by:
getXSSchemain interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getLocator
public org.xml.sax.Locator getLocator()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the locator, used for error messages.
- Specified by:
getLocatorin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setLocator
public void setLocator(org.xml.sax.Locator pLocator)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the locator, used for error messages.
- Specified by:
setLocatorin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setNamespaceSupport
public void setNamespaceSupport(org.xml.sax.helpers.NamespaceSupport pNamespaceSupport)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the namespace handler.
- Specified by:
setNamespaceSupportin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getNamespaceSupport
public org.xml.sax.helpers.NamespaceSupport getNamespaceSupport()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Returns the namespace handler.
- Specified by:
getNamespaceSupportin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
setCurrentContentHandler
public void setCurrentContentHandler(org.xml.sax.ContentHandler pHandler)
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the currently active instance of org.apache.ws.jaxme.xs.parser.XsSAXParser.
- Specified by:
setCurrentContentHandlerin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
getCurrentContentHandler
public org.xml.sax.ContentHandler getCurrentContentHandler()
- Description copied from interface:
org.apache.ws.jaxme.xs.parser.XSContext Sets the currently active instance of org.apache.ws.jaxme.xs.parser.XsSAXParser.
- Specified by:
getCurrentContentHandlerin interfaceorg.apache.ws.jaxme.xs.parser.XSContext
|
|||||||||
| Home >> All >> org >> apache >> ws >> jaxme >> xs >> parser >> [ impl overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
org.apache.ws.jaxme.xs.parser.impl.XSContextImpl