All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bsh.util.commands.object.bsh Maven / Gradle / Ivy

The newest version!
/**
	Return an "empty" BeanShell object context which can be used to hold 
	data items.  e.g. 
	

    myStuff = object();
    myStuff.foo = 42;
    myStuff.bar = "blah";
	
@method This object() */ bsh.help.object = "usage: object()"; object() { return this; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy