Package weka.gui
Interface GUIChooser.GUIChooserMenuPlugin
-
- Enclosing class:
- GUIChooser
public static interface GUIChooser.GUIChooserMenuPluginInterface for plugin components that can be accessed from either the Visualization or Tools menu.- Author:
- Mark Hall (mhall{[at]}pentaho{[dot]}com)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classGUIChooser.GUIChooserMenuPlugin.MenuEnum listing possible menus that plugins can appear in
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetApplicationName()Get the name to display in title bar of the enclosing JFrame for the pluginjavax.swing.JMenuBargetMenuBar()Return the menu bar for this pluginjava.lang.StringgetMenuEntryText()Get the text entry to appear in the menuGUIChooser.GUIChooserMenuPlugin.MenugetMenuToDisplayIn()Get the menu that the plugin is to be listed in
-
-
-
Method Detail
-
getApplicationName
java.lang.String getApplicationName()
Get the name to display in title bar of the enclosing JFrame for the plugin- Returns:
- the name to display in the title bar
-
getMenuToDisplayIn
GUIChooser.GUIChooserMenuPlugin.Menu getMenuToDisplayIn()
Get the menu that the plugin is to be listed in- Returns:
- the menu that the plugin is to be listed in
-
getMenuEntryText
java.lang.String getMenuEntryText()
Get the text entry to appear in the menu- Returns:
- the text entry to appear in the menu
-
getMenuBar
javax.swing.JMenuBar getMenuBar()
Return the menu bar for this plugin- Returns:
- the menu bar for this plugin or null if it does not use a menu bar
-
-