接口 TreeVisualizePlugin


public interface TreeVisualizePlugin
Interface implemented by classes loaded dynamically to visualize classifier results in the explorer.
版本:
$Revision: 9053 $
作者:
FracPete (fracpete at waikato dot ac dot nz)
  • 方法概要

    修饰符和类型
    方法
    说明
    Get the specific version of Weka the class is designed for.
    Get the maximum version of Weka, exclusive, the class is designed to work with.
    Get the minimum version of Weka, inclusive, the class is designed to work with.
    Get a JMenu or JMenuItem which contain action listeners that perform the visualization of the tree in GraphViz's dotty format.
  • 方法详细资料

    • getVisualizeMenuItem

      JMenuItem getVisualizeMenuItem(String dotty, String name)
      Get a JMenu or JMenuItem which contain action listeners that perform the visualization of the tree in GraphViz's dotty format. Exceptions thrown because of changes in Weka since compilation need to be caught by the implementer.
      参数:
      dotty - the tree in dotty format
      name - the name of the item (in the Explorer's history list)
      返回:
      menuitem for opening visualization(s), or null to indicate no visualization is applicable for the input
      另请参阅:
    • getMinVersion

      String getMinVersion()
      Get the minimum version of Weka, inclusive, the class is designed to work with. eg: 3.5.0
      返回:
      the minimum version
    • getMaxVersion

      String getMaxVersion()
      Get the maximum version of Weka, exclusive, the class is designed to work with. eg: 3.6.0
      返回:
      the maximum version
    • getDesignVersion

      String getDesignVersion()
      Get the specific version of Weka the class is designed for. eg: 3.5.1
      返回:
      the version the plugin was designed for