Java Doc for ComplexContentOutputter.java in  » XML » XPath-Saxon » net » sf » saxon » event » 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 » XPath Saxon » net.sf.saxon.event 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.sf.saxon.event.SequenceReceiver
      net.sf.saxon.event.ComplexContentOutputter

ComplexContentOutputter
final public class ComplexContentOutputter extends SequenceReceiver (Code)
This class is used for generating complex content, that is, the content of an element or document node. It enforces the rules on the order of events within complex content (attributes and namespaces must come first), and it implements part of the namespace fixup rules, in particular, it ensures that there is a namespace node for the namespace used in the element name and in each attribute name.

The same ComplexContentOutputter may be used for generating an entire XML document; it is not necessary to create a new outputter for each element node.


author:
   Michael H. Kay



Constructor Summary
public  ComplexContentOutputter()
    

Method Summary
public  voidappend(Item item, int locationId, int copyNamespaces)
    
public  voidattribute(int nameCode, int typeCode, CharSequence value, int locationId, int properties)
     Output an attribute value.
public  voidcharacters(CharSequence s, int locationId, int properties)
     Produce text content output.
public  voidclose()
    
public  voidcomment(CharSequence comment, int locationId, int properties)
    
public  voidendDocument()
    
public  voidendElement()
     Output an element end tag.
public  NamePoolgetNamePool()
    
public  StringgetSystemId()
    
public  voidnamespace(int nscode, int properties)
     Output a namespace declaration.
public  voidopen()
    
public  voidprocessingInstruction(String target, CharSequence data, int locationId, int properties)
    
public  voidsetPipelineConfiguration(PipelineConfiguration pipelineConfiguration)
    
public  voidsetReceiver(Receiver receiver)
    
public  voidsetSystemId(String systemId)
    
public  voidstartContent()
    
public  voidstartDocument(int properties)
     Start of a document node.
public  voidstartElement(int nameCode, int typeCode, int locationId, int properties)
     Output an element start tag.


Constructor Detail
ComplexContentOutputter
public ComplexContentOutputter()(Code)




Method Detail
append
public void append(Item item, int locationId, int copyNamespaces) throws XPathException(Code)
Append an arbitrary item (node or atomic value) to the output
Parameters:
  item - the item to be appended
Parameters:
  locationId - the location of the calling instruction, for diagnostics
Parameters:
  copyNamespaces - if the item is an element node, this indicates whether its namespaces



attribute
public void attribute(int nameCode, int typeCode, CharSequence value, int locationId, int properties) throws XPathException(Code)
Output an attribute value.
This is added to a list of pending attributes for the current start tag, overwriting any previous attribute with the same name.
This method should NOT be used to output namespace declarations.

Parameters:
  nameCode - The name of the attribute
Parameters:
  value - The value of the attribute
Parameters:
  properties - Bit fields containing properties of the attribute to be written
throws:
  XPathException - if there is no start tag to write to (created using writeStartTag),or if character content has been written since the start tag was written.



characters
public void characters(CharSequence s, int locationId, int properties) throws XPathException(Code)
Produce text content output.
Special characters are escaped using XML/HTML conventions if the output format requires it.
Parameters:
  s - The String to be output
exception:
  XPathException - for any failure



close
public void close() throws XPathException(Code)
Close the output



comment
public void comment(CharSequence comment, int locationId, int properties) throws XPathException(Code)
Write a comment



endDocument
public void endDocument() throws XPathException(Code)
Notify the end of a document node



endElement
public void endElement() throws XPathException(Code)
Output an element end tag.



getNamePool
public NamePool getNamePool()(Code)



getSystemId
public String getSystemId()(Code)



namespace
public void namespace(int nscode, int properties) throws XPathException(Code)
Output a namespace declaration.
This is added to a list of pending namespaces for the current start tag. If there is already another declaration of the same prefix, this one is ignored, unless the REJECT_DUPLICATES flag is set, in which case this is an error. Note that unlike SAX2 startPrefixMapping(), this call is made AFTER writing the start tag.
Parameters:
  nscode - The namespace code
throws:
  XPathException - if there is no start tag to write to (created using writeStartTag),or if character content has been written since the start tag was written.



open
public void open() throws XPathException(Code)
Start the output process



processingInstruction
public void processingInstruction(String target, CharSequence data, int locationId, int properties) throws XPathException(Code)
Write a processing instruction



setPipelineConfiguration
public void setPipelineConfiguration(PipelineConfiguration pipelineConfiguration)(Code)



setReceiver
public void setReceiver(Receiver receiver)(Code)
Set the receiver (to handle the next stage in the pipeline) directly



setSystemId
public void setSystemId(String systemId)(Code)



startContent
public void startContent() throws XPathException(Code)
Flush out a pending start tag



startDocument
public void startDocument(int properties) throws XPathException(Code)
Start of a document node.



startElement
public void startElement(int nameCode, int typeCode, int locationId, int properties) throws XPathException(Code)
Output an element start tag.
The actual output of the tag is deferred until all attributes have been output using attribute().
Parameters:
  nameCode - The element name code



Fields inherited from net.sf.saxon.event.SequenceReceiver
protected PipelineConfiguration pipelineConfiguration(Code)(Java Doc)
protected boolean previousAtomic(Code)(Java Doc)

Methods inherited from net.sf.saxon.event.SequenceReceiver
public void append(Item item, int locationId, int copyNamespaces) throws XPathException(Code)(Java Doc)
public Configuration getConfiguration()(Code)(Java Doc)
public NamePool getNamePool()(Code)(Java Doc)
public PipelineConfiguration getPipelineConfiguration()(Code)(Java Doc)
public String getSystemId()(Code)(Java Doc)
public void open() throws XPathException(Code)(Java Doc)
public void setPipelineConfiguration(PipelineConfiguration pipelineConfiguration)(Code)(Java Doc)
public void setSystemId(String systemId)(Code)(Java Doc)
public void setUnparsedEntity(String name, String systemId, String publicId) throws XPathException(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.