Facemorph.psychomorph
Interface Plugin

All Known Implementing Classes:
AddMenuTest

public interface Plugin


Method Summary
 boolean cleanup(PsychoMorphForm psychomorph)
          Called when the plugin is unloaded or removed by psychomorph allows the pluggin to cleanup any resources it has opened/
 boolean setup(PsychoMorphForm psychomorph)
          Initialise the Batchable This is called once only when the Plugin is first loaded by Psychomorph.
 

Method Detail

setup

boolean setup(PsychoMorphForm psychomorph)
Initialise the Batchable This is called once only when the Plugin is first loaded by Psychomorph. Menus should be added to the PsychoMorphForm using addMenu.

Parameters:
psychomorph - the main psychomorph object
Returns:
returns true if initialised OK

cleanup

boolean cleanup(PsychoMorphForm psychomorph)
Called when the plugin is unloaded or removed by psychomorph allows the pluggin to cleanup any resources it has opened/

Parameters:
psychomorph - the main psychomorph object
Returns:
returns true if cleaned up OK