Java Doc for DOMResponseWriter.java in  » J2EE » ICEfaces-1.6.1 » com » icesoft » faces » context » 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 » J2EE » ICEfaces 1.6.1 » com.icesoft.faces.context 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.icesoft.faces.context.DOMResponseWriter

DOMResponseWriter
public class DOMResponseWriter extends ResponseWriter (Code)

DOMResponseWriter is a DOM specific implementation of javax.faces.context.ResponseWriter.



Field Summary
final public static  StringDOCTYPE_OUTPUT
    
final public static  StringDOCTYPE_PRETTY_PRINTING
    
final public static  StringDOCTYPE_PUBLIC
    
final public static  StringDOCTYPE_ROOT
    
final public static  StringDOCTYPE_SYSTEM
    
final public static  StringOLD_DOM
    
final public static  StringRESPONSE_CONTEXTS_TABLE
    
final public static  StringRESPONSE_DOM
    
final public static  StringRESPONSE_DOM_ID
    
final public static  StringRESPONSE_VIEWROOT
    
final public static  StringSTREAM_WRITING
    

Constructor Summary
public  DOMResponseWriter(FacesContext context, DOMSerializer serializer, Configuration configuration)
    

Method Summary
public  ResponseWritercloneWithWriter(Writer writer)
    
public  voidclose()
    
public  voidendDocument()
    
public  voidendElement(String name)
    
public  voidflush()
    
public  StringgetCharacterEncoding()
    
public  StringgetContentType()
    
public  NodegetCursorParent()
    
public  DocumentgetDocument()
    
 MapgetDomResponseContexts()
    
public static  booleanisStreamWriting()
    
protected  voidsetCursorParent(Node cursorParent)
     This method sets the write cursor for DOM modifications.
public  voidstartDocument()
    
public  voidstartElement(String name, UIComponent componentForElement)
    
public  voidwrite(char[] cbuf, int off, int len)
    
public  voidwrite(int c)
    
public  voidwrite(String str)
    
public  voidwrite(String str, int off, int len)
    
public  voidwriteAttribute(String name, Object value, String componentPropertyName)
    
public  voidwriteComment(Object comment)
    
public  voidwriteText(Object text, String componentPropertyName)
    
public  voidwriteText(char text, int off, int len)
    
public  voidwriteURIAttribute(String name, Object value, String componentPropertyName)
    

Field Detail
DOCTYPE_OUTPUT
final public static String DOCTYPE_OUTPUT(Code)



DOCTYPE_PRETTY_PRINTING
final public static String DOCTYPE_PRETTY_PRINTING(Code)



DOCTYPE_PUBLIC
final public static String DOCTYPE_PUBLIC(Code)



DOCTYPE_ROOT
final public static String DOCTYPE_ROOT(Code)



DOCTYPE_SYSTEM
final public static String DOCTYPE_SYSTEM(Code)



OLD_DOM
final public static String OLD_DOM(Code)



RESPONSE_CONTEXTS_TABLE
final public static String RESPONSE_CONTEXTS_TABLE(Code)



RESPONSE_DOM
final public static String RESPONSE_DOM(Code)



RESPONSE_DOM_ID
final public static String RESPONSE_DOM_ID(Code)



RESPONSE_VIEWROOT
final public static String RESPONSE_VIEWROOT(Code)



STREAM_WRITING
final public static String STREAM_WRITING(Code)




Constructor Detail
DOMResponseWriter
public DOMResponseWriter(FacesContext context, DOMSerializer serializer, Configuration configuration)(Code)




Method Detail
cloneWithWriter
public ResponseWriter cloneWithWriter(Writer writer)(Code)



close
public void close() throws IOException(Code)



endDocument
public void endDocument() throws IOException(Code)



endElement
public void endElement(String name) throws IOException(Code)



flush
public void flush() throws IOException(Code)



getCharacterEncoding
public String getCharacterEncoding()(Code)



getContentType
public String getContentType()(Code)



getCursorParent
public Node getCursorParent()(Code)



getDocument
public Document getDocument()(Code)



getDomResponseContexts
Map getDomResponseContexts()(Code)



isStreamWriting
public static boolean isStreamWriting()(Code)



setCursorParent
protected void setCursorParent(Node cursorParent)(Code)
This method sets the write cursor for DOM modifications. Subsequent DOM modifications will take place below the cursor element.
Parameters:
  cursorParent - parent node for subsequent modifications to the DOM



startDocument
public void startDocument() throws IOException(Code)



startElement
public void startElement(String name, UIComponent componentForElement) throws IOException(Code)



write
public void write(char[] cbuf, int off, int len) throws IOException(Code)



write
public void write(int c) throws IOException(Code)



write
public void write(String str) throws IOException(Code)



write
public void write(String str, int off, int len) throws IOException(Code)



writeAttribute
public void writeAttribute(String name, Object value, String componentPropertyName) throws IOException(Code)



writeComment
public void writeComment(Object comment) throws IOException(Code)



writeText
public void writeText(Object text, String componentPropertyName) throws IOException(Code)



writeText
public void writeText(char text, int off, int len) throws IOException(Code)



writeURIAttribute
public void writeURIAttribute(String name, Object value, String componentPropertyName) throws IOException(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.