Interface IPluginPerspectiveManager
public interface IPluginPerspectiveManager
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addPluginPerspective
(IPluginPerspective pluginPerspective) Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.void
Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.void
removePluginPerspective
(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
-