Java Doc for XPointerHandler.java in  » XML » xerces-2_9_1 » org » apache » xerces » xpointer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » xerces 2_9_1 » org.apache.xerces.xpointer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xerces.xinclude.XIncludeHandler
      org.apache.xerces.xpointer.XPointerHandler

XPointerHandler
final public class XPointerHandler extends XIncludeHandler implements XPointerProcessor(Code)

This is a pipeline component which extends the XIncludeHandler to perform XPointer specific processing specified in the W3C XPointerFramework and element() Scheme Recommendations.

This component analyzes each event in the pipeline, looking for an element that matches a PointerPart in the parent XInclude element's xpointer attribute value. If the match succeeds, all children are passed by this component.

See the XPointer Framework Recommendation for more information on the XPointer Framework and ShortHand Pointers. See the XPointer element() Scheme Recommendation for more information on the XPointer element() Scheme.


version:
   $Id: XPointerHandler.java 447248 2006-09-18 05:25:21Z mrglavas $


Field Summary
protected  XMLErrorHandlerfErrorHandler
    
protected  booleanfFixupBase
    
protected  booleanfFixupLang
    
protected  booleanfFoundMatchingPtrPart
    
protected  booleanfIsXPointerResolved
    
protected  SymbolTablefSymbolTable
    
protected  XMLErrorReporterfXPointerErrorReporter
    
protected  XPointerPartfXPointerPart
    
protected  VectorfXPointerParts
    

Constructor Summary
public  XPointerHandler()
    
public  XPointerHandler(SymbolTable symbolTable, XMLErrorHandler errorHandler, XMLErrorReporter errorReporter)
    

Method Summary
public  voidcharacters(XMLString text, Augmentations augs)
     Character content.
public  voidcomment(XMLString text, Augmentations augs)
     If the comment is a child of a matched element, then pass else return.
public  voidemptyElement(QName element, XMLAttributes attributes, Augmentations augs)
     An empty element.
public  voidendCDATA(Augmentations augs)
     The end of a CDATA section.
public  voidendElement(QName element, Augmentations augs)
     The end of an element.
public  VectorgetPointerParts()
    
public  XPointerPartgetXPointerPart()
     Returns the pointer part used to resolve the document fragment.
public  voidignorableWhitespace(XMLString text, Augmentations augs)
     Ignorable whitespace.
protected  voidinit()
    
protected  voidinitErrorReporter()
    
public  booleanisChildFragmentResolved()
     Returns true if the XPointer expression resolves to a non-element child of the current resource fragment.
public  booleanisFragmentResolved()
     Returns true if the Node fragment is resolved.
public  booleanisXPointerResolved()
     Returns true if the XPointer successfully found a sub-resource .
public  voidparseXPointer(String xpointer)
     Parses the XPointer framework expression and delegates scheme specific parsing.
public  voidprocessingInstruction(String target, XMLString data, Augmentations augs)
     A processing instruction.
public  booleanresolveXPointer(QName element, XMLAttributes attributes, Augmentations augs, int event)
    
public  voidsetDocumentHandler(XMLDocumentHandler handler)
    
public  voidsetProperty(String propertyId, Object value)
    

Sets the value of a property.

public  voidstartCDATA(Augmentations augs)
     The start of a CDATA section.
public  voidstartElement(QName element, XMLAttributes attributes, Augmentations augs)
     The start of an element.

Field Detail
fErrorHandler
protected XMLErrorHandler fErrorHandler(Code)



fFixupBase
protected boolean fFixupBase(Code)



fFixupLang
protected boolean fFixupLang(Code)



fFoundMatchingPtrPart
protected boolean fFoundMatchingPtrPart(Code)



fIsXPointerResolved
protected boolean fIsXPointerResolved(Code)



fSymbolTable
protected SymbolTable fSymbolTable(Code)



fXPointerErrorReporter
protected XMLErrorReporter fXPointerErrorReporter(Code)



fXPointerPart
protected XPointerPart fXPointerPart(Code)



fXPointerParts
protected Vector fXPointerParts(Code)




Constructor Detail
XPointerHandler
public XPointerHandler()(Code)



XPointerHandler
public XPointerHandler(SymbolTable symbolTable, XMLErrorHandler errorHandler, XMLErrorReporter errorReporter)(Code)




Method Detail
characters
public void characters(XMLString text, Augmentations augs) throws XNIException(Code)
Character content.
Parameters:
  text - The content.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



comment
public void comment(XMLString text, Augmentations augs) throws XNIException(Code)
If the comment is a child of a matched element, then pass else return.
Parameters:
  text - The text in the comment.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by application to signal an error.



emptyElement
public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)
An empty element.
Parameters:
  element - The name of the element.
Parameters:
  attributes - The element attributes.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



endCDATA
public void endCDATA(Augmentations augs) throws XNIException(Code)
The end of a CDATA section.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



endElement
public void endElement(QName element, Augmentations augs) throws XNIException(Code)
The end of an element.
Parameters:
  element - The name of the element.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



getPointerParts
public Vector getPointerParts()(Code)
Returns a Vector of XPointerPart objects A Vector of XPointerPart objects.



getXPointerPart
public XPointerPart getXPointerPart()(Code)
Returns the pointer part used to resolve the document fragment. String - The pointer part used to resolve the document fragment.



ignorableWhitespace
public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException(Code)
Ignorable whitespace. For this method to be called, the document source must have some way of determining that the text containing only whitespace characters should be considered ignorable. For example, the validator can determine if a length of whitespace characters in the document are ignorable based on the element content model.
Parameters:
  text - The ignorable whitespace.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



init
protected void init()(Code)
Initializes the XPointer Processor;



initErrorReporter
protected void initErrorReporter()(Code)
Initializes error handling objects



isChildFragmentResolved
public boolean isChildFragmentResolved() throws XNIException(Code)
Returns true if the XPointer expression resolves to a non-element child of the current resource fragment.
See Also:   org.apache.xerces.xpointer.XPointerPart.isChildFragmentResolved



isFragmentResolved
public boolean isFragmentResolved() throws XNIException(Code)
Returns true if the Node fragment is resolved.
See Also:   org.apache.xerces.xpointer.XPointerProcessor.isFragmentResolved



isXPointerResolved
public boolean isXPointerResolved() throws XNIException(Code)
Returns true if the XPointer successfully found a sub-resource .
See Also:   org.apache.xerces.xpointer.XPointerProcessor.isFragmentResolved



parseXPointer
public void parseXPointer(String xpointer) throws XNIException(Code)
Parses the XPointer framework expression and delegates scheme specific parsing.
See Also:   org.apache.xerces.xpointer.XPointerProcessor.parseXPointer(java.lang.String)



processingInstruction
public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException(Code)
A processing instruction. Processing instructions consist of a target name and, optionally, text data. The data is only meaningful to the application.

Typically, a processing instruction's data will contain a series of pseudo-attributes. These pseudo-attributes follow the form of element attributes but are not parsed or presented to the application as anything other than text. The application is responsible for parsing the data.
Parameters:
  target - The target.
Parameters:
  data - The data or null if none specified.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.




resolveXPointer
public boolean resolveXPointer(QName element, XMLAttributes attributes, Augmentations augs, int event) throws XNIException(Code)

See Also:    org.apache.xerces.xpointer.XPointerProcessor#resolveXPointer(org.apache.xerces.xni.QName, org.apache.xerces.xni.XMLAttributes, org.apache.xerces.xni.Augmentations, int event)



setDocumentHandler
public void setDocumentHandler(XMLDocumentHandler handler)(Code)



setProperty
public void setProperty(String propertyId, Object value) throws XMLConfigurationException(Code)

Sets the value of a property. This method is called by the component manager any time after reset when a property changes value.

Note: Components should silently ignore properties that do not affect the operation of the component.
Parameters:
  propertyId - The property identifier.
Parameters:
  value - The value of the property.
throws:
  XMLConfigurationException - Thrown for configuration error.In general, components shouldonly throw this exception ifit is reallya critical error.



startCDATA
public void startCDATA(Augmentations augs) throws XNIException(Code)
The start of a CDATA section.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



startElement
public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)
The start of an element.
Parameters:
  element - The name of the element.
Parameters:
  attributes - The element attributes.
Parameters:
  augs - Additional information that may include infoset augmentations
exception:
  XNIException - Thrown by handler to signal an error.



Fields inherited from org.apache.xerces.xinclude.XIncludeHandler
final protected static String ALLOW_UE_AND_NOTATION_EVENTS(Code)(Java Doc)
final protected static String BUFFER_SIZE(Code)(Java Doc)
final public static String CURRENT_BASE_URI(Code)(Java Doc)
final protected static String DYNAMIC_VALIDATION(Code)(Java Doc)
final protected static String ENTITY_RESOLVER(Code)(Java Doc)
final protected static String ERROR_REPORTER(Code)(Java Doc)
final public static String HTTP_ACCEPT(Code)(Java Doc)
final public static String HTTP_ACCEPT_LANGUAGE(Code)(Java Doc)
final protected static String JAXP_SCHEMA_LANGUAGE(Code)(Java Doc)
final protected static String PARSER_SETTINGS(Code)(Java Doc)
final protected static String SCHEMA_VALIDATION(Code)(Java Doc)
final protected static String SECURITY_MANAGER(Code)(Java Doc)
final protected static String SYMBOL_TABLE(Code)(Java Doc)
final protected static String VALIDATION(Code)(Java Doc)
final public static String XINCLUDE_ATTR_ACCEPT(Code)(Java Doc)
final public static String XINCLUDE_ATTR_ACCEPT_LANGUAGE(Code)(Java Doc)
final public static String XINCLUDE_ATTR_ENCODING(Code)(Java Doc)
final public static String XINCLUDE_ATTR_HREF(Code)(Java Doc)
final public static String XINCLUDE_ATTR_PARSE(Code)(Java Doc)
final public static String XINCLUDE_DEFAULT_CONFIGURATION(Code)(Java Doc)
final public static String XINCLUDE_FALLBACK(Code)(Java Doc)
final protected static String XINCLUDE_FIXUP_BASE_URIS(Code)(Java Doc)
final protected static String XINCLUDE_FIXUP_LANGUAGE(Code)(Java Doc)
final public static String XINCLUDE_INCLUDE(Code)(Java Doc)
final public static String XINCLUDE_INCLUDED(Code)(Java Doc)
final public static String XINCLUDE_NS_URI(Code)(Java Doc)
final public static String XINCLUDE_PARSE_TEXT(Code)(Java Doc)
final public static String XINCLUDE_PARSE_XML(Code)(Java Doc)
final public static String XPOINTER(Code)(Java Doc)
final protected Stack fBaseURI(Code)(Java Doc)
final protected IntStack fBaseURIScope(Code)(Java Doc)
protected int fBufferSize(Code)(Java Doc)
protected XMLParserConfiguration fChildConfig(Code)(Java Doc)
final protected XMLResourceIdentifier fCurrentBaseURI(Code)(Java Doc)
protected String fCurrentLanguage(Code)(Java Doc)
protected XMLDTDHandler fDTDHandler(Code)(Java Doc)
protected XMLDTDSource fDTDSource(Code)(Java Doc)
protected XMLLocator fDocLocation(Code)(Java Doc)
protected XMLDocumentHandler fDocumentHandler(Code)(Java Doc)
protected XMLDocumentSource fDocumentSource(Code)(Java Doc)
protected XMLEntityResolver fEntityResolver(Code)(Java Doc)
protected XMLErrorReporter fErrorReporter(Code)(Java Doc)
final protected Stack fExpandedSystemID(Code)(Java Doc)
protected String fHrefFromParent(Code)(Java Doc)
final protected IntStack fLanguageScope(Code)(Java Doc)
final protected Stack fLanguageStack(Code)(Java Doc)
final protected Stack fLiteralSystemID(Code)(Java Doc)
protected XIncludeNamespaceSupport fNamespaceContext(Code)(Java Doc)
protected String fParentRelativeURI(Code)(Java Doc)
protected XIncludeHandler fParentXIncludeHandler(Code)(Java Doc)
protected SecurityManager fSecurityManager(Code)(Java Doc)
protected ParserConfigurationSettings fSettings(Code)(Java Doc)
protected SymbolTable fSymbolTable(Code)(Java Doc)
protected XIncludeTextReader fXInclude10TextReader(Code)(Java Doc)
protected XIncludeTextReader fXInclude11TextReader(Code)(Java Doc)
protected XMLParserConfiguration fXIncludeChildConfig(Code)(Java Doc)
protected XMLLocatorWrapper fXIncludeLocator(Code)(Java Doc)
protected XIncludeMessageFormatter fXIncludeMessageFormatter(Code)(Java Doc)
protected XMLParserConfiguration fXPointerChildConfig(Code)(Java Doc)
protected XPointerProcessor fXPtrProcessor(Code)(Java Doc)

Methods inherited from org.apache.xerces.xinclude.XIncludeHandler
protected void addNotation(String name, XMLResourceIdentifier identifier, Augmentations augmentations)(Code)(Java Doc)
protected void addUnparsedEntity(String name, XMLResourceIdentifier identifier, String notation, Augmentations augmentations)(Code)(Java Doc)
public void attributeDecl(String elementName, String attributeName, String type, String[] enumeration, String defaultType, XMLString defaultValue, XMLString nonNormalizedDefaultValue, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void characters(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc)
protected void checkAndSendNotation(Notation not)(Code)(Java Doc)
protected void checkAndSendUnparsedEntity(UnparsedEntity ent)(Code)(Java Doc)
protected void checkNotation(String notName)(Code)(Java Doc)
protected void checkUnparsedEntity(String entName)(Code)(Java Doc)
public void comment(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc)
protected void copyFeatures(XMLComponentManager from, ParserConfigurationSettings to)(Code)(Java Doc)
protected void copyFeatures(XMLComponentManager from, XMLParserConfiguration to)(Code)(Java Doc)
public void doctypeDecl(String rootElement, String publicId, String systemId, Augmentations augs) throws XNIException(Code)(Java Doc)
public void elementDecl(String name, String contentModel, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void emptyElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)(Java Doc)
public void endAttlist(Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void endCDATA(Augmentations augs) throws XNIException(Code)(Java Doc)
public void endConditional(Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void endDTD(Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void endDocument(Augmentations augs) throws XNIException(Code)(Java Doc)
public void endElement(QName element, Augmentations augs) throws XNIException(Code)(Java Doc)
public void endExternalSubset(Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void endGeneralEntity(String name, Augmentations augs) throws XNIException(Code)(Java Doc)
public void endParameterEntity(String name, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void externalEntityDecl(String name, XMLResourceIdentifier identifier, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public String getBaseURI(int depth)(Code)(Java Doc)
public XMLDTDHandler getDTDHandler()(Code)(Java Doc)
public XMLDTDSource getDTDSource()(Code)(Java Doc)
public XMLDocumentHandler getDocumentHandler()(Code)(Java Doc)
public XMLDocumentSource getDocumentSource()(Code)(Java Doc)
public Boolean getFeatureDefault(String featureId)(Code)(Java Doc)
public String getLanguage(int depth)(Code)(Java Doc)
public Object getPropertyDefault(String propertyId)(Code)(Java Doc)
public String[] getRecognizedFeatures()(Code)(Java Doc)
public String[] getRecognizedProperties()(Code)(Java Doc)
protected String getRelativeBaseURI() throws MalformedURIException(Code)(Java Doc)
public String getRelativeURI(int depth) throws MalformedURIException(Code)(Java Doc)
protected boolean getSawFallback(int depth)(Code)(Java Doc)
protected boolean getSawInclude(int depth)(Code)(Java Doc)
protected int getState(int depth)(Code)(Java Doc)
protected int getState()(Code)(Java Doc)
protected void handleFallbackElement()(Code)(Java Doc)
protected boolean handleIncludeElement(XMLAttributes attributes) throws XNIException(Code)(Java Doc)
protected boolean hasXIncludeNamespace(QName element)(Code)(Java Doc)
public void ignorableWhitespace(XMLString text, Augmentations augs) throws XNIException(Code)(Java Doc)
public void ignoredCharacters(XMLString text, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void internalEntityDecl(String name, XMLString text, XMLString nonNormalizedText, Augmentations augmentations) throws XNIException(Code)(Java Doc)
protected boolean isFallbackElement(QName element)(Code)(Java Doc)
protected boolean isIncludeElement(QName element)(Code)(Java Doc)
protected boolean isRootDocument()(Code)(Java Doc)
protected boolean isTopLevelIncludedItem()(Code)(Java Doc)
protected boolean isTopLevelIncludedItemViaFallback()(Code)(Java Doc)
protected boolean isTopLevelIncludedItemViaInclude()(Code)(Java Doc)
protected Augmentations modifyAugmentations(Augmentations augs)(Code)(Java Doc)
protected Augmentations modifyAugmentations(Augmentations augs, boolean force)(Code)(Java Doc)
public void notationDecl(String name, XMLResourceIdentifier identifier, Augmentations augmentations) throws XNIException(Code)(Java Doc)
protected XMLAttributes processAttributes(XMLAttributes attributes)(Code)(Java Doc)
protected void processXMLBaseAttributes(XMLAttributes attributes)(Code)(Java Doc)
protected void processXMLLangAttributes(XMLAttributes attributes)(Code)(Java Doc)
public void processingInstruction(String target, XMLString data, Augmentations augs) throws XNIException(Code)(Java Doc)
protected void reportFatalError(String key)(Code)(Java Doc)
protected void reportFatalError(String key, Object[] args)(Code)(Java Doc)
protected void reportResourceError(String key)(Code)(Java Doc)
protected void reportResourceError(String key, Object[] args)(Code)(Java Doc)
public void reset(XMLComponentManager componentManager) throws XNIException(Code)(Java Doc)
protected void restoreBaseURI()(Code)(Java Doc)
public String restoreLanguage()(Code)(Java Doc)
protected boolean sameBaseURIAsIncludeParent()(Code)(Java Doc)
protected boolean sameLanguageAsIncludeParent()(Code)(Java Doc)
protected void saveBaseURI()(Code)(Java Doc)
protected void saveLanguage(String language)(Code)(Java Doc)
protected boolean searchForRecursiveIncludes(String includedSysId)(Code)(Java Doc)
public void setDTDHandler(XMLDTDHandler handler)(Code)(Java Doc)
public void setDTDSource(XMLDTDSource source)(Code)(Java Doc)
public void setDocumentHandler(XMLDocumentHandler handler)(Code)(Java Doc)
public void setDocumentSource(XMLDocumentSource source)(Code)(Java Doc)
public void setFeature(String featureId, boolean state) throws XMLConfigurationException(Code)(Java Doc)
protected void setHref(String href)(Code)(Java Doc)
protected void setParent(XIncludeHandler parent)(Code)(Java Doc)
public void setProperty(String propertyId, Object value) throws XMLConfigurationException(Code)(Java Doc)
protected void setSawFallback(int depth, boolean val)(Code)(Java Doc)
protected void setSawInclude(int depth, boolean val)(Code)(Java Doc)
protected void setState(int state)(Code)(Java Doc)
protected void setXIncludeLocator(XMLLocatorWrapper locator)(Code)(Java Doc)
protected void setupCurrentBaseURI(XMLLocator locator)(Code)(Java Doc)
public void startAttlist(String elementName, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void startCDATA(Augmentations augs) throws XNIException(Code)(Java Doc)
public void startConditional(short type, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void startDTD(XMLLocator locator, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void startDocument(XMLLocator locator, String encoding, NamespaceContext namespaceContext, Augmentations augs) throws XNIException(Code)(Java Doc)
public void startElement(QName element, XMLAttributes attributes, Augmentations augs) throws XNIException(Code)(Java Doc)
public void startExternalSubset(XMLResourceIdentifier identifier, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void startGeneralEntity(String name, XMLResourceIdentifier resId, String encoding, Augmentations augs) throws XNIException(Code)(Java Doc)
public void startParameterEntity(String name, XMLResourceIdentifier identifier, String encoding, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void textDecl(String version, String encoding, Augmentations augs) throws XNIException(Code)(Java Doc)
public void unparsedEntityDecl(String name, XMLResourceIdentifier identifier, String notation, Augmentations augmentations) throws XNIException(Code)(Java Doc)
public void xmlDecl(String version, String encoding, String standalone, Augmentations augs) throws XNIException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.