com.togethersoft.openapi.ide
Interface IdeScript


public interface IdeScript

Interface IdeScript should be implemented by each Together module.
This interface contains only one method run that starts the module.
Examples of modules are provided in the
/modules/com/togethersoft/modules/tutorial directory under your installation.
Also, identical hello-world samples in Java and Tcl are located in
/modules/com/togethersoft/modules/helloworld and
/modules/com/togethersoft/modules/hellotcl folders.

Author:
TogetherSoft

Method Summary
 voidrun(IdeContext context)
          Starts this module.

Method Detail

run

public void run(IdeContext context)
Starts this module.
Parameters:
context IdeContext instance containing the selection of data at the moment this module was invoked
See Also:
IdeContext