Java Doc for Interp.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.EventuallyFreed
      tcl.lang.Interp

Interp
public class Interp extends EventuallyFreed (Code)
The Tcl interpreter class.

Inner Class :class ResolverScheme

Field Summary
final static  intINVOKE_HIDDEN
    
final static  intINVOKE_NO_TRACEBACK
    
final static  intINVOKE_NO_UNKNOWN
    
final static  StringTCL_PATCH_LEVEL
    
final static  StringTCL_VERSION
    
 HashMapaliasTable
    
 HashMapassocData
    
 TclClassLoaderclassLoader
    
protected  intcmdCount
    
protected  DebugInfodbg
    
protected  booleandeleted
    
protected  booleanerrAlreadyLogged
    
protected  booleanerrCodeSet
    
protected  booleanerrInProgress
    
 StringerrorCode
    
 StringerrorInfo
    
 interrorLine
    
 intevalFlags
    
 Expressionexpr
    
 intflags
    
 CallFrameframe
    
 Namespace.GetNamespaceForQualNameResultgetnfqnResult
    
 NamespaceglobalNs
    
 HashMaphiddenCmdTable
    
 HashMap[]importTable
    
 HashMapinterpChanTable
    
 booleanisSafe
    
 Var[]lookupVarResult
    
final  intmaxNestingDepth
    
 intnestLevel
    
 intnoEval
    
 HashMappackageTable
    
 StringpackageUnknown
    
 TclObject[][][]parserObjv
    
 int[]parserObjvUsed
    
 TclToken[]parserTokens
    
 intparserTokensUsed
    
 longrandSeed
    
 booleanrandSeedInit
    
 HashMapreflectConflictTable
    
 longreflectObjCount
    
 HashMapreflectObjTable
    
 ArrayListresolvers
    
protected  intreturnCode
    
 StringscriptFile
    
 InterpSlaveCmdslave
    
 HashMapslaveTable
    
 StrtodResultstrtodResult
    
 StrtoulResultstrtoulResult
    
 HashMaptargetTable
    
static  HashMaptclLibraryScripts
    
 inttermOffset
    
final static  String[]unsafeCmds
    
 CallFramevarFrame
    

Constructor Summary
public  Interp()
    

Method Summary
public  voidaddErrorInfo(String message)
    
public  voidaddInterpResolver(String name, Resolver resolver)
     ---------------------------------------------------------------------- Tcl_AddInterpResolvers -> addInterpResolver Adds a set of command/variable resolution procedures to an interpreter.
 voidallowExceptions()
    
 voidappendElement(String string)
    
public  voidbackgroundError()
    
static  BackSlashResultbackslash(String s, int i, int len)
    
final  TclObjectcheckCommonBoolean(boolean value)
     ---------------------------------------------------------------------- checkCommonBoolean() Always return a shared boolean TclObject.
final  TclObjectcheckCommonCharacter(int c)
     ---------------------------------------------------------------------- checkCommonCharacter() It is very common to create a TclObject that contains a single character.
final  TclObjectcheckCommonDouble(double value)
     ---------------------------------------------------------------------- checkCommonDouble() If a given double value is in the common value pool the return a shared object for that double.
final  TclObjectcheckCommonInteger(int value)
     ---------------------------------------------------------------------- checkCommonInteger() If a given integer value is in the common value pool then return a shared object for that integer.
final  TclObjectcheckCommonString(String value)
     ---------------------------------------------------------------------- checkCommonString() If a given String value is in the common value pool the return a shared object for that String.
final  voidcheckInterrupted()
    
public static  booleancommandComplete(String string)
    
 StringconvertStringCRLF(String inStr)
    
public  voidcreateCommand(String cmdName, Command cmdImpl)
    
protected  voidcreateCommands()
    
public  voiddeleteAssocData(String name)
    
public  intdeleteCommand(String cmdName)
    
public  intdeleteCommandFromToken(WrappedCommand cmd)
    
public  voiddispose()
    
final  voiddisposeInterrupted()
    
public  voideval(String script)
    
public  voideval(String string, int flags)
    
public  voideval(TclObject tobj, int flags)
    
public  voidevalFile(String s)
    
public  voidevalResource(String resName)
    
 voidevalURL(URL context, String s)
    
public  voideventuallyDispose()
    
 voidexposeCommand(String hiddenCmdToken, String cmdName)
    
protected  voidfinalize()
    
 intgetArgLineNumber(int index)
     Returns the line number where the given command argument begins.
public  AssocDatagetAssocData(String name)
    
public  ClassLoadergetClassLoader()
    
public  CommandgetCommand(String cmdName)
    
public  StringgetCommandFullName(WrappedCommand cmd)
    
public  StringgetCommandName(WrappedCommand cmd)
    
public  intgetErrorLine()
    
public  ResolvergetInterpResolver(String name)
     ---------------------------------------------------------------------- Tcl_GetInterpResolvers -> getInterpResolver Looks for a set of command/variable resolution procedures with the given name in an interpreter.
public  NotifiergetNotifier()
    
 InputStreamgetResourceAsStream(String resName)
    
final public  TclObjectgetResult()
    
 StringgetScriptFile()
     Returns the name of the script file currently under execution.
final  TclObjectgetVar(TclObject nameObj, int flags)
    
final public  TclObjectgetVar(String name, int flags)
    
final public  TclObjectgetVar(String name1, String name2, int flags)
    
 FilegetWorkingDir()
    
 voidhideCommand(String cmdName, String hiddenCmdToken)
    
 voidhideUnsafeCommands()
     ---------------------------------------------------------------------- TclHideUnsafeCommands -> hideUnsafeCommands Hides base commands that are not marked as safe from this interpreter.
protected  DebugInfoinitDebugInfo()
     Initialize the debugging information.
 intinvoke(TclObject[] objv, int flags)
    
 intinvokeGlobal(TclObject[] objv, int flags)
    
protected  CallFramenewCallFrame(Procedure proc, TclObject[] objv)
    
protected  CallFramenewCallFrame()
    
final public  voidpkgProvide(String name, String version)
    
final public  StringpkgRequire(String pkgname, String version, boolean exact)
    
 voidpopDebugStack()
     Remove the top-most level of the debug stack.
 voidpreventAliasLoop(Interp cmdInterp, WrappedCommand cmd)
    
public  voidprocessUnexpectedResult(int returnCode)
    
 voidpushDebugStack(String fileName, int lineNumber)
     Add more more level at the top of the debug stack.
 voidready()
    
public  voidrecordAndEval(TclObject script, int flags)
    
public  booleanremoveInterpResolver(String name)
     ---------------------------------------------------------------------- Tcl_RemoveInterpResolvers -> removeInterpResolver Removes a set of command/variable resolution procedures previously added by addInterpResolver.
protected  voidrenameCommand(String oldName, String newName)
    
final public  voidresetResult()
    
public  voidsetAssocData(String name, AssocData data)
    
public  voidsetErrorCode(TclObject code)
    
public  voidsetInterrupted()
    
final public  voidsetResult(TclObject newResult)
    
final public  voidsetResult(String r)
    
final public  voidsetResult(int r)
    
final public  voidsetResult(double r)
    
final public  voidsetResult(boolean r)
    
final  TclObjectsetVar(TclObject nameObj, TclObject value, int flags)
    
final public  TclObjectsetVar(String name, TclObject value, int flags)
    
final public  TclObjectsetVar(String name1, String name2, TclObject value, int flags)
    
final  TclObjectsetVar(String name, String strValue, int flags)
    
final public  TclObjectsetVar(String name1, String name2, String strValue, int flags)
    
final public  TclObjectsetVar(String name1, String name2, int intValue, int flags)
    
final public  TclObjectsetVar(String name1, String name2, double dValue, int flags)
    
final public  TclObjectsetVar(String name1, String name2, boolean bValue, int flags)
    
 voidsetWorkingDir(String dirName)
    
public  StringtoString()
    
 voidtraceVar(TclObject nameObj, VarTrace trace, int flags)
    
public  voidtraceVar(String name, VarTrace trace, int flags)
    
public  voidtraceVar(String part1, String part2, VarTrace trace, int flags)
    
 voidtransferResult(Interp sourceInterp, int result)
    
final  voidunsetVar(TclObject nameObj, int flags)
    
final public  voidunsetVar(String name, int flags)
    
final public  voidunsetVar(String name1, String name2, int flags)
    
 voiduntraceVar(TclObject nameObj, VarTrace trace, int flags)
    
public  voiduntraceVar(String name, VarTrace trace, int flags)
    
public  voiduntraceVar(String part1, String part2, VarTrace trace, int flags)
    
public  intupdateReturnInfo()
    

Field Detail
INVOKE_HIDDEN
final static int INVOKE_HIDDEN(Code)



INVOKE_NO_TRACEBACK
final static int INVOKE_NO_TRACEBACK(Code)



INVOKE_NO_UNKNOWN
final static int INVOKE_NO_UNKNOWN(Code)



TCL_PATCH_LEVEL
final static String TCL_PATCH_LEVEL(Code)



TCL_VERSION
final static String TCL_VERSION(Code)



aliasTable
HashMap aliasTable(Code)



assocData
HashMap assocData(Code)



classLoader
TclClassLoader classLoader(Code)



cmdCount
protected int cmdCount(Code)



dbg
protected DebugInfo dbg(Code)



deleted
protected boolean deleted(Code)



errAlreadyLogged
protected boolean errAlreadyLogged(Code)



errCodeSet
protected boolean errCodeSet(Code)



errInProgress
protected boolean errInProgress(Code)



errorCode
String errorCode(Code)



errorInfo
String errorInfo(Code)



errorLine
int errorLine(Code)



evalFlags
int evalFlags(Code)



expr
Expression expr(Code)



flags
int flags(Code)



frame
CallFrame frame(Code)



getnfqnResult
Namespace.GetNamespaceForQualNameResult getnfqnResult(Code)



globalNs
Namespace globalNs(Code)



hiddenCmdTable
HashMap hiddenCmdTable(Code)



importTable
HashMap[] importTable(Code)



interpChanTable
HashMap interpChanTable(Code)



isSafe
boolean isSafe(Code)



lookupVarResult
Var[] lookupVarResult(Code)



maxNestingDepth
final int maxNestingDepth(Code)



nestLevel
int nestLevel(Code)



noEval
int noEval(Code)



packageTable
HashMap packageTable(Code)



packageUnknown
String packageUnknown(Code)



parserObjv
TclObject[][][] parserObjv(Code)



parserObjvUsed
int[] parserObjvUsed(Code)



parserTokens
TclToken[] parserTokens(Code)



parserTokensUsed
int parserTokensUsed(Code)



randSeed
long randSeed(Code)



randSeedInit
boolean randSeedInit(Code)



reflectConflictTable
HashMap reflectConflictTable(Code)



reflectObjCount
long reflectObjCount(Code)



reflectObjTable
HashMap reflectObjTable(Code)



resolvers
ArrayList resolvers(Code)



returnCode
protected int returnCode(Code)



scriptFile
String scriptFile(Code)



slave
InterpSlaveCmd slave(Code)



slaveTable
HashMap slaveTable(Code)



strtodResult
StrtodResult strtodResult(Code)



strtoulResult
StrtoulResult strtoulResult(Code)



targetTable
HashMap targetTable(Code)



tclLibraryScripts
static HashMap tclLibraryScripts(Code)



termOffset
int termOffset(Code)



unsafeCmds
final static String[] unsafeCmds(Code)



varFrame
CallFrame varFrame(Code)




Constructor Detail
Interp
public Interp()(Code)




Method Detail
addErrorInfo
public void addErrorInfo(String message)(Code)



addInterpResolver
public void addInterpResolver(String name, Resolver resolver)(Code)
---------------------------------------------------------------------- Tcl_AddInterpResolvers -> addInterpResolver Adds a set of command/variable resolution procedures to an interpreter. These procedures are consulted when commands are resolved in Namespace.findCommand, and when variables are resolved in Namespace.findNamespaceVar and thus Var.lookupVar. Each namespace may also have its own resolution object which take precedence over those for the interpreter. When a name is resolved, it is handled as follows. First, the name is passed to the resolution objects for the namespace. If not resolved, the name is passed to each of the resolution procedures added to the interpreter. Finally, if still not resolved, the name is handled using the default Tcl rules for name resolution. Results: None. Side effects: The list of resolvers of the given interpreter is modified. ----------------------------------------------------------------------



allowExceptions
void allowExceptions()(Code)



appendElement
void appendElement(String string) throws TclException(Code)



backgroundError
public void backgroundError()(Code)



backslash
static BackSlashResult backslash(String s, int i, int len)(Code)



checkCommonBoolean
final TclObject checkCommonBoolean(boolean value)(Code)
---------------------------------------------------------------------- checkCommonBoolean() Always return a shared boolean TclObject. ----------------------------------------------------------------------



checkCommonCharacter
final TclObject checkCommonCharacter(int c)(Code)
---------------------------------------------------------------------- checkCommonCharacter() It is very common to create a TclObject that contains a single character. It can be costly to allocate a TclObject, a TclString internal rep, and a String to represent a character. This method avoids that overhead for the most common characters. This method will return null if a character does not have a cached value. ----------------------------------------------------------------------



checkCommonDouble
final TclObject checkCommonDouble(double value)(Code)
---------------------------------------------------------------------- checkCommonDouble() If a given double value is in the common value pool the return a shared object for that double. If the double value is not in the common pool then a new TclDouble wrapped in a TclObject will be created. ----------------------------------------------------------------------



checkCommonInteger
final TclObject checkCommonInteger(int value)(Code)
---------------------------------------------------------------------- checkCommonInteger() If a given integer value is in the common value pool then return a shared object for that integer. If the integer value is not in the common pool then use to use the recycled int value or a new TclObject. ----------------------------------------------------------------------



checkCommonString
final TclObject checkCommonString(String value)(Code)
---------------------------------------------------------------------- checkCommonString() If a given String value is in the common value pool the return a shared object for that String. If the String value is not in the common pool then a new TclString wrapped in a TclObject will be created. ----------------------------------------------------------------------



checkInterrupted
final void checkInterrupted()(Code)



commandComplete
public static boolean commandComplete(String string)(Code)



convertStringCRLF
String convertStringCRLF(String inStr)(Code)



createCommand
public void createCommand(String cmdName, Command cmdImpl)(Code)



createCommands
protected void createCommands()(Code)



deleteAssocData
public void deleteAssocData(String name)(Code)



deleteCommand
public int deleteCommand(String cmdName)(Code)



deleteCommandFromToken
public int deleteCommandFromToken(WrappedCommand cmd)(Code)



dispose
public void dispose()(Code)



disposeInterrupted
final void disposeInterrupted()(Code)



eval
public void eval(String script) throws TclException(Code)



eval
public void eval(String string, int flags) throws TclException(Code)



eval
public void eval(TclObject tobj, int flags) throws TclException(Code)



evalFile
public void evalFile(String s) throws TclException(Code)



evalResource
public void evalResource(String resName) throws TclException(Code)



evalURL
void evalURL(URL context, String s) throws TclException(Code)



eventuallyDispose
public void eventuallyDispose()(Code)



exposeCommand
void exposeCommand(String hiddenCmdToken, String cmdName) throws TclException(Code)



finalize
protected void finalize() throws Throwable(Code)



getArgLineNumber
int getArgLineNumber(int index)(Code)
Returns the line number where the given command argument begins. E.g, if the following command is at line 10: foo {a b } c getArgLine(0) = 10 getArgLine(1) = 10 getArgLine(2) = 11
Parameters:
  index - specifies an argument. the line number of the given argument.



getAssocData
public AssocData getAssocData(String name)(Code)



getClassLoader
public ClassLoader getClassLoader()(Code)



getCommand
public Command getCommand(String cmdName)(Code)



getCommandFullName
public String getCommandFullName(WrappedCommand cmd)(Code)



getCommandName
public String getCommandName(WrappedCommand cmd)(Code)



getErrorLine
public int getErrorLine()(Code)



getInterpResolver
public Resolver getInterpResolver(String name)(Code)
---------------------------------------------------------------------- Tcl_GetInterpResolvers -> getInterpResolver Looks for a set of command/variable resolution procedures with the given name in an interpreter. These procedures are registered by calling addInterpResolver. Results: If the name is recognized, this procedure returns the object implementing the name resolution procedures. If the name is not recognized, this procedure returns null. Side effects: None. ----------------------------------------------------------------------



getNotifier
public Notifier getNotifier()(Code)



getResourceAsStream
InputStream getResourceAsStream(String resName)(Code)



getResult
final public TclObject getResult()(Code)



getScriptFile
String getScriptFile()(Code)
Returns the name of the script file currently under execution. the name of the script file currently under execution.



getVar
final TclObject getVar(TclObject nameObj, int flags) throws TclException(Code)



getVar
final public TclObject getVar(String name, int flags) throws TclException(Code)



getVar
final public TclObject getVar(String name1, String name2, int flags) throws TclException(Code)



getWorkingDir
File getWorkingDir()(Code)



hideCommand
void hideCommand(String cmdName, String hiddenCmdToken) throws TclException(Code)



hideUnsafeCommands
void hideUnsafeCommands() throws TclException(Code)
---------------------------------------------------------------------- TclHideUnsafeCommands -> hideUnsafeCommands Hides base commands that are not marked as safe from this interpreter. Results: None Side effects: Hides functionality in an interpreter. ----------------------------------------------------------------------



initDebugInfo
protected DebugInfo initDebugInfo()(Code)
Initialize the debugging information. a DebugInfo object used by Interp in non-debugging mode.



invoke
int invoke(TclObject[] objv, int flags) throws TclException(Code)



invokeGlobal
int invokeGlobal(TclObject[] objv, int flags) throws TclException(Code)



newCallFrame
protected CallFrame newCallFrame(Procedure proc, TclObject[] objv) throws TclException(Code)



newCallFrame
protected CallFrame newCallFrame()(Code)



pkgProvide
final public void pkgProvide(String name, String version) throws TclException(Code)



pkgRequire
final public String pkgRequire(String pkgname, String version, boolean exact) throws TclException(Code)



popDebugStack
void popDebugStack() throws TclRuntimeError(Code)
Remove the top-most level of the debug stack.



preventAliasLoop
void preventAliasLoop(Interp cmdInterp, WrappedCommand cmd) throws TclException(Code)



processUnexpectedResult
public void processUnexpectedResult(int returnCode) throws TclException(Code)



pushDebugStack
void pushDebugStack(String fileName, int lineNumber)(Code)
Add more more level at the top of the debug stack.
Parameters:
  fileName - the filename for the new stack level
Parameters:
  lineNumber - the line number at which the execution of thenew stack level begins.



ready
void ready() throws TclException(Code)



recordAndEval
public void recordAndEval(TclObject script, int flags) throws TclException(Code)



removeInterpResolver
public boolean removeInterpResolver(String name)(Code)
---------------------------------------------------------------------- Tcl_RemoveInterpResolvers -> removeInterpResolver Removes a set of command/variable resolution procedures previously added by addInterpResolver. The next time a command/variable name is resolved, these procedures won't be consulted. Results: Returns true if the name was recognized and the resolution scheme was deleted. Returns false otherwise. Side effects: The list of resolvers of the given interpreter may be modified. ----------------------------------------------------------------------



renameCommand
protected void renameCommand(String oldName, String newName) throws TclException(Code)



resetResult
final public void resetResult()(Code)



setAssocData
public void setAssocData(String name, AssocData data)(Code)



setErrorCode
public void setErrorCode(TclObject code)(Code)



setInterrupted
public void setInterrupted()(Code)



setResult
final public void setResult(TclObject newResult)(Code)



setResult
final public void setResult(String r)(Code)



setResult
final public void setResult(int r)(Code)



setResult
final public void setResult(double r)(Code)



setResult
final public void setResult(boolean r)(Code)



setVar
final TclObject setVar(TclObject nameObj, TclObject value, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name, TclObject value, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name1, String name2, TclObject value, int flags) throws TclException(Code)



setVar
final TclObject setVar(String name, String strValue, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name1, String name2, String strValue, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name1, String name2, int intValue, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name1, String name2, double dValue, int flags) throws TclException(Code)



setVar
final public TclObject setVar(String name1, String name2, boolean bValue, int flags) throws TclException(Code)



setWorkingDir
void setWorkingDir(String dirName) throws TclException(Code)



toString
public String toString()(Code)



traceVar
void traceVar(TclObject nameObj, VarTrace trace, int flags) throws TclException(Code)



traceVar
public void traceVar(String name, VarTrace trace, int flags) throws TclException(Code)



traceVar
public void traceVar(String part1, String part2, VarTrace trace, int flags) throws TclException(Code)



transferResult
void transferResult(Interp sourceInterp, int result) throws TclException(Code)



unsetVar
final void unsetVar(TclObject nameObj, int flags) throws TclException(Code)



unsetVar
final public void unsetVar(String name, int flags) throws TclException(Code)



unsetVar
final public void unsetVar(String name1, String name2, int flags) throws TclException(Code)



untraceVar
void untraceVar(TclObject nameObj, VarTrace trace, int flags)(Code)



untraceVar
public void untraceVar(String name, VarTrace trace, int flags)(Code)



untraceVar
public void untraceVar(String part1, String part2, VarTrace trace, int flags)(Code)



updateReturnInfo
public int updateReturnInfo()(Code)



Fields inherited from tcl.lang.EventuallyFreed
final boolean debug(Code)(Java Doc)
boolean mustFree(Code)(Java Doc)
int refCount(Code)(Java Doc)

Methods inherited from tcl.lang.EventuallyFreed
public void dispose()(Code)(Java Doc)
abstract void eventuallyDispose()(Code)(Java Doc)
void preserve()(Code)(Java Doc)
void release()(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.