The Script interface defines the basic functionality
for Together/J 2.0 scripts.
Each Together script should be a Java class being declared
in the oisoft.togetherx.scripts package and
implementing the Script interface.
The implementing class must define the method 'doIt()'
All the classes of the oisoft.togetherx.scripts package
are listed in the "Open script..." dialog.
That's why we recommend you to create auxiliary classes,
that are not scripts, in subpackages.
Naming convention:
Use underscore ('_') symbol as word separator in the class name.
It is represented as space in the "Open script" dialog.
For example, if you declare a class:
public class Write_RTF_Class_Diagrams_Documentation implements Script...
then in the dialog it will look like:
Write RTF Class Diagrams Documentation
|