public interface IPluginPerspectiveManager
| Modifier and Type | Method and Description | 
|---|---|
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 );  | 
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  | 
List<IPluginPerspective> | 
getPluginPerspectives()  | 
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  | 
List<IPluginPerspective> getPluginPerspectives()
@Deprecated void addPluginPerspective(IPluginPerspective pluginPerspective)
PentahoSystem.registerObject( pluginPerspective );
pluginPerspective - @Deprecated void removePluginPerspective(IPluginPerspective pluginPerspective)
.IPentahoObjectRegistration#remove()
 IPentahoObjectRegistration handle = PentahoSystem.registerObject( pluginPerspective ); handle.remove(); // replaces call to removePluginPerspective
pluginPerspective - @Deprecated void clearPluginPerspectives()
.IPentahoObjectRegistration#remove()
 IPentahoObjectRegistration handle = PentahoSystem.registerObject( pluginPerspective ); handle.remove(); // replaces call to removePluginPerspective