Java Doc for SAXParser.java in  » Web-Server » Rimfaxe-Web-Server » org » apache » xerces » parsers » 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 » Web Server » Rimfaxe Web Server » org.apache.xerces.parsers 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xerces.framework.XMLParser
      org.apache.xerces.parsers.SAXParser

SAXParser
public class SAXParser extends XMLParser implements XMLDocumentHandler,XMLDocumentHandler.DTDHandler,Parser,XMLReader(Code)
SAXParser provides a parser which implements the SAX1 and SAX2 parser APIs.
version:
   $Id: SAXParser.java,v 1.22 2001/02/01 09:58:19 andyc Exp $



Constructor Summary
public  SAXParser()
     Default constructor.
protected  SAXParser(StringPool stringPool)
    

Method Summary
public  voidattlistDecl(QName elementDecl, QName attributeDecl, int attType, boolean attList, String enumString, int attDefaultType, int attDefaultValue)
     Report an attribute type declaration. Only the effective (first) declaration for an attribute will be reported.
public  voidcharacters(int dataIndex)
     Not called.
public  voidcharacters(char ch, int start, int length)
     Characters.
public  voidcomment(int dataIndex)
     Comment.
public  voidelementDecl(QName elementDecl, int contentSpecType, int contentSpecIndex, XMLContentSpec.Provider contentSpecProvider)
     Report an element type declaration. The content model will consist of the string "EMPTY", the string "ANY", or a parenthesised group, optionally followed by an occurrence indicator.
public  voidendCDATA()
     End CDATA section.
public  voidendDTD()
     This function will be called at the end of the DTD.
public  voidendDocument()
     End document.
public  voidendElement(QName element)
     End element.
public  voidendEntityReference(int entityName, int entityType, int entityContext)
     End entity reference.
public  voidendNamespaceDeclScope(int prefix)
     Report the end of the scope of a namespace declaration.
public  voidexternalEntityDecl(int entityName, int publicId, int systemId)
     Report a parsed external general entity declaration.
public  voidexternalPEDecl(int entityName, int publicId, int systemId)
     Report a parsed external parameter entity declaration.
public  ContentHandlergetContentHandler()
     Return the current content handler.
public  org.xml.sax.DTDHandlergetDTDHandler()
     Return the current DTD handler.
protected  DeclHandlergetDeclHandler()
     Returns the DTD declaration event handler.
public  booleangetFeature(String featureId)
     Query the state of a feature. Query the current state of any feature in a SAX2 parser.
public  String[]getFeaturesRecognized()
     Returns a list of features that this parser recognizes.
protected  LexicalHandlergetLexicalHandler()
     Returns the lexical handler.
protected  booleangetNamespacePrefixes()
     Returns the http://xml.org/features/namespace-prefixes value.
public  String[]getPropertiesRecognized()
     Returns a list of properties that this parser recognizes.
public  ObjectgetProperty(String propertyId)
     Query the value of a property. Return the current value of a property in a SAX2 parser. The parser might not recognize the property.
Parameters:
  propertyId - The unique identifier (URI) of the propertybeing set.
public  voidignorableWhitespace(int dataIndex)
     Not called.
public  voidignorableWhitespace(char ch, int start, int length)
     Ignorable whitespace.
public  voidinternalEntityDecl(int entityName, int entityValue)
     Report an internal general entity declaration.
public  voidinternalPEDecl(int entityName, int entityValue)
     Report an internal parameter entity declaration.
public  voidinternalSubset(int internalSubset)
     New callback from DOM Level 2.
public  voidnotationDecl(int notationName, int publicId, int systemId)
     Receive notification of a notation declaration event.
public  voidprocessingInstruction(int piTarget, int piData)
     Processing instruction.
public  voidsetContentHandler(ContentHandler handler)
     Allow an application to register a content event handler.
public  voidsetDTDHandler(org.xml.sax.DTDHandler handler)
     Allow an application to register a DTD event handler.
protected  voidsetDeclHandler(DeclHandler handler)
     Set the DTD declaration event handler.
public  voidsetDocumentHandler(DocumentHandler handler)
     Sets the document handler.
public  voidsetFeature(String featureId, boolean state)
     Set the state of any feature in a SAX2 parser.
protected  voidsetLexicalHandler(LexicalHandler handler)
     Set the lexical event handler.
protected  voidsetNamespacePrefixes(boolean process)
     Sets how the parser reports raw prefixed names, and whether xmlns attributes are reported.
public  voidsetProperty(String propertyId, Object value)
     Set the value of any property in a SAX2 parser.
public  voidstartCDATA()
     Start CDATA section.
public  voidstartDTD(QName rootElement, int publicId, int systemId)
     This function will be called when a <!DOCTYPE...> declaration is encountered.
public  voidstartDocument()
     Start document.
public  voidstartElement(QName element, XMLAttrList attrList, int attrListIndex)
    
public  voidstartEntityReference(int entityName, int entityType, int entityContext)
     Start entity reference.
public  voidstartNamespaceDeclScope(int prefix, int uri)
     Report the start of the scope of a namespace declaration.
public  voidtextDecl(int versionIndex, int encodingIndex)
     Text declaration.
public  voidunparsedEntityDecl(int entityName, int publicId, int systemId, int notationName)
     Receive notification of an unparsed entity declaration event.
public  voidxmlDecl(int versionIndex, int encodingIndex, int standaloneIndex)
     XML declaration.


Constructor Detail
SAXParser
public SAXParser()(Code)
Default constructor.



SAXParser
protected SAXParser(StringPool stringPool)(Code)




Method Detail
attlistDecl
public void attlistDecl(QName elementDecl, QName attributeDecl, int attType, boolean attList, String enumString, int attDefaultType, int attDefaultValue) throws Exception(Code)
Report an attribute type declaration. Only the effective (first) declaration for an attribute will be reported. The type will be one of the strings "CDATA", "ID", "IDREF", "IDREFS", "NMTOKEN", "NMTOKENS", "ENTITY", "ENTITIES", or "NOTATION", or a parenthesized token group with the separator "|" and all whitespace removed.
Parameters:
  eName - The name of the associated element.
Parameters:
  aName - The name of the attribute.
Parameters:
  type - A string representing the attribute type.
Parameters:
  valueDefault - A string representing the attribute default("#IMPLIED", "#REQUIRED", or "#FIXED") or null ifnone of these applies.
Parameters:
  value - A string representing the attribute's default value,or null if there is none.
exception:
  SAXException - The application may raise an exception.



characters
public void characters(int dataIndex) throws Exception(Code)
Not called.



characters
public void characters(char ch, int start, int length) throws Exception(Code)
Characters.



comment
public void comment(int dataIndex) throws Exception(Code)
Comment.



elementDecl
public void elementDecl(QName elementDecl, int contentSpecType, int contentSpecIndex, XMLContentSpec.Provider contentSpecProvider) throws Exception(Code)
Report an element type declaration. The content model will consist of the string "EMPTY", the string "ANY", or a parenthesised group, optionally followed by an occurrence indicator. The model will be normalized so that all whitespace is removed.
Parameters:
  name - The element type name.
Parameters:
  model - The content model as a normalized string.
exception:
  SAXException - The application may raise an exception.



endCDATA
public void endCDATA() throws Exception(Code)
End CDATA section.



endDTD
public void endDTD() throws Exception(Code)
This function will be called at the end of the DTD.



endDocument
public void endDocument() throws Exception(Code)
End document.



endElement
public void endElement(QName element) throws Exception(Code)
End element.



endEntityReference
public void endEntityReference(int entityName, int entityType, int entityContext) throws Exception(Code)
End entity reference.



endNamespaceDeclScope
public void endNamespaceDeclScope(int prefix) throws Exception(Code)
Report the end of the scope of a namespace declaration.



externalEntityDecl
public void externalEntityDecl(int entityName, int publicId, int systemId) throws Exception(Code)
Report a parsed external general entity declaration.



externalPEDecl
public void externalPEDecl(int entityName, int publicId, int systemId) throws Exception(Code)
Report a parsed external parameter entity declaration.



getContentHandler
public ContentHandler getContentHandler()(Code)
Return the current content handler. The current content handler, or null if nonehas been registered.
See Also:   SAXParser.setContentHandler



getDTDHandler
public org.xml.sax.DTDHandler getDTDHandler()(Code)
Return the current DTD handler. The current DTD handler, or null if nonehas been registered.
See Also:   SAXParser.setDTDHandler



getDeclHandler
protected DeclHandler getDeclHandler() throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Returns the DTD declaration event handler.
See Also:   SAXParser.setDeclHandler



getFeature
public boolean getFeature(String featureId) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Query the state of a feature. Query the current state of any feature in a SAX2 parser. The parser might not recognize the feature.
Parameters:
  featureId - The unique identifier (URI) of the featurebeing set. The current state of the feature.
exception:
  org.xml.sax.SAXNotRecognizedException - If therequested feature is not known.
exception:
  SAXNotSupportedException - If therequested feature is known but not supported.



getFeaturesRecognized
public String[] getFeaturesRecognized()(Code)
Returns a list of features that this parser recognizes. This method will never return null; if no features are recognized, this method will return a zero length array.
See Also:   SAXParser.isFeatureRecognized
See Also:   SAXParser.setFeature
See Also:   SAXParser.getFeature



getLexicalHandler
protected LexicalHandler getLexicalHandler() throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Returns the lexical handler.
See Also:   SAXParser.setLexicalHandler



getNamespacePrefixes
protected boolean getNamespacePrefixes() throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Returns the http://xml.org/features/namespace-prefixes value.
See Also:   SAXParser.setNamespacePrefixes



getPropertiesRecognized
public String[] getPropertiesRecognized()(Code)
Returns a list of properties that this parser recognizes. This method will never return null; if no properties are recognized, this method will return a zero length array.
See Also:   SAXParser.isPropertyRecognized
See Also:   SAXParser.setProperty
See Also:   SAXParser.getProperty



getProperty
public Object getProperty(String propertyId) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Query the value of a property. Return the current value of a property in a SAX2 parser. The parser might not recognize the property.
Parameters:
  propertyId - The unique identifier (URI) of the propertybeing set. The current value of the property.
exception:
  org.xml.sax.SAXNotRecognizedException - If therequested property is not known.
exception:
  SAXNotSupportedException - If therequested property is known but not supported.



ignorableWhitespace
public void ignorableWhitespace(int dataIndex) throws Exception(Code)
Not called.



ignorableWhitespace
public void ignorableWhitespace(char ch, int start, int length) throws Exception(Code)
Ignorable whitespace.



internalEntityDecl
public void internalEntityDecl(int entityName, int entityValue) throws Exception(Code)
Report an internal general entity declaration.



internalPEDecl
public void internalPEDecl(int entityName, int entityValue) throws Exception(Code)
Report an internal parameter entity declaration.



internalSubset
public void internalSubset(int internalSubset)(Code)
New callback from DOM Level 2. There is no corresponding SAX callout for this yet.



notationDecl
public void notationDecl(int notationName, int publicId, int systemId) throws Exception(Code)
Receive notification of a notation declaration event.



processingInstruction
public void processingInstruction(int piTarget, int piData) throws Exception(Code)
Processing instruction.



setContentHandler
public void setContentHandler(ContentHandler handler)(Code)
Allow an application to register a content event handler.

If the application does not register a content handler, all content events reported by the SAX parser will be silently ignored.

Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.


Parameters:
  handler - The content handler.
exception:
  java.lang.NullPointerException - If the handler argument is null.
See Also:   SAXParser.getContentHandler



setDTDHandler
public void setDTDHandler(org.xml.sax.DTDHandler handler)(Code)
Allow an application to register a DTD event handler.

If the application does not register a DTD handler, all DTD events reported by the SAX parser will be silently ignored.

Applications may register a new or different handler in the middle of a parse, and the SAX parser must begin using the new handler immediately.


Parameters:
  handler - The DTD handler.
exception:
  java.lang.NullPointerException - If the handler argument is null.
See Also:   SAXParser.getDTDHandler



setDeclHandler
protected void setDeclHandler(DeclHandler handler) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Set the DTD declaration event handler.

This method is the equivalent to the property:

 http://xml.org/sax/properties/declaration-handler
 

Parameters:
  handler - The new handler.
See Also:   SAXParser.getDeclHandler
See Also:   SAXParser.setProperty



setDocumentHandler
public void setDocumentHandler(DocumentHandler handler)(Code)
Sets the document handler.



setFeature
public void setFeature(String featureId, boolean state) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Set the state of any feature in a SAX2 parser. The parser might not recognize the feature, and if it does recognize it, it might not be able to fulfill the request.
Parameters:
  featureId - The unique identifier (URI) of the feature.
Parameters:
  state - The requested state of the feature (true or false).
exception:
  SAXNotRecognizedException - If therequested feature is not known.
exception:
  SAXNotSupportedException - If therequested feature is known, but the requestedstate is not supported.



setLexicalHandler
protected void setLexicalHandler(LexicalHandler handler) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Set the lexical event handler.

This method is the equivalent to the property:

 http://xml.org/sax/properties/lexical-handler
 

Parameters:
  handler - lexical event handler
See Also:   SAXParser.getLexicalHandler
See Also:   SAXParser.setProperty



setNamespacePrefixes
protected void setNamespacePrefixes(boolean process) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Sets how the parser reports raw prefixed names, and whether xmlns attributes are reported.

This method is the equivalent to the feature:

 http://xml.org/sax/features/namespaces-prefixes
 

Parameters:
  process - True to process namespaces; false to not process.
See Also:   SAXParser.getNamespaces
See Also:   SAXParser.setFeature



setProperty
public void setProperty(String propertyId, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)
Set the value of any property in a SAX2 parser. The parser might not recognize the property, and if it does recognize it, it might not support the requested value.
Parameters:
  propertyId - The unique identifier (URI) of the propertybeing set.
Parameters:
  Object - The value to which the property is being set.
exception:
  SAXNotRecognizedException - If therequested property is not known.
exception:
  SAXNotSupportedException - If therequested property is known, but the requestedvalue is not supported.



startCDATA
public void startCDATA() throws Exception(Code)
Start CDATA section.



startDTD
public void startDTD(QName rootElement, int publicId, int systemId) throws Exception(Code)
This function will be called when a <!DOCTYPE...> declaration is encountered.



startDocument
public void startDocument() throws Exception(Code)
Start document.



startElement
public void startElement(QName element, XMLAttrList attrList, int attrListIndex) throws Exception(Code)
Start element



startEntityReference
public void startEntityReference(int entityName, int entityType, int entityContext) throws Exception(Code)
Start entity reference.



startNamespaceDeclScope
public void startNamespaceDeclScope(int prefix, int uri) throws Exception(Code)
Report the start of the scope of a namespace declaration.



textDecl
public void textDecl(int versionIndex, int encodingIndex) throws Exception(Code)
Text declaration.



unparsedEntityDecl
public void unparsedEntityDecl(int entityName, int publicId, int systemId, int notationName) throws Exception(Code)
Receive notification of an unparsed entity declaration event.



xmlDecl
public void xmlDecl(int versionIndex, int encodingIndex, int standaloneIndex) throws Exception(Code)
XML declaration.



Fields inherited from org.apache.xerces.framework.XMLParser
final protected static String SAX2_FEATURES_PREFIX(Code)(Java Doc)
final protected static String SAX2_PROPERTIES_PREFIX(Code)(Java Doc)
final protected static String XERCES_FEATURES_PREFIX(Code)(Java Doc)
final protected static String XERCES_PROPERTIES_PREFIX(Code)(Java Doc)
protected DefaultEntityHandler fEntityHandler(Code)(Java Doc)
protected XMLErrorReporter fErrorReporter(Code)(Java Doc)
protected GrammarResolver fGrammarResolver(Code)(Java Doc)
protected boolean fParseInProgress(Code)(Java Doc)
protected XMLDocumentScanner fScanner(Code)(Java Doc)
protected StringPool fStringPool(Code)(Java Doc)
protected XMLValidator fValidator(Code)(Java Doc)

Methods inherited from org.apache.xerces.framework.XMLParser
public void addRecognizer(XMLDeclRecognizer recognizer)(Code)(Java Doc)
protected boolean getAllowJavaEncodings() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getContinueAfterFatalError() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public EntityResolver getEntityResolver()(Code)(Java Doc)
public ErrorHandler getErrorHandler()(Code)(Java Doc)
protected boolean getExternalGeneralEntities() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getExternalParameterEntities() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public boolean getFeature(String featureId) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public String[] getFeaturesRecognized()(Code)(Java Doc)
protected boolean getLoadDTDGrammar() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getLoadExternalDTD() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
final public Locator getLocator()(Code)(Java Doc)
protected boolean getNamespaces() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getNormalizeContents()(Code)(Java Doc)
public String[] getPropertiesRecognized()(Code)(Java Doc)
public Object getProperty(String propertyId) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidation() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidationDynamic() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidationSchema() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidationSchemaFullChecking() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidationWarnOnDuplicateAttdef() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected boolean getValidationWarnOnUndeclaredElemdef() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected String getXMLString() throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
final public Locale getfLocale()(Code)(Java Doc)
final public XMLMessageProvider getfgDatatypeMessages()(Code)(Java Doc)
final public XMLMessageProvider getfgImplementationMessages()(Code)(Java Doc)
final public XMLMessageProvider getfgSchemaMessages()(Code)(Java Doc)
final public XMLMessageProvider getfgXMLMessages()(Code)(Java Doc)
protected void initHandlers(boolean sendCharDataAsCharArray, XMLDocumentHandler docHandler, XMLDocumentHandler.DTDHandler dtdHandler)(Code)(Java Doc)
public boolean isFeatureRecognized(String featureId)(Code)(Java Doc)
public boolean isPropertyRecognized(String propertyId)(Code)(Java Doc)
public void parse(InputSource source) throws SAXException, IOException(Code)(Java Doc)
public void parse(String systemId) throws SAXException, IOException(Code)(Java Doc)
public boolean parseSome() throws Exception(Code)(Java Doc)
public boolean parseSomeSetup(InputSource source) throws Exception(Code)(Java Doc)
public void reportError(Locator locator, String errorDomain, int majorCode, int minorCode, Object args, int errorType) throws Exception(Code)(Java Doc)
public void reset() throws Exception(Code)(Java Doc)
protected void resetOrCopy() throws Exception(Code)(Java Doc)
protected void setAllowJavaEncodings(boolean allow) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setContinueAfterFatalError(boolean continueAfterFatalError) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void setEntityResolver(EntityResolver resolver)(Code)(Java Doc)
public void setErrorHandler(ErrorHandler handler)(Code)(Java Doc)
protected void setExternalGeneralEntities(boolean expand) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setExternalNoNamespaceSchemaLocation(Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setExternalParameterEntities(boolean expand) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setExternalSchemaLocation(Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void setFeature(String featureId, boolean state) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setLoadDTDGrammar(boolean loadDTDGrammar) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setLoadExternalDTD(boolean loadExternalDTD) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void setLocale(Locale locale) throws SAXException(Code)(Java Doc)
protected void setNamespaces(boolean process) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setNormalizeAttributeValues(boolean normalize)(Code)(Java Doc)
protected void setNormalizeContents(boolean normalize)(Code)(Java Doc)
public void setProperty(String propertyId, Object value) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
public void setReaderFactory(XMLEntityReaderFactory readerFactory)(Code)(Java Doc)
protected void setValidation(boolean validate) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setValidationDynamic(boolean dynamic) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setValidationSchema(boolean schema) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setValidationSchemaFullChecking(boolean schemaFullChecking) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setValidationWarnOnDuplicateAttdef(boolean warn) throws SAXNotRecognizedException, SAXNotSupportedException(Code)(Java Doc)
protected void setValidationWarnOnUndeclaredElemdef(boolean warn) throws SAXNotRecognizedException, SAXNotSupportedException(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.