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 the modules can be found in the \modules\com\togethersoft\modules folder of your installation.

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