All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.maizegenetics.plugindef.PluginAction Maven / Gradle / Ivy

/*
 * PluginAction.java
 */

package net.maizegenetics.plugindef;

import javax.swing.*;


/**
 *
 * @author terryc
 */
public interface PluginAction extends Action{
    
    
    /**
     * Return associated plugin.
     *
     * @return tassel plugin
     */
    public Plugin getPlugin();
    
    
    /**
     * GUI Panel for associated plugin.
     *
     * @return panel
     */
    public JPanel getPanel();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy