Interface IPluginPerspectiveManager


public interface IPluginPerspectiveManager
  • Method Details

    • getPluginPerspectives

      List<IPluginPerspective> getPluginPerspectives()
    • addPluginPerspective

      @Deprecated void addPluginPerspective(IPluginPerspective pluginPerspective)
      Deprecated.
      No longer needed as IPluginPerspective objects are registered with PentahoSystem. Existing calls will do nothing. Replace calls to this method with:
         PentahoSystem.registerObject( pluginPerspective );
       
      Parameters:
      pluginPerspective -
    • removePluginPerspective

      @Deprecated void removePluginPerspective(IPluginPerspective pluginPerspective)
      Deprecated.
      No longer needed as IPluginPerspective objects are registered with PentahoSystem. Existing calls will do nothing. Replace calls to this method with .IPentahoObjectRegistration#remove()
         IPentahoObjectRegistration handle = PentahoSystem.registerObject( pluginPerspective );
         handle.remove(); // replaces call to removePluginPerspective
       
      Parameters:
      pluginPerspective -
    • clearPluginPerspectives

      @Deprecated void clearPluginPerspectives()
      Deprecated.
      No longer needed as IPluginPerspective objects are registered with PentahoSystem. Existing calls will do nothing. Replace calls to this method with .IPentahoObjectRegistration#remove()
         IPentahoObjectRegistration handle = PentahoSystem.registerObject( pluginPerspective );
         handle.remove(); // replaces call to removePluginPerspective