/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package feuille.scripting; /** * * @author The Wingate 2940 */ public interface IObject { /** This is the name of this plugin. */ public String getPluginName(); /** The plugin description. */ public String getDescription(); /** The plugin help topic. */ public String getHelp(); /** A more readable name for this plugin. */ public String getDisplayName(); /** The authors of this plugin; maybe fame is coming. */ public String getAuthors(); /** This is the name of this plugin. */ public String getPluginType(); public String getPath(); public String getFunction(); public String getVersion(); public String getType(); }