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
/
object.bsh
< prev
next >
Wrap
Text File
|
2005-05-23
|
283b
|
20 lines
/**
Return an "empty" BeanShell object context which can be used to hold
data items. e.g.
<p>
<pre>
myStuff = object();
myStuff.foo = 42;
myStuff.bar = "blah";
</pre>
@method This object()
*/
bsh.help.object = "usage: object()";
object() {
return this;
}