Java Doc for Expression.java in  » Scripting » Nice » gnu » expr » 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 » Scripting » Nice » gnu.expr 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   gnu.expr.Expression

All known Subclasses:   gnu.expr.BeginExp,  gnu.expr.ReferenceExp,  gnu.expr.SynchronizedExp,  gnu.expr.Package,  gnu.expr.SetExp,  gnu.expr.BlockExp,  gnu.expr.QuoteExp,  gnu.expr.ExitExp,  gnu.expr.IncrementExp,  gnu.expr.LoopExp,  gnu.expr.ErrorExp,  gnu.expr.IfExp,  gnu.expr.CopyArgument,  gnu.expr.CheckContract,  gnu.expr.TryExp,  gnu.expr.ScopeExp,  gnu.expr.ApplyExp,
Expression
abstract public class Expression implements Printable(Code)
Abstract class for syntactic forms that evaluate to a value. Scheme S-expressions get re-written to these before evaluation.
author:
   Per Bothner


Field Summary
final protected static  intNEXT_AVAIL_FLAG
    
 Stringfilename
    
protected  intflags
    
final public static  Expression[]noExpressions
    
 intposition
    


Method Summary
abstract public  voidcompile(Compilation comp, Target target)
    
final public  voidcompile(Compilation comp, Type type)
    
final public  voidcompileNotePosition(Compilation comp, Target target)
     Compile, but take note of line number.
final public  voidcompileWithPosition(Compilation comp, Target target)
     Same as compile, but emit line number beforehard.
public  Objecteval(Environment env)
    
public  voideval(Environment env, CallContext ctx)
    
public  BranchablegetBranchable()
    
final public  intgetColumn()
    
final public  StringgetFile()
    
public  booleangetFlag(int flag)
    
public  intgetFlags()
    
final public  intgetLine()
     Get the line number of (the start of) this Expression. The "first" line is line 1.
public  TypegetType()
     Return the Type used to represent the values of this Expression.
public  booleanhasLocation()
    
public static  ExpressionmakeWhile(Object cond, Object body, Parser parser)
     Helper method to create a `while' statement.
final public  voidprint(java.io.PrintWriter ps)
    
abstract public  voidprint(OutPort ps)
    
public  voidprintLineColumn(OutPort out)
     Print line and column number if specified.
final public  voidsetFile(String filename)
    
public  voidsetFlag(boolean setting, int flag)
    
public  voidsetFlag(int flag)
    
final public  ExpressionsetLine(Expression old)
    
final public  voidsetLine(int lineno, int colno)
    
final public  voidsetLine(int lineno)
    
protected  Expressionwalk(ExpWalker walker)
    
protected  voidwalkChildren(ExpWalker walker)
    

Field Detail
NEXT_AVAIL_FLAG
final protected static int NEXT_AVAIL_FLAG(Code)



filename
String filename(Code)



flags
protected int flags(Code)



noExpressions
final public static Expression[] noExpressions(Code)



position
int position(Code)





Method Detail
compile
abstract public void compile(Compilation comp, Target target)(Code)



compile
final public void compile(Compilation comp, Type type)(Code)



compileNotePosition
final public void compileNotePosition(Compilation comp, Target target)(Code)
Compile, but take note of line number.



compileWithPosition
final public void compileWithPosition(Compilation comp, Target target)(Code)
Same as compile, but emit line number beforehard.



eval
public Object eval(Environment env) throws Throwable(Code)



eval
public void eval(Environment env, CallContext ctx) throws Throwable(Code)



getBranchable
public Branchable getBranchable()(Code)



getColumn
final public int getColumn()(Code)



getFile
final public String getFile()(Code)



getFlag
public boolean getFlag(int flag)(Code)



getFlags
public int getFlags()(Code)



getLine
final public int getLine()(Code)
Get the line number of (the start of) this Expression. The "first" line is line 1.



getType
public Type getType()(Code)
Return the Type used to represent the values of this Expression.



hasLocation
public boolean hasLocation()(Code)



makeWhile
public static Expression makeWhile(Object cond, Object body, Parser parser)(Code)
Helper method to create a `while' statement.



print
final public void print(java.io.PrintWriter ps)(Code)



print
abstract public void print(OutPort ps)(Code)



printLineColumn
public void printLineColumn(OutPort out)(Code)
Print line and column number if specified. This is a helper routineintended for use by print(OutPort).



setFile
final public void setFile(String filename)(Code)



setFlag
public void setFlag(boolean setting, int flag)(Code)



setFlag
public void setFlag(int flag)(Code)



setLine
final public Expression setLine(Expression old)(Code)



setLine
final public void setLine(int lineno, int colno)(Code)



setLine
final public void setLine(int lineno)(Code)



walk
protected Expression walk(ExpWalker walker)(Code)



walkChildren
protected void walkChildren(ExpWalker walker)(Code)



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.