FileDocCategorySizeDatePackage
SimpleEditPlugin.javaAPI DocExample583Wed Jul 17 00:29:50 BST 2002com.wiverson.macosbook

SimpleEditPlugin.java

/*
 * SimpleEditPlugin.java
 *
 * Created on June 5, 2002, 2:08 PM
 */

package com.wiverson.macosbook;

public interface SimpleEditPlugin
{
    // Returns a list of actions which will be registered
    // The tool will then be notified if an action is
    // selected.
    public String getAction();
    
    // Notification of an action which was registered by
    // this tool.
    public void doAction(SimpleEdit frame, java.awt.event.ActionEvent evt);
    
    // Called once when the plugin is first loaded
    public void init(SimpleEdit frame);
    
}