00001 package theba.core; 00002 00003 import theba.core.gui.ThebaGUI; 00004 00005 public interface Plugin { 00014 public void setup(ThebaGUI f); 00015 00022 public void process(Stack stack); 00023 00029 public String getName(); 00030 00036 public String getAbout(); 00037 00045 public String getCategory(); 00046 }