Uses of Class
org.xml.sax.SAXNotSupportedException

Packages that use SAXNotSupportedException
org.apache.xerces.framework   
org.apache.xerces.jaxp   
org.apache.xerces.parsers   
org.xml.sax   
org.xml.sax.helpers   
 

Uses of SAXNotSupportedException in org.apache.xerces.framework
 

Methods in org.apache.xerces.framework that throw SAXNotSupportedException
protected  void XMLParser.setValidation(boolean validate)
          Sets whether the parser validates.
protected  boolean XMLParser.getValidation()
          Returns true if validation is turned on.
protected  void XMLParser.setExternalGeneralEntities(boolean expand)
          Note: Currently, this parser always expands external general entities. Setting this feature to false will throw a SAXNotSupportedException.
protected  boolean XMLParser.getExternalGeneralEntities()
          Note: This feature is always true.
protected  void XMLParser.setExternalParameterEntities(boolean expand)
          Note: Currently, this parser always expands external parameter entities. Setting this feature to false will throw a SAXNotSupportedException.
protected  boolean XMLParser.getExternalParameterEntities()
          Note: This feature is always true.
protected  void XMLParser.setNamespaces(boolean process)
          Sets whether the parser preprocesses namespaces.
protected  boolean XMLParser.getNamespaces()
          Returns true if the parser preprocesses namespaces.
protected  void XMLParser.setValidationSchema(boolean schema)
          Allows the user to turn Schema support on/off.
protected  boolean XMLParser.getValidationSchema()
          Returns true if Schema support is turned on.
protected  void XMLParser.setValidationSchemaFullChecking(boolean schemaFullChecking)
          Allows the user to turn full Schema constraint checking on/off.
protected  void XMLParser.setExternalSchemaLocation(java.lang.Object value)
          Allows the user to set a list of external XML Schemas (ex."http://example.com schema.xsd") to be used by the parser.
protected  void XMLParser.setExternalNoNamespaceSchemaLocation(java.lang.Object value)
          Allows the user to set external XML Schema with no target Namespace.
protected  boolean XMLParser.getValidationSchemaFullChecking()
          Returns true if Schema support is turned on.
protected  void XMLParser.setValidationDynamic(boolean dynamic)
          Allows the parser to validate a document only when it contains a grammar.
protected  boolean XMLParser.getValidationDynamic()
          Returns true if validation is based on whether a document contains a grammar.
protected  void XMLParser.setLoadDTDGrammar(boolean loadDTDGrammar)
          Allows the parser to have the choice to load DTD grammar when validation is off.
protected  boolean XMLParser.getLoadDTDGrammar()
          Returns true if load DTD grammar is turned on in the XMLValiator.
protected  void XMLParser.setLoadExternalDTD(boolean loadExternalDTD)
          Allows the parser to have the choice to load the external DTD when validation is off.
protected  boolean XMLParser.getLoadExternalDTD()
          Returns true if loading of the external DTD is on.
protected  void XMLParser.setValidationWarnOnDuplicateAttdef(boolean warn)
          Sets whether an error is emitted when an attribute is redefined in the grammar.
protected  boolean XMLParser.getValidationWarnOnDuplicateAttdef()
          Returns true if an error is emitted when an attribute is redefined in the grammar.
protected  void XMLParser.setValidationWarnOnUndeclaredElemdef(boolean warn)
          Sets whether the parser emits an error when an element's content model references an element by name that is not declared in the grammar.
protected  boolean XMLParser.getValidationWarnOnUndeclaredElemdef()
          Returns true if the parser emits an error when an undeclared element is referenced in the grammar.
protected  void XMLParser.setAllowJavaEncodings(boolean allow)
          Allows the use of Java encoding names in the XMLDecl and TextDecl lines in an XML document.
protected  boolean XMLParser.getAllowJavaEncodings()
          Returns true if Java encoding names are allowed in the XML document.
protected  void XMLParser.setContinueAfterFatalError(boolean continueAfterFatalError)
          Allows the parser to continue after a fatal error.
protected  boolean XMLParser.getContinueAfterFatalError()
          Returns true if the parser continues after a fatal error.
protected  java.lang.String XMLParser.getXMLString()
          This method is the equivalent to the property:
 void XMLParser.setFeature(java.lang.String featureId, boolean state)
          Set the state of a feature.
 boolean XMLParser.getFeature(java.lang.String featureId)
          Query the state of a feature.
 void XMLParser.setProperty(java.lang.String propertyId, java.lang.Object value)
          Set the value of a property.
 java.lang.Object XMLParser.getProperty(java.lang.String propertyId)
          Query the value of a property.
 

Uses of SAXNotSupportedException in org.apache.xerces.jaxp
 

Methods in org.apache.xerces.jaxp that throw SAXNotSupportedException
 void SAXParserFactoryImpl.setFeature(java.lang.String name, boolean value)
          Sets the particular feature in the underlying implementation of org.xml.sax.XMLReader.
 boolean SAXParserFactoryImpl.getFeature(java.lang.String name)
          returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.
 void SAXParserImpl.setProperty(java.lang.String name, java.lang.Object value)
          Sets the particular property in the underlying implementation of org.xml.sax.XMLReader.
 java.lang.Object SAXParserImpl.getProperty(java.lang.String name)
          returns the particular property requested for in the underlying implementation of org.xml.sax.XMLReader.
 

Uses of SAXNotSupportedException in org.apache.xerces.parsers
 

Methods in org.apache.xerces.parsers that throw SAXNotSupportedException
protected  void SAXParser.setDeclHandler(DeclHandler handler)
          Set the DTD declaration event handler.
protected  DeclHandler SAXParser.getDeclHandler()
          Returns the DTD declaration event handler.
protected  void SAXParser.setLexicalHandler(LexicalHandler handler)
          Set the lexical event handler.
protected  LexicalHandler SAXParser.getLexicalHandler()
          Returns the lexical handler.
protected  void SAXParser.setNamespacePrefixes(boolean process)
          Sets how the parser reports raw prefixed names, and whether xmlns attributes are reported.
protected  boolean SAXParser.getNamespacePrefixes()
          Returns the http://xml.org/features/namespace-prefixes value.
 void SAXParser.setFeature(java.lang.String featureId, boolean state)
          Set the state of any feature in a SAX2 parser.
 boolean SAXParser.getFeature(java.lang.String featureId)
          Query the state of a feature.
 void SAXParser.setProperty(java.lang.String propertyId, java.lang.Object value)
          Set the value of any property in a SAX2 parser.
 java.lang.Object SAXParser.getProperty(java.lang.String propertyId)
          Query the value of a property.
protected  void DOMParser.setDeferNodeExpansion(boolean deferNodeExpansion)
          This method sets whether the expansion of the nodes in the default DOM implementation are deferred.
protected  boolean DOMParser.getDeferNodeExpansion()
          Returns true if the expansion of the nodes in the default DOM implementation are deferred.
protected  void DOMParser.setCreateEntityReferenceNodes(boolean create)
          This feature determines whether entity references within the document are included in the document tree as EntityReference nodes.
 boolean DOMParser.getCreateEntityReferenceNodes()
          Returns true if entity references within the document are included in the document tree as EntityReference nodes.
 void DOMParser.setIncludeIgnorableWhitespace(boolean include)
          This feature determines whether text nodes that can be considered "ignorable whitespace" are included in the DOM tree.
 boolean DOMParser.getIncludeIgnorableWhitespace()
          Returns true if ignorable whitespace text nodes are included in the DOM tree.
protected  void DOMParser.setDocumentClassName(java.lang.String documentClassName)
          This method allows the programmer to decide which document factory to use when constructing the DOM tree.
protected  java.lang.String DOMParser.getDocumentClassName()
          Returns the fully qualified class name of the document factory used when constructing the DOM tree.
protected  Element DOMParser.getCurrentElementNode()
          Returns the current element node.
 void DOMParser.setFeature(java.lang.String featureId, boolean state)
          Set the state of any feature in a SAX2 parser.
 boolean DOMParser.getFeature(java.lang.String featureId)
          Query the current state of any feature in a SAX2 parser.
 void DOMParser.setProperty(java.lang.String propertyId, java.lang.Object value)
          Set the value of any property in a SAX2 parser.
 java.lang.Object DOMParser.getProperty(java.lang.String propertyId)
          Return the current value of a property in a SAX2 parser.
 

Uses of SAXNotSupportedException in org.xml.sax
 

Methods in org.xml.sax that throw SAXNotSupportedException
 boolean XMLReader.getFeature(java.lang.String name)
          Look up the value of a feature.
 void XMLReader.setFeature(java.lang.String name, boolean value)
          Set the state of a feature.
 java.lang.Object XMLReader.getProperty(java.lang.String name)
          Look up the value of a property.
 void XMLReader.setProperty(java.lang.String name, java.lang.Object value)
          Set the value of a property.
 

Uses of SAXNotSupportedException in org.xml.sax.helpers
 

Methods in org.xml.sax.helpers that throw SAXNotSupportedException
 void ParserAdapter.setFeature(java.lang.String name, boolean state)
          Set a feature for the parser.
 boolean ParserAdapter.getFeature(java.lang.String name)
          Check a parser feature.
 void ParserAdapter.setProperty(java.lang.String name, java.lang.Object value)
          Set a parser property.
 java.lang.Object ParserAdapter.getProperty(java.lang.String name)
          Get a parser property.
 void XMLFilterImpl.setFeature(java.lang.String name, boolean state)
          Set the state of a feature.
 boolean XMLFilterImpl.getFeature(java.lang.String name)
          Look up the state of a feature.
 void XMLFilterImpl.setProperty(java.lang.String name, java.lang.Object value)
          Set the value of a property.
 java.lang.Object XMLFilterImpl.getProperty(java.lang.String name)
          Look up the value of a property.
 



Copyright © 1999-2001 Apache XML Project. All Rights Reserved.