Interface IPluginPerspectiveManager
public interface IPluginPerspectiveManager
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddPluginPerspective(IPluginPerspective pluginPerspective) Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.voidDeprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.voidremovePluginPerspective(IPluginPerspective pluginPerspective) Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.
-
Method Details
-
getPluginPerspectives
List<IPluginPerspective> getPluginPerspectives() -
addPluginPerspective
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.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.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
-