| java.lang.Object tcl.lang.InterpCmd
InterpCmd | class InterpCmd implements Command(Code) | | This class implements the built-in "interp" command in Tcl.
|
Method Summary | |
public void | cmdProc(Interp interp, TclObject[] objv) ----------------------------------------------------------------------
Tcl_InterpObjCmd -> cmdProc
This procedure is invoked as part of the Command interface to
process the "interp" Tcl command. | static Interp | getInterp(Interp interp, TclObject path) ----------------------------------------------------------------------
getInterp --
Helper function to find a slave interpreter given a pathname.
Results:
Returns the slave interpreter known by that name in the calling
interpreter, or NULL if no interpreter known by that name exists. |
cmdProc | public void cmdProc(Interp interp, TclObject[] objv) throws TclException(Code) | | ----------------------------------------------------------------------
Tcl_InterpObjCmd -> cmdProc
This procedure is invoked as part of the Command interface to
process the "interp" Tcl command. See the user documentation
for details on what it does.
Results:
None.
Side effects:
See the user documentation.
----------------------------------------------------------------------
|
getInterp | static Interp getInterp(Interp interp, TclObject path) throws TclException(Code) | | ----------------------------------------------------------------------
getInterp --
Helper function to find a slave interpreter given a pathname.
Results:
Returns the slave interpreter known by that name in the calling
interpreter, or NULL if no interpreter known by that name exists.
Side effects:
Assigns to the pointer variable passed in, if not NULL.
----------------------------------------------------------------------
|
|
|