Java Doc for ToUnknownStream.java in  » XML » xalan » org » apache » xml » serializer » 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 » xalan » org.apache.xml.serializer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.xml.serializer.SerializerBase
      org.apache.xml.serializer.ToUnknownStream

ToUnknownStream
final public class ToUnknownStream extends SerializerBase (Code)
This class wraps another SerializationHandler. The wrapped object will either handler XML or HTML, which is not known until a little later when the first XML tag is seen. If the first tag is then the wrapped object is an HTML handler, otherwise it is an XML handler. This class effectively caches the first few calls to it then passes them on to the wrapped handler (once it exists). After that subsequent calls a simply passed directly to the wrapped handler. The user of this class doesn't know if the output is ultimatley XML or HTML. This class is not a public API, it is public because it is used within Xalan.



Constructor Summary
public  ToUnknownStream()
     Default constructor.

Method Summary
public  voidaddAttribute(String uri, String localName, String rawName, String type, String value, boolean XSLAttribute)
    
public  voidaddAttribute(String rawName, String value)
    
public  voidaddAttributes(Attributes atts)
    
public  voidaddUniqueAttribute(String rawName, String value, int flags)
    
public  ContentHandlerasContentHandler()
    
public  DOMSerializerasDOMSerializer()
    
public  voidattributeDecl(String arg0, String arg1, String arg2, String arg3, String arg4)
    
public  voidcharacters(String chars)
    
public  voidcharacters(char[] characters, int offset, int length)
    
public  voidclose()
    
public  voidcomment(String comment)
    
public  voidcomment(char[] ch, int start, int length)
    
public  voidelementDecl(String arg0, String arg1)
    
public  voidendCDATA()
    
public  voidendDTD()
    
public  voidendDocument()
    
public  voidendElement(String elementName)
    
public  voidendElement(String namespaceURI, String localName, String qName)
    
public  voidendEntity(String name)
    
public  voidendPrefixMapping(String prefix)
    
public  voidentityReference(String entityName)
    
public  voidexternalEntityDecl(String name, String publicId, String systemId)
    
protected  voidfirePseudoElement(String elementName)
    
public  voidflushPending()
    
public  StringgetDoctypePublic()
    
public  StringgetDoctypeSystem()
    
public  StringgetEncoding()
    
public  booleangetIndent()
    
public  intgetIndentAmount()
    
public  StringgetMediaType()
    
public  NamespaceMappingsgetNamespaceMappings()
     Get the current namespace mappings.
public  StringgetNamespaceURI(String qname, boolean isElement)
    
public  StringgetNamespaceURIFromPrefix(String prefix)
    
public  booleangetOmitXMLDeclaration()
    
public  PropertiesgetOutputFormat()
    
public  OutputStreamgetOutputStream()
    
public  StringgetPrefix(String namespaceURI)
    
public  StringgetStandalone()
    
public  TransformergetTransformer()
    
public  StringgetVersion()
    
public  WritergetWriter()
    
public  voidignorableWhitespace(char[] ch, int start, int length)
    
public  voidinternalEntityDecl(String arg0, String arg1)
    
public  voidnamespaceAfterStartElement(String prefix, String uri)
     This method is used when a prefix/uri namespace mapping is indicated after the element was started with a startElement() and before and endElement().
public  voidprocessingInstruction(String target, String data)
    
public  booleanreset()
    
public  voidserialize(Node node)
    
public  voidsetCdataSectionElements(Vector URI_and_localNames)
    
public  voidsetContentHandler(ContentHandler ch)
    
public  voidsetDoctype(String system, String pub)
    
public  voidsetDoctypePublic(String doctype)
     Set the doctype in the underlying XML handler.
public  voidsetDoctypeSystem(String doctype)
     Set the doctype in the underlying XML handler.
public  voidsetDocumentLocator(Locator locator)
    
public  voidsetEncoding(String encoding)
    
public  booleansetEscaping(boolean escape)
    
public  voidsetIndent(boolean indent)
    
public  voidsetIndentAmount(int value)
    
public  voidsetMediaType(String mediaType)
    
public  voidsetOmitXMLDeclaration(boolean b)
    
public  voidsetOutputFormat(Properties format)
    
public  voidsetOutputStream(OutputStream output)
    
public  voidsetSourceLocator(SourceLocator locator)
     This method is used to set the source locator, which might be used to generated an error message.
public  voidsetStandalone(String standalone)
    
public  voidsetTransformer(Transformer t)
    
public  voidsetVersion(String version)
     This method cannot be cached because default is different in HTML and XML (we need more than a boolean).
public  voidsetWriter(Writer writer)
    
public  voidskippedEntity(String name)
    
public  voidstartCDATA()
    
public  voidstartDTD(String name, String publicId, String systemId)
    
public  voidstartDocument()
    
public  voidstartElement(String qName)
    
public  voidstartElement(String namespaceURI, String localName, String qName)
    
public  voidstartElement(String namespaceURI, String localName, String elementName, Attributes atts)
    
public  voidstartEntity(String name)
    
public  voidstartPrefixMapping(String prefix, String uri)
    
public  booleanstartPrefixMapping(String prefix, String uri, boolean shouldFlush)
    


Constructor Detail
ToUnknownStream
public ToUnknownStream()(Code)
Default constructor. Initially this object wraps an XML Stream object, so _handler is never null. That may change later to an HTML Stream object.




Method Detail
addAttribute
public void addAttribute(String uri, String localName, String rawName, String type, String value, boolean XSLAttribute) throws SAXException(Code)
Adds an attribute to the currenly open tag
Parameters:
  uri - the URI of a namespace
Parameters:
  localName - the attribute name, without prefix
Parameters:
  rawName - the attribute name, with prefix (if any)
Parameters:
  type - the type of the attribute, typically "CDATA"
Parameters:
  value - the value of the parameter
Parameters:
  XSLAttribute - true if this attribute is coming from an xsl:attribute element
See Also:   ExtendedContentHandler.addAttribute(StringStringStringStringString)



addAttribute
public void addAttribute(String rawName, String value)(Code)
Adds an attribute to the currenly open tag
Parameters:
  rawName - the attribute name, with prefix (if any)
Parameters:
  value - the value of the parameter
See Also:   ExtendedContentHandler.addAttribute(StringString)



addAttributes
public void addAttributes(Attributes atts) throws SAXException(Code)

See Also:   ExtendedContentHandler.addAttributes(org.xml.sax.Attributes)



addUniqueAttribute
public void addUniqueAttribute(String rawName, String value, int flags) throws SAXException(Code)
Adds a unique attribute to the currenly open tag



asContentHandler
public ContentHandler asContentHandler() throws IOException(Code)

See Also:   Serializer.asContentHandler the wrapped XML or HTML handler



asDOMSerializer
public DOMSerializer asDOMSerializer() throws IOException(Code)

See Also:   Serializer.asDOMSerializer



attributeDecl
public void attributeDecl(String arg0, String arg1, String arg2, String arg3, String arg4) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.DeclHandler.attributeDecl(StringStringStringStringString)



characters
public void characters(String chars) throws SAXException(Code)
Converts the String to a character array and calls the SAX method characters(char[],int,int);
See Also:   ExtendedContentHandler.characters(String)



characters
public void characters(char[] characters, int offset, int length) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.characters(char[]intint)



close
public void close()(Code)

See Also:   SerializationHandler.close



comment
public void comment(String comment) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   ExtendedLexicalHandler.comment(String)



comment
public void comment(char[] ch, int start, int length) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.comment(char[]intint)



elementDecl
public void elementDecl(String arg0, String arg1) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.DeclHandler.elementDecl(StringString)



endCDATA
public void endCDATA() throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.endCDATA



endDTD
public void endDTD() throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.endDTD



endDocument
public void endDocument() throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.endDocument



endElement
public void endElement(String elementName) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   ExtendedContentHandler.endElement(String)



endElement
public void endElement(String namespaceURI, String localName, String qName) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.endElement(StringStringString)



endEntity
public void endEntity(String name) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.endEntity(String)



endPrefixMapping
public void endPrefixMapping(String prefix) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.endPrefixMapping(String)



entityReference
public void entityReference(String entityName) throws SAXException(Code)

See Also:   ExtendedContentHandler.entityReference(java.lang.String)



externalEntityDecl
public void externalEntityDecl(String name, String publicId, String systemId) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.DeclHandler.externalEntityDecl(StringStringString)



firePseudoElement
protected void firePseudoElement(String elementName)(Code)



flushPending
public void flushPending() throws SAXException(Code)

See Also:   SerializationHandler.flushPending



getDoctypePublic
public String getDoctypePublic()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getDoctypePublic



getDoctypeSystem
public String getDoctypeSystem()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getDoctypeSystem



getEncoding
public String getEncoding()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getEncoding



getIndent
public boolean getIndent()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getIndent



getIndentAmount
public int getIndentAmount()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getIndentAmount



getMediaType
public String getMediaType()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getMediaType



getNamespaceMappings
public NamespaceMappings getNamespaceMappings()(Code)
Get the current namespace mappings. Simply returns the mappings of the wrapped handler.
See Also:   ExtendedContentHandler.getNamespaceMappings



getNamespaceURI
public String getNamespaceURI(String qname, boolean isElement)(Code)

See Also:   ExtendedContentHandler.getNamespaceURI(java.lang.Stringboolean)



getNamespaceURIFromPrefix
public String getNamespaceURIFromPrefix(String prefix)(Code)



getOmitXMLDeclaration
public boolean getOmitXMLDeclaration()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getOmitXMLDeclaration



getOutputFormat
public Properties getOutputFormat()(Code)

See Also:   Serializer.getOutputFormat the properties of the underlying handler



getOutputStream
public OutputStream getOutputStream()(Code)

See Also:   Serializer.getOutputStream the OutputStream of the underlying XML or HTML handler



getPrefix
public String getPrefix(String namespaceURI)(Code)

See Also:   ExtendedContentHandler.getPrefix



getStandalone
public String getStandalone()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getStandalone



getTransformer
public Transformer getTransformer()(Code)



getVersion
public String getVersion()(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.getVersion



getWriter
public Writer getWriter()(Code)

See Also:   Serializer.getWriter the Writer of the underlying XML or HTML handler



ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.ignorableWhitespace(char[]intint)



internalEntityDecl
public void internalEntityDecl(String arg0, String arg1) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.DeclHandler.internalEntityDecl(StringString)



namespaceAfterStartElement
public void namespaceAfterStartElement(String prefix, String uri) throws SAXException(Code)
This method is used when a prefix/uri namespace mapping is indicated after the element was started with a startElement() and before and endElement(). startPrefixMapping(prefix,uri) would be used before the startElement() call.
Parameters:
  uri - the URI of the namespace
Parameters:
  prefix - the prefix associated with the given URI.
See Also:   ExtendedContentHandler.namespaceAfterStartElement(StringString)



processingInstruction
public void processingInstruction(String target, String data) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.processingInstruction(StringString)



reset
public boolean reset()(Code)
passes the call on to the underlying HTML or XML handler
See Also:   Serializer.reset ???



serialize
public void serialize(Node node) throws IOException(Code)
Converts the DOM node to output
Parameters:
  node - the DOM node to transform to output
See Also:   DOMSerializer.serialize(Node)



setCdataSectionElements
public void setCdataSectionElements(Vector URI_and_localNames)(Code)

Parameters:
  URI_and_localNames - Vector a list of pairs of URI/localNamespecified in the cdata-section-elements attribute.
See Also:   SerializationHandler.setCdataSectionElements(java.util.Vector)



setContentHandler
public void setContentHandler(ContentHandler ch)(Code)

See Also:   SerializationHandler.setContentHandler(org.xml.sax.ContentHandler)



setDoctype
public void setDoctype(String system, String pub)(Code)

See Also:   XSLOutputAttributes.setDoctype(StringString)



setDoctypePublic
public void setDoctypePublic(String doctype)(Code)
Set the doctype in the underlying XML handler. Remember that this method was called, just in case we need to transfer this doctype to an HTML handler
Parameters:
  doctype - the public doctype to set
See Also:   XSLOutputAttributes.setDoctypePublic(String)



setDoctypeSystem
public void setDoctypeSystem(String doctype)(Code)
Set the doctype in the underlying XML handler. Remember that this method was called, just in case we need to transfer this doctype to an HTML handler
Parameters:
  doctype - the system doctype to set
See Also:   XSLOutputAttributes.setDoctypeSystem(String)



setDocumentLocator
public void setDocumentLocator(Locator locator)(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.setDocumentLocator(Locator)



setEncoding
public void setEncoding(String encoding)(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.setEncoding(String)



setEscaping
public boolean setEscaping(boolean escape) throws SAXException(Code)

See Also:   SerializationHandler.setEscaping(boolean)



setIndent
public void setIndent(boolean indent)(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.setIndent(boolean)



setIndentAmount
public void setIndentAmount(int value)(Code)
Pass the call on to the underlying handler



setMediaType
public void setMediaType(String mediaType)(Code)

See Also:   XSLOutputAttributes.setMediaType(String)



setOmitXMLDeclaration
public void setOmitXMLDeclaration(boolean b)(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.setOmitXMLDeclaration(boolean)



setOutputFormat
public void setOutputFormat(Properties format)(Code)
Set the properties of the handler
Parameters:
  format - the output properties to set
See Also:   Serializer.setOutputFormat(Properties)



setOutputStream
public void setOutputStream(OutputStream output)(Code)
Sets the output stream to write to
Parameters:
  output - the OutputStream to write to
See Also:   Serializer.setOutputStream(OutputStream)



setSourceLocator
public void setSourceLocator(SourceLocator locator)(Code)
This method is used to set the source locator, which might be used to generated an error message.
Parameters:
  locator - the source locator
See Also:   ExtendedContentHandler.setSourceLocator(javax.xml.transform.SourceLocator)



setStandalone
public void setStandalone(String standalone)(Code)
Pass the call on to the underlying handler
See Also:   XSLOutputAttributes.setStandalone(String)



setTransformer
public void setTransformer(Transformer t)(Code)



setVersion
public void setVersion(String version)(Code)
This method cannot be cached because default is different in HTML and XML (we need more than a boolean).



setWriter
public void setWriter(Writer writer)(Code)
Sets the writer to write to
Parameters:
  writer - the writer to write to
See Also:   Serializer.setWriter(Writer)



skippedEntity
public void skippedEntity(String name) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ContentHandler.skippedEntity(String)



startCDATA
public void startCDATA() throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.startCDATA



startDTD
public void startDTD(String name, String publicId, String systemId) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.startDTD(StringStringString)



startDocument
public void startDocument() throws SAXException(Code)

See Also:   org.xml.sax.ContentHandler.startDocument



startElement
public void startElement(String qName) throws SAXException(Code)



startElement
public void startElement(String namespaceURI, String localName, String qName) throws SAXException(Code)



startElement
public void startElement(String namespaceURI, String localName, String elementName, Attributes atts) throws SAXException(Code)



startEntity
public void startEntity(String name) throws SAXException(Code)
Pass the call on to the underlying handler
See Also:   org.xml.sax.ext.LexicalHandler.startEntity(String)



startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws SAXException(Code)

See Also:   org.xml.sax.ContentHandler.startPrefixMapping(StringString)
Parameters:
  prefix - The prefix that maps to the URI
Parameters:
  uri - The URI for the namespace



startPrefixMapping
public boolean startPrefixMapping(String prefix, String uri, boolean shouldFlush) throws SAXException(Code)



Fields inherited from org.apache.xml.serializer.SerializerBase
protected char[] m_attrBuff(Code)(Java Doc)
protected AttributesImplSerializer m_attributes(Code)(Java Doc)
protected Vector m_cdataSectionElements(Code)(Java Doc)
protected boolean m_cdataTagOpen(Code)(Java Doc)
protected char[] m_charsBuff(Code)(Java Doc)
protected boolean m_doIndent(Code)(Java Doc)
protected ElemContext m_elemContext(Code)(Java Doc)
protected boolean m_inEntityRef(Code)(Java Doc)
protected boolean m_inExternalDTD(Code)(Java Doc)
protected int m_indentAmount(Code)(Java Doc)
protected boolean m_needToCallStartDocument(Code)(Java Doc)
boolean m_needToOutputDocTypeDecl(Code)(Java Doc)
protected NamespaceMappings m_prefixMap(Code)(Java Doc)
protected SourceLocator m_sourceLocator(Code)(Java Doc)
protected boolean m_standaloneWasSpecified(Code)(Java Doc)
protected SerializerTrace m_tracer(Code)(Java Doc)
protected java.io.Writer m_writer(Code)(Java Doc)

Methods inherited from org.apache.xml.serializer.SerializerBase
public void addAttribute(String uri, String localName, String rawName, String type, String value, boolean XSLAttribute) throws SAXException(Code)(Java Doc)
public void addAttribute(String name, String value)(Code)(Java Doc)
public void addAttribute(String uri, String localName, String rawName, String type, String value) throws SAXException(Code)(Java Doc)
public boolean addAttributeAlways(String uri, String localName, String rawName, String type, String value, boolean XSLAttribute)(Code)(Java Doc)
public void addAttributes(Attributes atts) throws SAXException(Code)(Java Doc)
public void addXSLAttribute(String name, String value, String uri)(Code)(Java Doc)
public ContentHandler asContentHandler() throws IOException(Code)(Java Doc)
public DOMSerializer asDOMSerializer() throws IOException(Code)(Java Doc)
public void characters(org.w3c.dom.Node node) throws org.xml.sax.SAXException(Code)(Java Doc)
public void close()(Code)(Java Doc)
public void comment(String data) throws SAXException(Code)(Java Doc)
public void endEntity(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
public void entityReference(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
public void error(SAXParseException exc) throws SAXException(Code)(Java Doc)
public void fatalError(SAXParseException exc) throws SAXException(Code)(Java Doc)
protected void fireCDATAEvent(char[] chars, int start, int length) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireCharEvent(char[] chars, int start, int length) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireCommentEvent(char[] chars, int start, int length) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireEndDoc() throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireEndElem(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
public void fireEndEntity(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireEntityReference(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireEscapingEvent(String name, String data) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireStartDoc() throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireStartElem(String elemName) throws org.xml.sax.SAXException(Code)(Java Doc)
protected void fireStartEntity(String name) throws org.xml.sax.SAXException(Code)(Java Doc)
public String getDoctypePublic()(Code)(Java Doc)
public String getDoctypeSystem()(Code)(Java Doc)
public String getEncoding()(Code)(Java Doc)
public boolean getIndent()(Code)(Java Doc)
public int getIndentAmount()(Code)(Java Doc)
protected static String getLocalName(String qname)(Code)(Java Doc)
public String getMediaType()(Code)(Java Doc)
public NamespaceMappings getNamespaceMappings()(Code)(Java Doc)
public String getNamespaceURI(String qname, boolean isElement)(Code)(Java Doc)
public String getNamespaceURIFromPrefix(String prefix)(Code)(Java Doc)
public boolean getOmitXMLDeclaration()(Code)(Java Doc)
public String getPrefix(String namespaceURI)(Code)(Java Doc)
final protected static String getPrefixPart(String qname)(Code)(Java Doc)
public String getStandalone()(Code)(Java Doc)
public Transformer getTransformer()(Code)(Java Doc)
public String getVersion()(Code)(Java Doc)
final boolean inTemporaryOutputState()(Code)(Java Doc)
protected void initCDATA()(Code)(Java Doc)
protected boolean isCdataSection()(Code)(Java Doc)
public void namespaceAfterStartElement(String uri, String prefix) throws SAXException(Code)(Java Doc)
public void notationDecl(String arg0, String arg1, String arg2) throws SAXException(Code)(Java Doc)
protected String patchName(String qname)(Code)(Java Doc)
public boolean reset()(Code)(Java Doc)
public void setDTDEntityExpansion(boolean expand)(Code)(Java Doc)
public void setDoctype(String doctypeSystem, String doctypePublic)(Code)(Java Doc)
public void setDoctypePublic(String doctypePublic)(Code)(Java Doc)
public void setDoctypeSystem(String doctypeSystem)(Code)(Java Doc)
public void setDocumentLocator(Locator locator)(Code)(Java Doc)
public void setEncoding(String m_encoding)(Code)(Java Doc)
public void setIndent(boolean doIndent)(Code)(Java Doc)
public void setIndentAmount(int m_indentAmount)(Code)(Java Doc)
public void setMediaType(String mediaType)(Code)(Java Doc)
public void setNamespaceMappings(NamespaceMappings mappings)(Code)(Java Doc)
public void setOmitXMLDeclaration(boolean b)(Code)(Java Doc)
public void setSourceLocator(SourceLocator locator)(Code)(Java Doc)
public void setStandalone(String standalone)(Code)(Java Doc)
protected void setStandaloneInternal(String standalone)(Code)(Java Doc)
public void setTransformer(Transformer t)(Code)(Java Doc)
public void setVersion(String version)(Code)(Java Doc)
public void startDocument() throws org.xml.sax.SAXException(Code)(Java Doc)
protected void startDocumentInternal() throws org.xml.sax.SAXException(Code)(Java Doc)
public void unparsedEntityDecl(String arg0, String arg1, String arg2, String arg3) throws SAXException(Code)(Java Doc)
public void warning(SAXParseException exc) 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.