Interface IPluginPerspectiveManager
-
public interface IPluginPerspectiveManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidaddPluginPerspective(IPluginPerspective pluginPerspective)Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.voidclearPluginPerspectives()Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.List<IPluginPerspective>getPluginPerspectives()voidremovePluginPerspective(IPluginPerspective pluginPerspective)Deprecated.No longer needed as IPluginPerspective objects are registered with PentahoSystem.
-
-
-
Method Detail
-
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
-
-