Java Doc for JavaJspBuilder.java in  » EJB-Server-resin-3.1.5 » resin » com » caucho » jsp » java » 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 » EJB Server resin 3.1.5 » resin » com.caucho.jsp.java 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.caucho.jsp.JspBuilder
      com.caucho.jsp.java.JavaJspBuilder

JavaJspBuilder
public class JavaJspBuilder extends JspBuilder (Code)
Generates the nodes for JSP code.


Field Summary
final static  intDECLARATION
    
final static  intDIRECTIVE_PAGE
    
final static  intEXPR
    
final static  intEXPR_EL
    
final static  intFOREACH
    
final static  intFORWARD
    
final static  intFUNCTION
    
final static  intGET_PROPERTY
    
final static  intIF
    
final static  intIGNORE
    
final static  intINCLUDE
    
final public static  StringJSF_CORE_URI
    
final static  intJSP_ATTRIBUTE
    
final static  intJSP_BODY
    
final static  intJSP_TEXT
    
final public static  StringJSTL_CORE_URI
    
final public static  StringJSTL_EL_CORE_URI
    
final public static  StringJSTL_EL_FMT_URI
    
final public static  StringJSTL_EL_SQL_URI
    
final public static  StringJSTL_EL_XML_URI
    
final public static  StringJSTL_FMT_URI
    
final public static  StringJSTL_RT_CORE_URI
    
final public static  StringJSTL_RT_FMT_URI
    
final public static  StringJSTL_RT_SQL_URI
    
final public static  StringJSTL_RT_XML_URI
    
final public static  StringJSTL_SQL_URI
    
final public static  StringJSTL_XML_URI
    
final static  intPLUGIN
    
final static  intREQUEST
    
final static  intROOT
    
final static  intSCRIPTLET
    
final static  intSET
    
final static  intSET_PROPERTY
    
final static  intTAG
    
final static  intTEXT
    
final static  intUSE_BEAN
    
static  HashMap<QName, Class>_fastTagMap
    
static  HashMap<QName, Class>_jsfTagMap
    
static  HashMap<QName, Class>_tagMap
    

Constructor Summary
public  JavaJspBuilder()
     Creates the JSP builder.

Method Summary
public  voidattribute(QName name, String value)
     Adds an attribute to the element.
public  voidendAttributes()
     Called when the attributes end.
public  voidendDocument()
    
public  voidendElement(String name)
     Ends an element.
public  JspParseExceptionerror(String message)
    
public  JspParseExceptionerror(Throwable e)
    
public  JspNodegetCurrentNode()
     Returns the current node.
public  JspGeneratorgetGenerator()
     Returns the generator.
public  JspNodegetRootNode()
     Returns the root node.
public  booleanisPrototype()
     Gets the prototype mode.
public  voidsetPrototype(boolean prototype)
     Sets the prototype mode.
public  voidstartDocument()
    
public  voidstartElement(QName qname)
     Starts an element.
public  voidstartPrefixMapping(String prefix, String uri)
     Starts a prefix mapping.
public  voidtext(String text)
     Adds text.
public  voidtext(String text, String srcFilename, int startLine, int endLine)
     Adds text.

Field Detail
DECLARATION
final static int DECLARATION(Code)



DIRECTIVE_PAGE
final static int DIRECTIVE_PAGE(Code)



EXPR
final static int EXPR(Code)



EXPR_EL
final static int EXPR_EL(Code)



FOREACH
final static int FOREACH(Code)



FORWARD
final static int FORWARD(Code)



FUNCTION
final static int FUNCTION(Code)



GET_PROPERTY
final static int GET_PROPERTY(Code)



IF
final static int IF(Code)



IGNORE
final static int IGNORE(Code)



INCLUDE
final static int INCLUDE(Code)



JSF_CORE_URI
final public static String JSF_CORE_URI(Code)



JSP_ATTRIBUTE
final static int JSP_ATTRIBUTE(Code)



JSP_BODY
final static int JSP_BODY(Code)



JSP_TEXT
final static int JSP_TEXT(Code)



JSTL_CORE_URI
final public static String JSTL_CORE_URI(Code)



JSTL_EL_CORE_URI
final public static String JSTL_EL_CORE_URI(Code)



JSTL_EL_FMT_URI
final public static String JSTL_EL_FMT_URI(Code)



JSTL_EL_SQL_URI
final public static String JSTL_EL_SQL_URI(Code)



JSTL_EL_XML_URI
final public static String JSTL_EL_XML_URI(Code)



JSTL_FMT_URI
final public static String JSTL_FMT_URI(Code)



JSTL_RT_CORE_URI
final public static String JSTL_RT_CORE_URI(Code)



JSTL_RT_FMT_URI
final public static String JSTL_RT_FMT_URI(Code)



JSTL_RT_SQL_URI
final public static String JSTL_RT_SQL_URI(Code)



JSTL_RT_XML_URI
final public static String JSTL_RT_XML_URI(Code)



JSTL_SQL_URI
final public static String JSTL_SQL_URI(Code)



JSTL_XML_URI
final public static String JSTL_XML_URI(Code)



PLUGIN
final static int PLUGIN(Code)



REQUEST
final static int REQUEST(Code)



ROOT
final static int ROOT(Code)



SCRIPTLET
final static int SCRIPTLET(Code)



SET
final static int SET(Code)



SET_PROPERTY
final static int SET_PROPERTY(Code)



TAG
final static int TAG(Code)



TEXT
final static int TEXT(Code)



USE_BEAN
final static int USE_BEAN(Code)



_fastTagMap
static HashMap<QName, Class> _fastTagMap(Code)



_jsfTagMap
static HashMap<QName, Class> _jsfTagMap(Code)



_tagMap
static HashMap<QName, Class> _tagMap(Code)




Constructor Detail
JavaJspBuilder
public JavaJspBuilder()(Code)
Creates the JSP builder.




Method Detail
attribute
public void attribute(QName name, String value) throws JspParseException(Code)
Adds an attribute to the element.
Parameters:
  name - the attribute name
Parameters:
  value - the attribute value



endAttributes
public void endAttributes() throws JspParseException(Code)
Called when the attributes end.



endDocument
public void endDocument() throws JspParseException(Code)
Starts the document



endElement
public void endElement(String name) throws JspParseException(Code)
Ends an element.
Parameters:
  qname - the name of the element to end



error
public JspParseException error(String message)(Code)



error
public JspParseException error(Throwable e)(Code)



getCurrentNode
public JspNode getCurrentNode()(Code)
Returns the current node.



getGenerator
public JspGenerator getGenerator()(Code)
Returns the generator.



getRootNode
public JspNode getRootNode()(Code)
Returns the root node.



isPrototype
public boolean isPrototype()(Code)
Gets the prototype mode.



setPrototype
public void setPrototype(boolean prototype)(Code)
Sets the prototype mode.



startDocument
public void startDocument() throws JspParseException(Code)
Starts the document



startElement
public void startElement(QName qname) throws JspParseException(Code)
Starts an element.
Parameters:
  qname - the name of the element to start



startPrefixMapping
public void startPrefixMapping(String prefix, String uri) throws JspParseException(Code)
Starts a prefix mapping.
Parameters:
  prefix - the xml prefix
Parameters:
  uri - the namespace uri



text
public void text(String text) throws JspParseException(Code)
Adds text.
Parameters:
  text - the text to add



text
public void text(String text, String srcFilename, int startLine, int endLine) throws JspParseException(Code)
Adds text.
Parameters:
  text - the text to add



Fields inherited from com.caucho.jsp.JspBuilder
protected String _filename(Code)(Java Doc)
protected JspCompiler _jspCompiler(Code)(Java Doc)
protected JspParser _jspParser(Code)(Java Doc)
protected int _line(Code)(Java Doc)
protected ParseState _parseState(Code)(Java Doc)
protected Path _sourcePath(Code)(Java Doc)
protected ParseTagManager _tagManager(Code)(Java Doc)

Methods inherited from com.caucho.jsp.JspBuilder
public void addNamespace(String prefix, String uri)(Code)(Java Doc)
abstract public void attribute(QName name, String value) throws JspParseException(Code)(Java Doc)
abstract public void endAttributes() throws JspParseException(Code)(Java Doc)
abstract public void endDocument() throws JspParseException(Code)(Java Doc)
abstract public void endElement(String name) throws JspParseException(Code)(Java Doc)
abstract public JspNode getCurrentNode()(Code)(Java Doc)
abstract public JspGenerator getGenerator()(Code)(Java Doc)
public JspCompiler getJspCompiler()(Code)(Java Doc)
public JspParser getJspParser()(Code)(Java Doc)
public JspPropertyGroup getJspPropertyGroup()(Code)(Java Doc)
public ParseState getParseState()(Code)(Java Doc)
public boolean getRequireSource()(Code)(Java Doc)
abstract public JspNode getRootNode()(Code)(Java Doc)
public ParseTagManager getTagManager()(Code)(Java Doc)
public boolean isFastJsf()(Code)(Java Doc)
public boolean isFastJstl()(Code)(Java Doc)
public void setJspCompiler(JspCompiler compiler)(Code)(Java Doc)
public void setJspParser(JspParser parser)(Code)(Java Doc)
public void setJspPropertyGroup(JspPropertyGroup jsp)(Code)(Java Doc)
public void setLocation(Path sourcePath, String filename, int line)(Code)(Java Doc)
public void setPageConfig(JspPageConfig pageConfig)(Code)(Java Doc)
public void setParseState(ParseState parseState)(Code)(Java Doc)
public void setPrototype(boolean isPrototype)(Code)(Java Doc)
public void setTagManager(ParseTagManager manager)(Code)(Java Doc)
abstract public void startDocument() throws JspParseException(Code)(Java Doc)
abstract public void startElement(QName qname) throws JspParseException(Code)(Java Doc)
abstract public void startPrefixMapping(String prefix, String uri) throws JspParseException(Code)(Java Doc)
abstract public void text(String text) throws JspParseException(Code)(Java Doc)
public void text(String text, String filename, int startLine, int endLine) throws JspParseException(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.