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


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

All known Subclasses:   com.caucho.jsp.java.JavaJspBuilder,
JspBuilder
abstract public class JspBuilder (Code)
Generates the nodes for JSP code.


Field Summary
protected  String_filename
    
protected  JspCompiler_jspCompiler
    
protected  JspParser_jspParser
    
protected  int_line
    
protected  ParseState_parseState
    
protected  Path_sourcePath
    
protected  ParseTagManager_tagManager
    


Method Summary
public  voidaddNamespace(String prefix, String uri)
    
abstract public  voidattribute(QName name, String value)
     Adds an attribute to the element.
abstract public  voidendAttributes()
     Called after the attributes end.
abstract public  voidendDocument()
    
abstract public  voidendElement(String name)
     Ends an element.
abstract public  JspNodegetCurrentNode()
     Returns the current node.
abstract public  JspGeneratorgetGenerator()
     Returns the generator.
public  JspCompilergetJspCompiler()
     Returns the parse state.
public  JspParsergetJspParser()
     Returns the parse state.
public  JspPropertyGroupgetJspPropertyGroup()
    
public  ParseStategetParseState()
     Returns the parse state.
public  booleangetRequireSource()
     Returns true if require source is enabled.
abstract public  JspNodegetRootNode()
     Returns the top node.
public  ParseTagManagergetTagManager()
    
public  booleanisFastJsf()
     Returns true if fast-jsf is enabled.
public  booleanisFastJstl()
     Returns true if fast-jstl is enabled.
public  voidsetJspCompiler(JspCompiler compiler)
    
public  voidsetJspParser(JspParser parser)
    
public  voidsetJspPropertyGroup(JspPropertyGroup jsp)
    
public  voidsetLocation(Path sourcePath, String filename, int line)
     Sets the source line number.
public  voidsetPageConfig(JspPageConfig pageConfig)
    
public  voidsetParseState(ParseState parseState)
     Sets the parse state.
public  voidsetPrototype(boolean isPrototype)
     Set for prototype builder.
public  voidsetTagManager(ParseTagManager manager)
    
abstract public  voidstartDocument()
    
abstract public  voidstartElement(QName qname)
     Starts an element.
abstract public  voidstartPrefixMapping(String prefix, String uri)
     Starts a prefix mapping.
abstract public  voidtext(String text)
     Adds text.
public  voidtext(String text, String filename, int startLine, int endLine)
     Adds text.

Field Detail
_filename
protected String _filename(Code)



_jspCompiler
protected JspCompiler _jspCompiler(Code)



_jspParser
protected JspParser _jspParser(Code)



_line
protected int _line(Code)



_parseState
protected ParseState _parseState(Code)



_sourcePath
protected Path _sourcePath(Code)



_tagManager
protected ParseTagManager _tagManager(Code)





Method Detail
addNamespace
public void addNamespace(String prefix, String uri)(Code)



attribute
abstract 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
abstract public void endAttributes() throws JspParseException(Code)
Called after the attributes end.



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



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



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



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



getJspCompiler
public JspCompiler getJspCompiler()(Code)
Returns the parse state.



getJspParser
public JspParser getJspParser()(Code)
Returns the parse state.



getJspPropertyGroup
public JspPropertyGroup getJspPropertyGroup()(Code)
Gets the jsp-property-group



getParseState
public ParseState getParseState()(Code)
Returns the parse state.



getRequireSource
public boolean getRequireSource()(Code)
Returns true if require source is enabled.



getRootNode
abstract public JspNode getRootNode()(Code)
Returns the top node.



getTagManager
public ParseTagManager getTagManager()(Code)
Returns the tag manager



isFastJsf
public boolean isFastJsf()(Code)
Returns true if fast-jsf is enabled.



isFastJstl
public boolean isFastJstl()(Code)
Returns true if fast-jstl is enabled.



setJspCompiler
public void setJspCompiler(JspCompiler compiler)(Code)
Sets the compiler



setJspParser
public void setJspParser(JspParser parser)(Code)
Sets the parser



setJspPropertyGroup
public void setJspPropertyGroup(JspPropertyGroup jsp)(Code)
Sets the jsp-property-group



setLocation
public void setLocation(Path sourcePath, String filename, int line)(Code)
Sets the source line number.



setPageConfig
public void setPageConfig(JspPageConfig pageConfig)(Code)
Sets the page config?



setParseState
public void setParseState(ParseState parseState)(Code)
Sets the parse state.



setPrototype
public void setPrototype(boolean isPrototype)(Code)
Set for prototype builder.



setTagManager
public void setTagManager(ParseTagManager manager)(Code)
Sets the tag manager



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



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



startPrefixMapping
abstract 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
abstract public void text(String text) throws JspParseException(Code)
Adds text.
Parameters:
  text - the text to add



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



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.