Java Doc for XIncludeXMLBuilder.java in  » Installer » IzPack » net » n3 » nanoxml » 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 » Installer » IzPack » net.n3.nanoxml 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   net.n3.nanoxml.StdXMLBuilder
      net.n3.nanoxml.XIncludeXMLBuilder

XIncludeXMLBuilder
public class XIncludeXMLBuilder extends StdXMLBuilder (Code)
Extend the XMLBuilder to add XInclude functionality


Field Summary
final public static  StringACCEPT_ENCODING
     The attribute describing the accept header that will be used with http based includes.
final public static  StringENCODING_ATTRIB
    
final public static  StringFALLBACK_ELEMENT
     The element for handling fallbacks.
final public static  StringFRAGMENT
     The fragment element is a root node element that can be used to wrap xml fragments for inclusion.
final public static  StringFRAGMENT_NS
     Namespace for the "fragment" element used to include xml documents with no explicit root node.
final public static  StringHREF_ATTRIB
    
final public static  StringINCLUDE_ELEMENT
    
final public static  StringINCLUDE_NS
     Namespace for XInclude (NOTE that this is not used at the moment).
final public static  StringPARSE_ATTRIB
     Parse attribute.
final public static  StringXPOINTER_ATTRIB
     The xpointer attribute.


Method Summary
public  voidendElement(String name, String nsPrefix, String nsSystemID)
    
public  voidstartBuilding(String systemID, int lineNr)
     used to record the system id for this document.

Field Detail
ACCEPT_ENCODING
final public static String ACCEPT_ENCODING(Code)
The attribute describing the accept header that will be used with http based includes.



ENCODING_ATTRIB
final public static String ENCODING_ATTRIB(Code)
The attribute to decribe the encoding of the text include (no effect when parse='xml')



FALLBACK_ELEMENT
final public static String FALLBACK_ELEMENT(Code)
The element for handling fallbacks. This should be called "fallback" and be in the XIncludeXMLBuilder.INCLUDE_NS but namespaces are not supported



FRAGMENT
final public static String FRAGMENT(Code)
The fragment element is a root node element that can be used to wrap xml fragments for inclusion. It is removed during the include operation. This should be called "fragment" and be in the XIncludeXMLBuilder.FRAGMENT_NS but namespaces are not supported.



FRAGMENT_NS
final public static String FRAGMENT_NS(Code)
Namespace for the "fragment" element used to include xml documents with no explicit root node.



HREF_ATTRIB
final public static String HREF_ATTRIB(Code)
The location of the included data



INCLUDE_ELEMENT
final public static String INCLUDE_ELEMENT(Code)
The name of the include element (this should be "include" using the XIncludeXMLBuilder.INCLUDE_NS but namespaces are not supported



INCLUDE_NS
final public static String INCLUDE_NS(Code)
Namespace for XInclude (NOTE that this is not used at the moment). The specification can be found here.



PARSE_ATTRIB
final public static String PARSE_ATTRIB(Code)
Parse attribute. If missing this implies "xml" its other valid value is "text"



XPOINTER_ATTRIB
final public static String XPOINTER_ATTRIB(Code)
The xpointer attribute. This must not be used when "parse='text'"





Method Detail
endElement
public void endElement(String name, String nsPrefix, String nsSystemID)(Code)



startBuilding
public void startBuilding(String systemID, int lineNr)(Code)
used to record the system id for this document.
Parameters:
  systemID - the system id of the document being built
Parameters:
  lineNr - the line number



Methods inherited from net.n3.nanoxml.StdXMLBuilder
public void addAttribute(String key, String nsPrefix, String nsSystemID, String value, String type) throws Exception(Code)(Java Doc)
public void addPCData(Reader reader, String systemID, int lineNr) throws Exception(Code)(Java Doc)
public void elementAttributesProcessed(String name, String nsPrefix, String nsSystemID)(Code)(Java Doc)
public void endElement(String name, String nsPrefix, String nsSystemID)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
protected XMLElement getCurrentElement()(Code)(Java Doc)
public Object getResult()(Code)(Java Doc)
protected Stack<XMLElement> getStack()(Code)(Java Doc)
public void newProcessingInstruction(String target, Reader reader)(Code)(Java Doc)
protected void setRootElement(XMLElement element)(Code)(Java Doc)
public void startBuilding(String systemID, int lineNr)(Code)(Java Doc)
public void startElement(String name, String nsPrefix, String nsSystemID, String systemID, int lineNr)(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.