home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2007 June
/
PCWorld_2007-06_cd.bin
/
multimedia
/
ppsee
/
PPSeeSetup.exe
/
lib
/
bsh-commands-2.0b4.jar
/
bsh
/
commands
/
unset.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
387b
|
17 lines
/**
"Undefine" the variable specifed by 'name' (So that it tests == void).
<p>
<em>Note: there will be a better way to do this in the future. This is
currently equivalent to doing namespace.setVariable(name, null);</em>
*/
bsh.help.unset = "usage: unset( name )";
void unset( String name )
{
if ( arg == null ) // ???
return;
this.caller.namespace.unsetVariable( name );
}