Java Doc for TJC.java in  » Scripting » jacl » tcl » lang » 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 » jacl » tcl.lang 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   tcl.lang.TJC

All known Subclasses:   tcl.lang.TJCBench,
TJC
public class TJC (Code)

Inner Class :abstract public static class CompiledCommand implements Command
Inner Class :static class InitSourceCmd implements Command

Field Summary
final public static  intEXPR_OP_BIT_AND
    
final public static  intEXPR_OP_BIT_OR
    
final public static  intEXPR_OP_BIT_XOR
    
final public static  intEXPR_OP_DIVIDE
    
final public static  intEXPR_OP_EQUAL
    
final public static  intEXPR_OP_GEQ
    
final public static  intEXPR_OP_GREATER
    
final public static  intEXPR_OP_LEFT_SHIFT
    
final public static  intEXPR_OP_LEQ
    
final public static  intEXPR_OP_LESS
    
final public static  intEXPR_OP_MINUS
    
final public static  intEXPR_OP_MOD
    
final public static  intEXPR_OP_MULT
    
final public static  intEXPR_OP_NEQ
    
final public static  intEXPR_OP_PLUS
    
final public static  intEXPR_OP_RIGHT_SHIFT
    
final public static  intEXPR_OP_STREQ
    
final public static  intEXPR_OP_STRNEQ
    
final public static  intEXPR_OP_UNARY_BIT_NOT
    
final public static  intEXPR_OP_UNARY_MINUS
    
final public static  intEXPR_OP_UNARY_NOT
    
final public static  intEXPR_OP_UNARY_PLUS
    
final public static  WrappedCommandINVALID_COMMAND_CACHE
    
final public static  intSWITCH_MODE_EXACT
    
final public static  intSWITCH_MODE_GLOB
    
final public static  intSWITCH_MODE_REGEXP
    


Method Summary
final public static  TclObjectappendVar(Interp interp, String varName, String key, TclObject[] values)
    
public static  voidcatchVarErr(Interp interp)
    
public static  voidcheckTclException(Interp interp, TclException e, String procName)
    
public static  voidcreateCommand(Interp interp, String cmdName, TJC.CompiledCommand cmd)
    
public static  voidevalProcBody(Interp interp, String body)
    
public static  voidexprBinaryOperator(Interp interp, int op, ExprValue value, ExprValue value2)
    
public static  voidexprDoubleMathFunction(Interp interp, ExprValue value)
    
public static  voidexprEqualsEmptyString(ExprValue value, TclObject obj, boolean negate)
    
public static  doubleexprGetKnownDouble(TclObject tobj)
    
public static  intexprGetKnownInt(TclObject tobj)
    
public static  ExprValueexprGetValue(Interp interp, int ival, String srep)
    
public static  ExprValueexprGetValue(Interp interp, double dval, String srep)
    
public static  ExprValueexprGetValue(Interp interp, String srep)
    
public static  ExprValueexprGetValue(Interp interp, boolean bval)
    
public static  ExprValueexprGetValue(Interp interp, TclObject tobj)
    
public static  ExprValueexprGetValue(Interp interp)
    
public static  voidexprInitValue(Interp interp, ExprValue value, TclObject tobj)
    
public static  voidexprIntMathFunction(Interp interp, ExprValue value)
    
public static  voidexprMathFunction(Interp interp, String funcName, ExprValue[] values, ExprValue result)
    
public static  voidexprReleaseValue(Interp interp, ExprValue value)
    
public static  voidexprSetResult(Interp interp, ExprValue value)
    
public static  voidexprUnaryNotOperator(Interp interp, ExprValue value)
    
public static  voidexprUnaryNotOperator(Interp interp, ExprValue value, TclObject tobj)
    
public static  voidexprUnaryNotOperatorKnownInt(ExprValue value, TclObject tobj)
    
public static  intexprUnaryNotOperatorKnownInt(TclObject tobj)
    
public static  booleanexprUnaryNotOperatorKnownIntAsBoolean(TclObject tobj)
    
public static  voidexprUnaryOperator(Interp interp, int op, ExprValue value)
    
public static  voidforeachVarErr(Interp interp, String varname)
    
public static  booleangetBoolean(Interp interp, TclObject obj)
    
public static  TclObject[]grabObjv(Interp interp, int size)
    
final public static  TclObjectincrVar(Interp interp, String part1, String part2, int incrAmount)
    
public static  Var[]initCompiledLocals(CallFrame frame, int size, String[] names)
    
public static  voidinvoke(Interp interp, Command cmd, TclObject[] objv, int flags)
    
public static  intinvokeSwitch(Interp interp, TclObject[] pbObjv, int pbStart, String string, int mode)
    
final public static  TclObjectlappendVar(Interp interp, String varName, String key, TclObject[] values)
    
final public static  voidlindexNonconst(Interp interp, TclObject listObj, TclObject indexValue)
    
final public static  voidmakeGlobalLinkVar(Interp interp, String varName, String varTail, int localIndex)
    
public static  voidpopLocalCallFrame(Interp interp, CallFrame frame)
    
public static  CallFramepushLocalCallFrame(Interp interp, Namespace ns)
    
public static  voidreleaseObjv(Interp interp, TclObject[] objv, int size)
    
public static  voidreleaseObjvElems(Interp interp, TclObject[] objv, int size)
    
public static  WrappedCommandresolveCmd(Interp interp, String cmdName)
    
final static  voidsetVarScalar(Var var, TclObject newValue)
    
public static  voidsourceInitFile(Interp interp, String init_file, String[] files, String prefix)
    
final public static  TclObjectstringFirst(Interp interp, String substr, String str, TclObject startObj)
    
final public static  TclObjectstringIndex(Interp interp, String str, TclObject indObj)
    
final public static  TclObjectstringLast(Interp interp, String substr, String str, TclObject lastObj)
    
final public static  TclObjectstringRange(Interp interp, String str, TclObject firstObj, TclObject lastObj)
    
public static  voidswitchStringIsNotOption(Interp interp, String str)
    

Field Detail
EXPR_OP_BIT_AND
final public static int EXPR_OP_BIT_AND(Code)



EXPR_OP_BIT_OR
final public static int EXPR_OP_BIT_OR(Code)



EXPR_OP_BIT_XOR
final public static int EXPR_OP_BIT_XOR(Code)



EXPR_OP_DIVIDE
final public static int EXPR_OP_DIVIDE(Code)



EXPR_OP_EQUAL
final public static int EXPR_OP_EQUAL(Code)



EXPR_OP_GEQ
final public static int EXPR_OP_GEQ(Code)



EXPR_OP_GREATER
final public static int EXPR_OP_GREATER(Code)



EXPR_OP_LEFT_SHIFT
final public static int EXPR_OP_LEFT_SHIFT(Code)



EXPR_OP_LEQ
final public static int EXPR_OP_LEQ(Code)



EXPR_OP_LESS
final public static int EXPR_OP_LESS(Code)



EXPR_OP_MINUS
final public static int EXPR_OP_MINUS(Code)



EXPR_OP_MOD
final public static int EXPR_OP_MOD(Code)



EXPR_OP_MULT
final public static int EXPR_OP_MULT(Code)



EXPR_OP_NEQ
final public static int EXPR_OP_NEQ(Code)



EXPR_OP_PLUS
final public static int EXPR_OP_PLUS(Code)



EXPR_OP_RIGHT_SHIFT
final public static int EXPR_OP_RIGHT_SHIFT(Code)



EXPR_OP_STREQ
final public static int EXPR_OP_STREQ(Code)



EXPR_OP_STRNEQ
final public static int EXPR_OP_STRNEQ(Code)



EXPR_OP_UNARY_BIT_NOT
final public static int EXPR_OP_UNARY_BIT_NOT(Code)



EXPR_OP_UNARY_MINUS
final public static int EXPR_OP_UNARY_MINUS(Code)



EXPR_OP_UNARY_NOT
final public static int EXPR_OP_UNARY_NOT(Code)



EXPR_OP_UNARY_PLUS
final public static int EXPR_OP_UNARY_PLUS(Code)



INVALID_COMMAND_CACHE
final public static WrappedCommand INVALID_COMMAND_CACHE(Code)



SWITCH_MODE_EXACT
final public static int SWITCH_MODE_EXACT(Code)



SWITCH_MODE_GLOB
final public static int SWITCH_MODE_GLOB(Code)



SWITCH_MODE_REGEXP
final public static int SWITCH_MODE_REGEXP(Code)





Method Detail
appendVar
final public static TclObject appendVar(Interp interp, String varName, String key, TclObject[] values) throws TclException(Code)



catchVarErr
public static void catchVarErr(Interp interp) throws TclException(Code)



checkTclException
public static void checkTclException(Interp interp, TclException e, String procName) throws TclException(Code)



createCommand
public static void createCommand(Interp interp, String cmdName, TJC.CompiledCommand cmd) throws TclException(Code)



evalProcBody
public static void evalProcBody(Interp interp, String body) throws TclException(Code)



exprBinaryOperator
public static void exprBinaryOperator(Interp interp, int op, ExprValue value, ExprValue value2) throws TclException(Code)



exprDoubleMathFunction
public static void exprDoubleMathFunction(Interp interp, ExprValue value) throws TclException(Code)



exprEqualsEmptyString
public static void exprEqualsEmptyString(ExprValue value, TclObject obj, boolean negate) throws TclException(Code)



exprGetKnownDouble
public static double exprGetKnownDouble(TclObject tobj)(Code)



exprGetKnownInt
public static int exprGetKnownInt(TclObject tobj)(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp, int ival, String srep) throws TclException(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp, double dval, String srep) throws TclException(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp, String srep) throws TclException(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp, boolean bval) throws TclException(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp, TclObject tobj) throws TclException(Code)



exprGetValue
public static ExprValue exprGetValue(Interp interp)(Code)



exprInitValue
public static void exprInitValue(Interp interp, ExprValue value, TclObject tobj) throws TclException(Code)



exprIntMathFunction
public static void exprIntMathFunction(Interp interp, ExprValue value) throws TclException(Code)



exprMathFunction
public static void exprMathFunction(Interp interp, String funcName, ExprValue[] values, ExprValue result) throws TclException(Code)



exprReleaseValue
public static void exprReleaseValue(Interp interp, ExprValue value)(Code)



exprSetResult
public static void exprSetResult(Interp interp, ExprValue value) throws TclException(Code)



exprUnaryNotOperator
public static void exprUnaryNotOperator(Interp interp, ExprValue value) throws TclException(Code)



exprUnaryNotOperator
public static void exprUnaryNotOperator(Interp interp, ExprValue value, TclObject tobj) throws TclException(Code)



exprUnaryNotOperatorKnownInt
public static void exprUnaryNotOperatorKnownInt(ExprValue value, TclObject tobj)(Code)



exprUnaryNotOperatorKnownInt
public static int exprUnaryNotOperatorKnownInt(TclObject tobj)(Code)



exprUnaryNotOperatorKnownIntAsBoolean
public static boolean exprUnaryNotOperatorKnownIntAsBoolean(TclObject tobj)(Code)



exprUnaryOperator
public static void exprUnaryOperator(Interp interp, int op, ExprValue value) throws TclException(Code)



foreachVarErr
public static void foreachVarErr(Interp interp, String varname) throws TclException(Code)



getBoolean
public static boolean getBoolean(Interp interp, TclObject obj) throws TclException(Code)



grabObjv
public static TclObject[] grabObjv(Interp interp, int size)(Code)



incrVar
final public static TclObject incrVar(Interp interp, String part1, String part2, int incrAmount) throws TclException(Code)



initCompiledLocals
public static Var[] initCompiledLocals(CallFrame frame, int size, String[] names)(Code)



invoke
public static void invoke(Interp interp, Command cmd, TclObject[] objv, int flags) throws TclException(Code)



invokeSwitch
public static int invokeSwitch(Interp interp, TclObject[] pbObjv, int pbStart, String string, int mode) throws TclException(Code)



lappendVar
final public static TclObject lappendVar(Interp interp, String varName, String key, TclObject[] values) throws TclException(Code)



lindexNonconst
final public static void lindexNonconst(Interp interp, TclObject listObj, TclObject indexValue) throws TclException(Code)



makeGlobalLinkVar
final public static void makeGlobalLinkVar(Interp interp, String varName, String varTail, int localIndex) throws TclException(Code)



popLocalCallFrame
public static void popLocalCallFrame(Interp interp, CallFrame frame)(Code)



pushLocalCallFrame
public static CallFrame pushLocalCallFrame(Interp interp, Namespace ns)(Code)



releaseObjv
public static void releaseObjv(Interp interp, TclObject[] objv, int size)(Code)



releaseObjvElems
public static void releaseObjvElems(Interp interp, TclObject[] objv, int size)(Code)



resolveCmd
public static WrappedCommand resolveCmd(Interp interp, String cmdName) throws TclException(Code)



setVarScalar
final static void setVarScalar(Var var, TclObject newValue)(Code)



sourceInitFile
public static void sourceInitFile(Interp interp, String init_file, String[] files, String prefix) throws TclException(Code)



stringFirst
final public static TclObject stringFirst(Interp interp, String substr, String str, TclObject startObj) throws TclException(Code)



stringIndex
final public static TclObject stringIndex(Interp interp, String str, TclObject indObj) throws TclException(Code)



stringLast
final public static TclObject stringLast(Interp interp, String substr, String str, TclObject lastObj) throws TclException(Code)



stringRange
final public static TclObject stringRange(Interp interp, String str, TclObject firstObj, TclObject lastObj) throws TclException(Code)



switchStringIsNotOption
public static void switchStringIsNotOption(Interp interp, String str) throws TclException(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.