Java Doc for XMLNSDocumentScannerImpl.java in  » 6.0-JDK-Modules » sjsxp » com » sun » xml » stream » 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 » 6.0 JDK Modules » sjsxp » com.sun.xml.stream 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.xml.stream.XMLScanner
      com.sun.xml.stream.XMLDocumentFragmentScannerImpl
         com.sun.xml.stream.XMLDocumentScannerImpl
            com.sun.xml.stream.XMLNSDocumentScannerImpl

XMLNSDocumentScannerImpl
public class XMLNSDocumentScannerImpl extends XMLDocumentScannerImpl (Code)
This class adds the functionality of namespace processing. This class has been modified as per the new design which is more suited to efficiently build pull parser. Lot of improvements have been done and the code has been added to support stax functionality/features. This class scans an XML document, checks if document has a DTD, and if DTD is not found the scanner will remove the DTD Validator from the pipeline and perform namespace binding.
author:
   Neeraj Bajaj, Sun Microsystems
author:
   Venugopal Rao K, Sun Microsystems
author:
   Elena Litani, IBM
version:
   $Id: XMLNSDocumentScannerImpl.java,v 1.5 2006/11/29 22:01:30 spericas Exp $

Inner Class :final protected class NSContentDriver extends ContentDriver

Field Summary
protected  booleanfPerformValidation
     If validating parser, make sure we report an error in the scanner if DTD grammar is missing.


Method Summary
protected  DrivercreateContentDriver()
     Creates a content driver.
public  StringgetCharacterEncodingScheme()
    
public  XMLStringBuffergetDTDDecl()
    
public  com.sun.xml.stream.xerces.xni.QNamegetElementQName()
     Return the information about the element -- If it is EndELement, QName values are computed dynamically.
public  NamespaceContextgetNamespaceContext()
    
 XMLStringgetString()
    
public  voidreset(PropertyManager propertyManager)
     Resets the fields of this scanner.
public  voidreset(XMLComponentManager componentManager)
    
protected  voidscanAttribute(XMLAttributesImpl attributes)
     Scans an attribute.

 [41] Attribute ::= Name Eq AttValue
 

Note: This method assumes that the next character on the stream is the first character of the attribute name.

Note: This method uses the fAttributeQName and fQName variables.

protected  intscanEndElement()
     Scans an end element.

 [42] ETag ::= '</' Name S? '>'
 

Note: This method uses the fElementQName variable. The contents of this variable will be destroyed.

protected  booleanscanStartElement()
     Scans a start element.

Field Detail
fPerformValidation
protected boolean fPerformValidation(Code)
If validating parser, make sure we report an error in the scanner if DTD grammar is missing.





Method Detail
createContentDriver
protected Driver createContentDriver()(Code)
Creates a content driver.



getCharacterEncodingScheme
public String getCharacterEncodingScheme()(Code)



getDTDDecl
public XMLStringBuffer getDTDDecl()(Code)



getElementQName
public com.sun.xml.stream.xerces.xni.QName getElementQName()(Code)
Return the information about the element -- If it is EndELement, QName values are computed dynamically.



getNamespaceContext
public NamespaceContext getNamespaceContext()(Code)



getString
XMLString getString()(Code)



reset
public void reset(PropertyManager propertyManager)(Code)
Resets the fields of this scanner.



reset
public void reset(XMLComponentManager componentManager) throws XMLConfigurationException(Code)



scanAttribute
protected void scanAttribute(XMLAttributesImpl attributes) throws IOException, XNIException(Code)
Scans an attribute.

 [41] Attribute ::= Name Eq AttValue
 

Note: This method assumes that the next character on the stream is the first character of the attribute name.

Note: This method uses the fAttributeQName and fQName variables. The contents of these variables will be destroyed.
Parameters:
  attributes - The attributes list for the scanned attribute.




scanEndElement
protected int scanEndElement() throws IOException, XNIException(Code)
Scans an end element.

 [42] ETag ::= '</' Name S? '>'
 

Note: This method uses the fElementQName variable. The contents of this variable will be destroyed. The caller should copy the needed information out of this variable before calling this method. The element depth.




scanStartElement
protected boolean scanStartElement() throws IOException, XNIException(Code)
Scans a start element. This method will handle the binding of namespace information and notifying the handler of the start of the element.

 [44] EmptyElemTag ::= '<' Name (S Attribute)* S? '/>'
 [40] STag ::= '<' Name (S Attribute)* S? '>'
 

Note: This method assumes that the leading '<' character has been consumed.

Note: This method uses the fElementQName and fAttributes variables. The contents of these variables will be destroyed. The caller should copy important information out of these variables before calling this method. True if element is empty. (i.e. It matchesproduction [44].




Fields inherited from com.sun.xml.stream.XMLDocumentScannerImpl
final public static char[] COMMENTSTRING(Code)(Java Doc)
final protected static String DISALLOW_DOCTYPE_DECL_FEATURE(Code)(Java Doc)
final public static char[] DOCTYPE(Code)(Java Doc)
final protected static String DTD_SCANNER(Code)(Java Doc)
final protected static String LOAD_EXTERNAL_DTD(Code)(Java Doc)
final protected static int SCANNER_STATE_DTD_EXTERNAL(Code)(Java Doc)
final protected static int SCANNER_STATE_DTD_EXTERNAL_DECLS(Code)(Java Doc)
final protected static int SCANNER_STATE_DTD_INTERNAL_DECLS(Code)(Java Doc)
final protected static int SCANNER_STATE_NO_SUCH_ELEMENT_EXCEPTION(Code)(Java Doc)
final protected static int SCANNER_STATE_PROLOG(Code)(Java Doc)
final protected static int SCANNER_STATE_TRAILING_MISC(Code)(Java Doc)
final protected static int SCANNER_STATE_XML_DECL(Code)(Java Doc)
final protected static String VALIDATION_MANAGER(Code)(Java Doc)
protected boolean fBindNamespaces(Code)(Java Doc)
protected XMLStringBuffer fDTDDecl(Code)(Java Doc)
protected Driver fDTDDriver(Code)(Java Doc)
protected XMLDTDScanner fDTDScanner(Code)(Java Doc)
protected boolean fDisallowDoctype(Code)(Java Doc)
protected String fDoctypeName(Code)(Java Doc)
protected String fDoctypePublicId(Code)(Java Doc)
protected String fDoctypeSystemId(Code)(Java Doc)
protected boolean fEndOfDocument(Code)(Java Doc)
protected int fEndPos(Code)(Java Doc)
protected boolean fLoadExternalDTD(Code)(Java Doc)
protected NamespaceContext fNamespaceContext(Code)(Java Doc)
protected Driver fPrologDriver(Code)(Java Doc)
protected boolean fReadingAttributes(Code)(Java Doc)
protected boolean fReadingDTD(Code)(Java Doc)
protected boolean fScanEndElement(Code)(Java Doc)
protected XMLBufferListenerImpl fScannerBufferlistener(Code)(Java Doc)
protected int fScannerLastState(Code)(Java Doc)
protected boolean fSeenDoctypeDecl(Code)(Java Doc)
protected boolean fSeenInternalSubset(Code)(Java Doc)
protected int fStartPos(Code)(Java Doc)
protected Driver fTrailingMiscDriver(Code)(Java Doc)
protected Driver fXMLDeclDriver(Code)(Java Doc)

Methods inherited from com.sun.xml.stream.XMLDocumentScannerImpl
protected Driver createContentDriver()(Code)(Java Doc)
public void endEntity(String name) throws IOException, XNIException(Code)(Java Doc)
public Boolean getFeatureDefault(String featureId)(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 getScannerStateName(int state)(Code)(Java Doc)
public int getScannetState()(Code)(Java Doc)
public int next() throws IOException, XNIException(Code)(Java Doc)
public void reset(PropertyManager propertyManager)(Code)(Java Doc)
public void reset(XMLComponentManager componentManager) throws XMLConfigurationException(Code)(Java Doc)
protected boolean scanDoctypeDecl(boolean ignore) throws IOException, XNIException(Code)(Java Doc)
public void setFeature(String featureId, boolean state) throws XMLConfigurationException(Code)(Java Doc)
public void setInputSource(XMLInputSource inputSource) throws IOException(Code)(Java Doc)
public void setProperty(String propertyId, Object value) throws XMLConfigurationException(Code)(Java Doc)
public void startEntity(String name, XMLResourceIdentifier identifier, String encoding) throws XNIException(Code)(Java Doc)

Fields inherited from com.sun.xml.stream.XMLDocumentFragmentScannerImpl
final protected static boolean DEBUG(Code)(Java Doc)
final protected static boolean DEBUG_COALESCE(Code)(Java Doc)
final protected static boolean DEBUG_CONTENT_SCANNING(Code)(Java Doc)
final protected static boolean DEBUG_NEXT(Code)(Java Doc)
final static boolean DEBUG_SKIP_ALGORITHM(Code)(Java Doc)
final static short ELEMENT_ARRAY_LENGTH(Code)(Java Doc)
final static short MAX_DEPTH_LIMIT(Code)(Java Doc)
final static short MAX_POINTER_AT_A_DEPTH(Code)(Java Doc)
final protected static String NAMESPACES(Code)(Java Doc)
final protected static String NOTIFY_BUILTIN_REFS(Code)(Java Doc)
final protected static int SCANNER_STATE_ATTRIBUTE(Code)(Java Doc)
final protected static int SCANNER_STATE_ATTRIBUTE_VALUE(Code)(Java Doc)
final protected static int SCANNER_STATE_BUILT_IN_REFS(Code)(Java Doc)
final protected static int SCANNER_STATE_CDATA(Code)(Java Doc)
final protected static int SCANNER_STATE_CHARACTER_DATA(Code)(Java Doc)
final protected static int SCANNER_STATE_CHAR_REFERENCE(Code)(Java Doc)
final protected static int SCANNER_STATE_COMMENT(Code)(Java Doc)
final protected static int SCANNER_STATE_CONTENT(Code)(Java Doc)
final protected static int SCANNER_STATE_DOCTYPE(Code)(Java Doc)
final protected static int SCANNER_STATE_END_ELEMENT_TAG(Code)(Java Doc)
final protected static int SCANNER_STATE_END_OF_INPUT(Code)(Java Doc)
final protected static int SCANNER_STATE_PI(Code)(Java Doc)
final protected static int SCANNER_STATE_REFERENCE(Code)(Java Doc)
final protected static int SCANNER_STATE_ROOT_ELEMENT(Code)(Java Doc)
final protected static int SCANNER_STATE_START_ELEMENT_TAG(Code)(Java Doc)
final protected static int SCANNER_STATE_START_OF_MARKUP(Code)(Java Doc)
final protected static int SCANNER_STATE_TERMINATED(Code)(Java Doc)
final protected static int SCANNER_STATE_TEXT_DECL(Code)(Java Doc)
final protected static int SCANNER_STATE_XML_DECL(Code)(Java Doc)
final protected static char[] cdata(Code)(Java Doc)
protected DTDGrammarUtil dtdGrammarUtil(Code)(Java Doc)
final protected static char[] endTag(Code)(Java Doc)
protected boolean fAdd(Code)(Java Doc)
protected boolean fAddDefaultAttr(Code)(Java Doc)
protected QName fAttributeQName(Code)(Java Doc)
protected XMLAttributesIteratorImpl fAttributes(Code)(Java Doc)
protected XMLStringBuffer fContentBuffer(Code)(Java Doc)
protected Driver fContentDriver(Code)(Java Doc)
protected QName fCurrentElement(Code)(Java Doc)
protected String fDeclaredEncoding(Code)(Java Doc)
protected XMLDocumentHandler fDocumentHandler(Code)(Java Doc)
protected Driver fDriver(Code)(Java Doc)
String[] fElementArray(Code)(Java Doc)
short fElementPointer(Code)(Java Doc)
protected QName fElementQName(Code)(Java Doc)
protected String fElementRawname(Code)(Java Doc)
protected ElementStack fElementStack(Code)(Java Doc)
protected ElementStack2 fElementStack2(Code)(Java Doc)
protected boolean fEmptyElement(Code)(Java Doc)
protected int[] fEntityStack(Code)(Java Doc)
protected XMLEntityStorage fEntityStore(Code)(Java Doc)
protected boolean fHasExternalDTD(Code)(Java Doc)
protected boolean fInScanContent(Code)(Java Doc)
protected boolean fIsCoalesce(Code)(Java Doc)
short fLastPointerLocation(Code)(Java Doc)
protected boolean fLastSectionWasCData(Code)(Java Doc)
protected boolean fLastSectionWasCharacterData(Code)(Java Doc)
protected boolean fLastSectionWasEntityReference(Code)(Java Doc)
protected int fMarkupDepth(Code)(Java Doc)
protected boolean fNamespaces(Code)(Java Doc)
protected boolean fNotifyBuiltInRefs(Code)(Java Doc)
protected XMLString fPIData(Code)(Java Doc)
protected String fPITarget(Code)(Java Doc)
short[][] fPointerInfo(Code)(Java Doc)
protected boolean fReplaceEntityReferences(Code)(Java Doc)
protected boolean fReportCdataEvent(Code)(Java Doc)
protected boolean fScanToEnd(Code)(Java Doc)
protected int fScannerState(Code)(Java Doc)
protected boolean fShouldSkip(Code)(Java Doc)
protected boolean fSkip(Code)(Java Doc)
protected boolean fStandalone(Code)(Java Doc)
protected XMLStringBuffer fStringBuffer(Code)(Java Doc)
protected XMLStringBuffer fStringBuffer2(Code)(Java Doc)
protected boolean fSupportExternalEntities(Code)(Java Doc)
protected XMLString fTempString(Code)(Java Doc)
protected XMLString fTempString2(Code)(Java Doc)
boolean fUsebuffer(Code)(Java Doc)
protected String fVersion(Code)(Java Doc)
protected boolean foundBuiltInRefs(Code)(Java Doc)
final protected static char[] xmlDecl(Code)(Java Doc)

Methods inherited from com.sun.xml.stream.XMLDocumentFragmentScannerImpl
void addElement(String rawname)(Code)(Java Doc)
boolean canStore(short depth, short column)(Code)(Java Doc)
protected Driver createContentDriver()(Code)(Java Doc)
public void endEntity(String name) throws IOException, XNIException(Code)(Java Doc)
public XMLAttributesIteratorImpl getAttributeIterator()(Code)(Java Doc)
public XMLString getCharacterData()(Code)(Java Doc)
public String getComment()(Code)(Java Doc)
public XMLDocumentHandler getDocumentHandler()(Code)(Java Doc)
public String getDriverName(Driver driver)(Code)(Java Doc)
short getElementPointer(short depth, short column)(Code)(Java Doc)
public String getEntityName()(Code)(Java Doc)
public Boolean getFeatureDefault(String featureId)(Code)(Java Doc)
public XMLStringBuffer getPIData()(Code)(Java Doc)
public String getPITarget()(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 getScannerStateName(int state)(Code)(Java Doc)
public boolean hasAttributes()(Code)(Java Doc)
public boolean isStandAlone()(Code)(Java Doc)
public int next() throws IOException, XNIException(Code)(Java Doc)
static void pr(String str)(Code)(Java Doc)
public void reset(XMLComponentManager componentManager) throws XMLConfigurationException(Code)(Java Doc)
public void reset(PropertyManager propertyManager)(Code)(Java Doc)
void resetPointer(short depth, short column)(Code)(Java Doc)
protected void scanAttribute(XMLAttributes attributes) throws IOException, XNIException(Code)(Java Doc)
protected boolean scanCDATASection(XMLStringBuffer contentBuffer, boolean complete) throws IOException, XNIException(Code)(Java Doc)
protected void scanCharReference() throws IOException, XNIException(Code)(Java Doc)
protected void scanComment() throws IOException, XNIException(Code)(Java Doc)
protected int scanContent(XMLStringBuffer content) throws IOException, XNIException(Code)(Java Doc)
public boolean scanDocument(boolean complete) throws IOException, XNIException(Code)(Java Doc)
protected int scanEndElement() throws IOException, XNIException(Code)(Java Doc)
protected void scanEntityReference(XMLStringBuffer content) throws IOException, XNIException(Code)(Java Doc)
protected void scanPIData(String target, XMLStringBuffer data) throws IOException, XNIException(Code)(Java Doc)
protected boolean scanStartElement() throws IOException, XNIException(Code)(Java Doc)
protected void scanXMLDeclOrTextDecl(boolean scanningTextDecl) throws IOException, XNIException(Code)(Java Doc)
public void setDocumentHandler(XMLDocumentHandler documentHandler)(Code)(Java Doc)
final protected void setDriver(Driver driver)(Code)(Java Doc)
public void setFeature(String featureId, boolean state) throws XMLConfigurationException(Code)(Java Doc)
public void setInputSource(XMLInputSource inputSource) throws IOException(Code)(Java Doc)
public void setProperty(String propertyId, Object value) throws XMLConfigurationException(Code)(Java Doc)
final protected void setScannerState(int state)(Code)(Java Doc)
protected boolean skipElement() throws IOException(Code)(Java Doc)
boolean skipElement(short column) throws IOException(Code)(Java Doc)
boolean skipFromTheBuffer(String rawname) throws IOException(Code)(Java Doc)
boolean skipQElement(QName name) throws IOException(Code)(Java Doc)
boolean skipQElement(String rawname) throws IOException(Code)(Java Doc)
public void startEntity(String name, XMLResourceIdentifier identifier, String encoding) throws XNIException(Code)(Java Doc)
short storePointerForADepth(short elementPointer)(Code)(Java Doc)

Fields inherited from com.sun.xml.stream.XMLScanner
final protected static boolean DEBUG_ATTR_NORMALIZATION(Code)(Java Doc)
final protected static String ENTITY_MANAGER(Code)(Java Doc)
final protected static String ERROR_REPORTER(Code)(Java Doc)
final protected static String NOTIFY_CHAR_REFS(Code)(Java Doc)
final protected static String SYMBOL_TABLE(Code)(Java Doc)
final protected static String VALIDATION(Code)(Java Doc)
protected ArrayList attributeValueCache(Code)(Java Doc)
final protected static String fAmpSymbol(Code)(Java Doc)
final protected static String fAposSymbol(Code)(Java Doc)
protected boolean fAttributeCacheInitDone(Code)(Java Doc)
protected int fAttributeCacheUsedCount(Code)(Java Doc)
protected String fCharRefLiteral(Code)(Java Doc)
final protected static String fEncodingSymbol(Code)(Java Doc)
protected int fEntityDepth(Code)(Java Doc)
protected XMLEntityManager fEntityManager(Code)(Java Doc)
protected XMLEntityReaderImpl fEntityScanner(Code)(Java Doc)
protected XMLEntityStorage fEntityStore(Code)(Java Doc)
protected XMLErrorReporter fErrorReporter(Code)(Java Doc)
protected XMLEvent fEvent(Code)(Java Doc)
final protected static String fGtSymbol(Code)(Java Doc)
final protected static String fLtSymbol(Code)(Java Doc)
protected boolean fNotifyCharRefs(Code)(Java Doc)
protected PropertyManager fPropertyManager(Code)(Java Doc)
final protected static String fQuotSymbol(Code)(Java Doc)
protected boolean fReportEntity(Code)(Java Doc)
protected XMLResourceIdentifierImpl fResourceIdentifier(Code)(Java Doc)
protected boolean fScanningAttribute(Code)(Java Doc)
final protected static String fStandaloneSymbol(Code)(Java Doc)
protected int fStringBufferIndex(Code)(Java Doc)
protected SymbolTable fSymbolTable(Code)(Java Doc)
protected boolean fValidation(Code)(Java Doc)
final protected static String fVersionSymbol(Code)(Java Doc)
int initialCacheCount(Code)(Java Doc)
protected ArrayList stringBufferCache(Code)(Java Doc)

Methods inherited from com.sun.xml.stream.XMLScanner
public void endEntity(String name) throws IOException, XNIException(Code)(Java Doc)
public boolean getFeature(String featureId) throws XMLConfigurationException(Code)(Java Doc)
XMLStringBuffer getStringBuffer()(Code)(Java Doc)
protected static boolean isInvalid(int value)(Code)(Java Doc)
protected static boolean isInvalidLiteral(int value)(Code)(Java Doc)
protected static boolean isValidNCName(int value)(Code)(Java Doc)
protected static boolean isValidNameChar(int value)(Code)(Java Doc)
protected static boolean isValidNameStartChar(int value)(Code)(Java Doc)
protected void normalizeWhitespace(XMLString value)(Code)(Java Doc)
protected void reportFatalError(String msgId, Object[] args) throws XNIException(Code)(Java Doc)
public void reset(XMLComponentManager componentManager) throws XMLConfigurationException(Code)(Java Doc)
public void reset(PropertyManager propertyManager)(Code)(Java Doc)
protected void scanAttributeValue(XMLString value, XMLString nonNormalizedValue, String atName, XMLAttributes attributes, int attrIndex, boolean checkEntities) throws IOException, XNIException(Code)(Java Doc)
protected int scanCharReferenceValue(XMLStringBuffer buf, XMLStringBuffer buf2) throws IOException, XNIException(Code)(Java Doc)
protected void scanComment(XMLStringBuffer text) throws IOException, XNIException(Code)(Java Doc)
protected void scanExternalID(String[] identifiers, boolean optionalSystemId) throws IOException, XNIException(Code)(Java Doc)
protected void scanPI(XMLStringBuffer data) throws IOException, XNIException(Code)(Java Doc)
protected void scanPIData(String target, XMLStringBuffer data) throws IOException, XNIException(Code)(Java Doc)
public String scanPseudoAttribute(boolean scanningTextDecl, XMLString value) throws IOException, XNIException(Code)(Java Doc)
protected boolean scanPubidLiteral(XMLString literal) throws IOException, XNIException(Code)(Java Doc)
protected boolean scanSurrogates(XMLStringBuffer buf) throws IOException, XNIException(Code)(Java Doc)
protected void scanXMLDeclOrTextDecl(boolean scanningTextDecl, String[] pseudoAttributeValues) throws IOException, XNIException(Code)(Java Doc)
public void setFeature(String featureId, boolean value) throws XMLConfigurationException(Code)(Java Doc)
public void setProperty(String propertyId, Object value) throws XMLConfigurationException(Code)(Java Doc)
protected void setPropertyManager(PropertyManager propertyManager)(Code)(Java Doc)
public void startEntity(String name, XMLResourceIdentifier identifier, String encoding) throws XNIException(Code)(Java Doc)
protected boolean versionSupported(String version)(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.