Java Doc for JOCLContentHandler.java in  » Database-JDBC-Connection-Pool » Connection-Pool-DBCP » org » apache » commons » jocl » 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 » Database JDBC Connection Pool » Connection Pool DBCP » org.apache.commons.jocl 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.xml.sax.helpers.DefaultHandler
      org.apache.commons.jocl.JOCLContentHandler

JOCLContentHandler
public class JOCLContentHandler extends DefaultHandler (Code)
A org.xml.sax.ContentHandler for the Java Object Configuration Language.

JOCL provides an XML syntax for constructing arbitrary Java java.lang.Object instances. It does not define a full XML document type (there's no root element), but rather an XML fragment describing the java.lang.Object Objects to be constructed.

In a JOCL fragment, one may define a series of objects using the object element. A trivial example is:

 <object class="java.util.Date"/>
which constructs an instance of java.util.Date using the no-argument constructor.

After a "root-level" <object> element has been processed (that is, once JOCLContentHandler.endElement(java.lang.String,java.lang.String,java.lang.String) has been invoked by the XMLReader ), it will be appended to a list of Objects maintained by the JOCLContentHandler.

(See JOCLContentHandler.size , JOCLContentHandler.clear , JOCLContentHandler.clear(int) , JOCLContentHandler.getType(int) , JOCLContentHandler.getValue(int) , JOCLContentHandler.getTypeArray , and JOCLContentHandler.getValueArray .)

You can list multiple object elements in a fragment. For example, after processing the JOCL fragment:

 <object class="java.util.Date"/>
 <object class="java.util.Date"/>
The JOCLContentHandler.getTypeArray method will return an composed of two instances of java.util.Date. The sequence of java.lang.Object Objects in the array will correspond to the sequence of <object> elements in the JOCL fragment.

As we've seen, when used with no child-elements, the <object> tag will cause the no-argument constructor of the specified class to be invoked. It is also possible to nest <object> tags to provide arguments for the constructor. For example, the fragment:

 <object class="mypackage.Foo">
 <object class="mypackage.Bar"/>
 </object>
will add an instance of mypackage.Foo to the object list, constructed via new mypackage.Foo(new mypackage.Bar()).

There is a special syntax available creating primative values and arguments, as well as for constructing java.lang.String String s. Some examples:

 <byte value="3"/>
 <boolean value="false"/>
 <char value="c"/>
 <double value="3.14159"/>
 <float value="3.14"/>
 <int value="17"/>
 <long value="1700000"/>
 <short value="1"/>
 <string value="The quick brown fox..."/>

When invoked at the "root" level (that is, with no <object> parent), this will cause the corresponding "object wrapper" to be added to the list of java.lang.Object Object s. The JOCLContentHandler.getType type for these objects will reflect the proper primative type, however. When invoked with an <object> parent, these will be treated as primitive arguments to the specified java.lang.Object Object 's constructor. For example, while:

 <int value="5"/>
 <int value="26"/>
 <int value="100"/>

results in three java.lang.Integer instances being added to the list of values, with types corresponding to java.lang.Integer , the fragment:

 <int value="5"/>
 <int value="26"/>
 <int value="100"/>

results in three java.lang.Integer instances being added to the list of values, with types corresponding to java.lang.Integer.TYPE .

Hence if you want to invoke the mypackage.Foo(java.lang.Integer,java.lang.Integer,java.lang.Integer) constructor, use:

 <object class="mypackage.Foo"/>
 <object class="java.lang.Integer"><int value="5"/></object>
 <object class="java.lang.Integer"><int value="26"/></object>
 <object class="java.lang.Integer"><int value="100"/></object>
 </object>

If you want to invoke the mypackage.Foo(int,int,int) constructor, use:

 <object class="mypackage.Foo"/>
 <int value="5"/>
 <int value="26"/>
 <int value="100"/>
 </object>

If you'd like to creat a null object, use:

 <object class="mypackage.Bar" null="true"/>

Here's a simple but complete example:

 <?xml version="1.0"?>
 <arbitrary-root xmlns="http://apache.org/xml/xmlns/jakarta/commons/jocl">
 <string value="Hello World!"/>
 <string/>
 <boolean/>
 <boolean value="true"/>
 <byte value="1"/>
 <short value="1"/>
 <int value="1"/>
 <long value="1"/>
 <float value="1.0"/>
 <double value="1.0"/>
 <object class="java.util.Date"/>
 <object class="java.util.Date">
 <int value="1"/>
 <int value="1"/>
 <int value="1"/>
 </object>
 </arbitrary-root>

Formally, a DTD for the JOCL grammar is as follows:

 <!ELEMENT object (object|byte|boolean|char|double|float|int|long|short|string)*>
 <!ATTLIST object
 class CDATA #REQUIRED
 null (true|false) "false">
 <!ELEMENT byte EMPTY>
 <!ATTLIST byte value CDATA #REQUIRED>
 <!ELEMENT boolean EMPTY>
 <!ATTLIST boolean value (true|false) #REQUIRED>
 <!ELEMENT char EMPTY>
 <!ATTLIST char value CDATA #REQUIRED>
 <!ELEMENT double EMPTY>
 <!ATTLIST double value CDATA #REQUIRED>
 <!ELEMENT float EMPTY>
 <!ATTLIST float value CDATA #REQUIRED>
 <!ELEMENT int EMPTY>
 <!ATTLIST int value CDATA #REQUIRED>
 <!ELEMENT long EMPTY>
 <!ATTLIST long value CDATA #REQUIRED>
 <!ELEMENT short EMPTY>
 <!ATTLIST short value CDATA #REQUIRED>
 <!ELEMENT string EMPTY>
 <!ATTLIST string value CDATA #REQUIRED>
 

This class can also be used as a base class for org.xml.sax.ContentHandler s that include JOCL as part of their grammar. Simply extend this class, and override the JOCLContentHandler.startElement , JOCLContentHandler.characters , and JOCLContentHandler.endElement methods to handle your tags, and invoke the method of the parent class (i.e., super.XXX for elements and data that you don't handle.

A number of static methods are available for simply reading a list of objects from a InputStream , Reader or InputSource .

Note that this class is not synchronized.


author:
   Rodney Waldhoff
version:
   $Revision: 491655 $ $Date: 2007-01-01 15:05:30 -0700 (Mon, 01 Jan 2007) $


Inner Class :class ConstructorDetails

Field Summary
final protected static  StringATT_CLASS
     The name of the "object" element's "class" attribute.
final protected static  StringATT_ISNULL
     The name of the "object" element's "isnull" attribute.
final protected static  StringATT_VALUE
     The name of the "value" attribute.
final protected static  StringELT_BOOLEAN
     The name of the "boolean" element.
final protected static  StringELT_BYTE
     The name of the "byte" element.
final protected static  StringELT_CHAR
     The name of the "char" element.
final protected static  StringELT_DOUBLE
     The name of the "double" element.
final protected static  StringELT_FLOAT
     The name of the "float" element.
final protected static  StringELT_INT
     The name of the "int" element.
final protected static  StringELT_LONG
     The name of the "long" element.
final protected static  StringELT_OBJECT
     The name of the "object" element.
final protected static  StringELT_SHORT
     The name of the "short" element.
final protected static  StringELT_STRING
     The name of the "string" element.
final public static  StringJOCL_NAMESPACE_URI
     The JOCL namespace URI, http://apache.org/xml/xmlns/jakarta/commons/jocl.
final public static  StringJOCL_PREFIX
     The default JOCL prefix, jocl:.
protected  boolean_acceptEmptyNamespaceForAttributes
     When true, I will treat attributes with an empty namespace URI as part of the JOCL namespace.
protected  boolean_acceptEmptyNamespaceForElements
     When true, I will treat elements with an empty namespace URI as part of the JOCL namespace.
protected  boolean_acceptJoclPrefixForAttributes
     When true, I will treat attributes with the JOCLContentHandler.JOCL_PREFIX but no namespace URI as being mapped to the jocl namespace.
protected  boolean_acceptJoclPrefixForElements
     When true, I will treat elements with the JOCLContentHandler.JOCL_PREFIX but no namespace URI as being mapped to the jocl namespace.
protected  ConstructorDetails_cur
     The object I'm currently working on.
protected  Locator_locator
     My Locator .
protected  ArrayList_typeList
     A list of the types ( Class es) already created via the parse.
protected  ArrayList_valueList
     A list of the values ( Object s) already created via the parse.

Constructor Summary
public  JOCLContentHandler()
     Equivalent to JOCLContentHandler.JOCLContentHandler(boolean,boolean,boolean,boolean) JOCLContentHandler(true,true,true,true) .
public  JOCLContentHandler(boolean emptyEltNS, boolean joclEltPrefix, boolean emptyAttrNS, boolean joclAttrPrefix)
     Construct a JOCLContentHandler.

Method Summary
protected  voidaddObject(Class type, Object val)
     Add the specified object either to my type/value list, or as an argument to the object I'm currently constructing.
public  voidclear()
     Clears all the values and types in my list.
public  voidclear(int i)
     Removes the value/type pair at the specified index.
public  voidendElement(String uri, String localName, String qname)
    
protected  StringgetAttributeValue(String localname, Attributes attr)
     Equivalent to JOCLContentHandler.getAttributeValue(java.lang.String,org.xml.sax.Attributes,java.lang.String) getAttributeValue(localname,attr,null) .
protected  StringgetAttributeValue(String localname, Attributes attr, String implied)
     Returns the value of attribute with the given localname within the JOCL namespace from the given set of Attributes .
public  ClassgetType(int i)
     Returns the type of the object at the specified index.
public  Object[]getTypeArray()
     Returns a shallow copy of my list of types.
public  ObjectgetValue(int i)
     Returns the value of the object at the specified index.
public  Object[]getValueArray()
     Returns a shallow copy of my list of values.
protected  booleanisJoclNamespace(String uri, String localname, String qname)
    
public static  voidmain(String[] args)
     A simple tester method.
public static  JOCLContentHandlerparse(File f)
     Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property.
public static  JOCLContentHandlerparse(Reader in)
     Parses a JOCL document from the specified Reader , using the XMLReader specified by the org.xml.sax.driver property.
public static  JOCLContentHandlerparse(InputStream in)
     Parses a JOCL document from the specified InputStream , using the XMLReader specified by the org.xml.sax.driver property.
public static  JOCLContentHandlerparse(InputSource in)
     Parses a JOCL document from the specified InputSource , using thethe XMLReader specified by the org.xml.sax.driver property.
public static  JOCLContentHandlerparse(File f, XMLReader reader)
     Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property.
public static  JOCLContentHandlerparse(Reader in, XMLReader reader)
     Parses a JOCL document from the specified Reader , using the specified XMLReader .
public static  JOCLContentHandlerparse(InputStream in, XMLReader reader)
     Parses a JOCL document from the specified InputStream , using the specified XMLReader .
public static  JOCLContentHandlerparse(InputSource in, XMLReader reader)
     Parses a JOCL document from the specified InputSource , using the specified XMLReader .
public  voidsetDocumentLocator(Locator locator)
    
public  intsize()
     Returns the number of values and types in my list.
public  voidstartElement(String uri, String localName, String qname, Attributes attr)
    

Field Detail
ATT_CLASS
final protected static String ATT_CLASS(Code)
The name of the "object" element's "class" attribute.



ATT_ISNULL
final protected static String ATT_ISNULL(Code)
The name of the "object" element's "isnull" attribute.



ATT_VALUE
final protected static String ATT_VALUE(Code)
The name of the "value" attribute.



ELT_BOOLEAN
final protected static String ELT_BOOLEAN(Code)
The name of the "boolean" element.



ELT_BYTE
final protected static String ELT_BYTE(Code)
The name of the "byte" element.



ELT_CHAR
final protected static String ELT_CHAR(Code)
The name of the "char" element.



ELT_DOUBLE
final protected static String ELT_DOUBLE(Code)
The name of the "double" element.



ELT_FLOAT
final protected static String ELT_FLOAT(Code)
The name of the "float" element.



ELT_INT
final protected static String ELT_INT(Code)
The name of the "int" element.



ELT_LONG
final protected static String ELT_LONG(Code)
The name of the "long" element.



ELT_OBJECT
final protected static String ELT_OBJECT(Code)
The name of the "object" element.



ELT_SHORT
final protected static String ELT_SHORT(Code)
The name of the "short" element.



ELT_STRING
final protected static String ELT_STRING(Code)
The name of the "string" element.



JOCL_NAMESPACE_URI
final public static String JOCL_NAMESPACE_URI(Code)
The JOCL namespace URI, http://apache.org/xml/xmlns/jakarta/commons/jocl.



JOCL_PREFIX
final public static String JOCL_PREFIX(Code)
The default JOCL prefix, jocl:.



_acceptEmptyNamespaceForAttributes
protected boolean _acceptEmptyNamespaceForAttributes(Code)
When true, I will treat attributes with an empty namespace URI as part of the JOCL namespace.
See Also:   JOCLContentHandler.JOCL_NAMESPACE_URI



_acceptEmptyNamespaceForElements
protected boolean _acceptEmptyNamespaceForElements(Code)
When true, I will treat elements with an empty namespace URI as part of the JOCL namespace.
See Also:   JOCLContentHandler.JOCL_NAMESPACE_URI



_acceptJoclPrefixForAttributes
protected boolean _acceptJoclPrefixForAttributes(Code)
When true, I will treat attributes with the JOCLContentHandler.JOCL_PREFIX but no namespace URI as being mapped to the jocl namespace.
See Also:   JOCLContentHandler.JOCL_PREFIX
See Also:   JOCLContentHandler.JOCL_NAMESPACE_URI



_acceptJoclPrefixForElements
protected boolean _acceptJoclPrefixForElements(Code)
When true, I will treat elements with the JOCLContentHandler.JOCL_PREFIX but no namespace URI as being mapped to the jocl namespace.
See Also:   JOCLContentHandler.JOCL_PREFIX
See Also:   JOCLContentHandler.JOCL_NAMESPACE_URI



_cur
protected ConstructorDetails _cur(Code)
The object I'm currently working on.



_locator
protected Locator _locator(Code)
My Locator .



_typeList
protected ArrayList _typeList(Code)
A list of the types ( Class es) already created via the parse.



_valueList
protected ArrayList _valueList(Code)
A list of the values ( Object s) already created via the parse.




Constructor Detail
JOCLContentHandler
public JOCLContentHandler()(Code)
Equivalent to JOCLContentHandler.JOCLContentHandler(boolean,boolean,boolean,boolean) JOCLContentHandler(true,true,true,true) .



JOCLContentHandler
public JOCLContentHandler(boolean emptyEltNS, boolean joclEltPrefix, boolean emptyAttrNS, boolean joclAttrPrefix)(Code)
Construct a JOCLContentHandler.
Parameters:
  emptyEltNS - when true I should assume any element with an empty namespace is within the JOCL namespace
Parameters:
  joclEltPrefix - when true I should assume any element who's prefix is jocl: and who's namespace is empty is within the JOCL namespace
Parameters:
  emptyAttrNS - when true I should assume any attribute with an empty namespace is within the JOCL namespace
Parameters:
  joclAttrPrefix - when true I should assume any attribute who's prefix is jocl: and who's namespace is empty is within the JOCL namespace




Method Detail
addObject
protected void addObject(Class type, Object val)(Code)
Add the specified object either to my type/value list, or as an argument to the object I'm currently constructing.



clear
public void clear()(Code)
Clears all the values and types in my list.



clear
public void clear(int i)(Code)
Removes the value/type pair at the specified index.



endElement
public void endElement(String uri, String localName, String qname) throws SAXException(Code)



getAttributeValue
protected String getAttributeValue(String localname, Attributes attr)(Code)
Equivalent to JOCLContentHandler.getAttributeValue(java.lang.String,org.xml.sax.Attributes,java.lang.String) getAttributeValue(localname,attr,null) .



getAttributeValue
protected String getAttributeValue(String localname, Attributes attr, String implied)(Code)
Returns the value of attribute with the given localname within the JOCL namespace from the given set of Attributes . If no such attribute can be found, returns implied.
Parameters:
  localname - the unqualified name of the attribute to look for
Parameters:
  attr - the Attributes in which to find the value
Parameters:
  implied - the default value for the attribute the value of attribute with the givenlocalname within the JOCLnamespace from the given set of Attributes.If no such attribute can be found, returnsimplied.



getType
public Class getType(int i)(Code)
Returns the type of the object at the specified index.



getTypeArray
public Object[] getTypeArray()(Code)
Returns a shallow copy of my list of types.



getValue
public Object getValue(int i)(Code)
Returns the value of the object at the specified index.



getValueArray
public Object[] getValueArray()(Code)
Returns a shallow copy of my list of values.



isJoclNamespace
protected boolean isJoclNamespace(String uri, String localname, String qname)(Code)
Returns true if the given attributes define an element within the JOCL namespace (according to my current configuration.)
See Also:   JOCLContentHandler._acceptEmptyNamespaceForElements
See Also:   JOCLContentHandler._acceptJoclPrefixForElements



main
public static void main(String[] args) throws Exception(Code)
A simple tester method. Reads a JOCL document from standard in and prints a list of the objects created to standard out. (Use the org.xml.sax.driver system property to specify an XMLReader .



parse
public static JOCLContentHandler parse(File f) throws SAXException, FileNotFoundException, IOException(Code)
Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property. The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  f - a File containing the JOCL document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(Reader in) throws SAXException, IOException(Code)
Parses a JOCL document from the specified Reader , using the XMLReader specified by the org.xml.sax.driver property. The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a Reader containing the JOCL document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(InputStream in) throws SAXException, IOException(Code)
Parses a JOCL document from the specified InputStream , using the XMLReader specified by the org.xml.sax.driver property. The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a InputStream containing the JOCL document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(InputSource in) throws SAXException, IOException(Code)
Parses a JOCL document from the specified InputSource , using thethe XMLReader specified by the org.xml.sax.driver property. The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a InputSource containing the JOCL document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(File f, XMLReader reader) throws SAXException, FileNotFoundException, IOException(Code)
Parses a JOCL document from the specified file, using the XMLReader specified by the org.xml.sax.driver property. The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  f - a File containing the JOCL document
Parameters:
  reader - the XMLReader to use to parse the file a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(Reader in, XMLReader reader) throws SAXException, IOException(Code)
Parses a JOCL document from the specified Reader , using the specified XMLReader . The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a Reader containing the JOCL document
Parameters:
  reader - the XMLReader to use to parse the document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(InputStream in, XMLReader reader) throws SAXException, IOException(Code)
Parses a JOCL document from the specified InputStream , using the specified XMLReader . The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a InputStream containing the JOCL document
Parameters:
  reader - the XMLReader to use to parse the document a JOCLContentHandler containing the list of objects described by the JOCL document



parse
public static JOCLContentHandler parse(InputSource in, XMLReader reader) throws SAXException, IOException(Code)
Parses a JOCL document from the specified InputSource , using the specified XMLReader . The returned JOCLContentHandler will contain the list of objects described by the file.
Parameters:
  in - a InputSource containing the JOCL document
Parameters:
  reader - the XMLReader to use to parse the document a JOCLContentHandler containing the list of objects described by the JOCL document



setDocumentLocator
public void setDocumentLocator(Locator locator)(Code)



size
public int size()(Code)
Returns the number of values and types in my list. the number of values and types in my list.



startElement
public void startElement(String uri, String localName, String qname, Attributes attr) throws SAXException(Code)



Methods inherited from org.xml.sax.helpers.DefaultHandler
public void characters(char ch, int start, int length) throws SAXException(Code)(Java Doc)
public void endDocument() throws SAXException(Code)(Java Doc)
public void endElement(String uri, String localName, String qName) throws SAXException(Code)(Java Doc)
public void endPrefixMapping(String prefix) throws SAXException(Code)(Java Doc)
public void error(SAXParseException e) throws SAXException(Code)(Java Doc)
public void fatalError(SAXParseException e) throws SAXException(Code)(Java Doc)
public void ignorableWhitespace(char ch, int start, int length) throws SAXException(Code)(Java Doc)
public void notationDecl(String name, String publicId, String systemId) throws SAXException(Code)(Java Doc)
public void processingInstruction(String target, String data) throws SAXException(Code)(Java Doc)
public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException(Code)(Java Doc)
public void setDocumentLocator(Locator locator)(Code)(Java Doc)
public void skippedEntity(String name) throws SAXException(Code)(Java Doc)
public void startDocument() throws SAXException(Code)(Java Doc)
public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException(Code)(Java Doc)
public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)(Java Doc)
public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName) throws SAXException(Code)(Java Doc)
public void warning(SAXParseException e) throws SAXException(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.