RSE
Release 3.0

Uses of Interface
org.eclipse.rse.core.filters.ISystemFilterPool

Packages that use ISystemFilterPool
org.eclipse.rse.core   
org.eclipse.rse.core.filters   
org.eclipse.rse.core.model   
org.eclipse.rse.core.subsystems   
org.eclipse.rse.subsystems.files.core.subsystems   
org.eclipse.rse.subsystems.files.dstore Application programming interface for creating customized DataStore file subsystems.  
org.eclipse.rse.subsystems.files.local Application programming interface for creating customized local file subsystems.  
org.eclipse.rse.subsystems.processes.core.subsystem.impl   
org.eclipse.rse.subsystems.shells.core.subsystems   
org.eclipse.rse.ui.filters   
org.eclipse.rse.ui.filters.actions   
org.eclipse.rse.ui.filters.dialogs   
org.eclipse.rse.ui.subsystems Application programming interface for managing the user interface for subsystem actions.  
org.eclipse.rse.ui.view   
 

Uses of ISystemFilterPool in org.eclipse.rse.core
 

Methods in org.eclipse.rse.core with parameters of type ISystemFilterPool
static String SystemResourceManager.getFolderName(ISystemFilterPool pool)
          Map a filter pool name to a folder name Current algorith is that pool name equals folder name, but we use this method to allow flexibility in the future.
 

Uses of ISystemFilterPool in org.eclipse.rse.core.filters
 

Methods in org.eclipse.rse.core.filters that return ISystemFilterPool
 ISystemFilterPool ISystemFilter.getParentFilterPool()
           
 ISystemFilterPool ISystemFilterContainer.getSystemFilterPool()
           
 ISystemFilterPool[] ISystemFilterPoolManager.getSystemFilterPools()
          Return array of SystemFilterPools managed by this manager.
 ISystemFilterPool ISystemFilterPoolManager.getSystemFilterPool(String name)
          Given a filter pool name, return that filter pool object.
 ISystemFilterPool ISystemFilterPoolManager.getFirstDefaultSystemFilterPool()
          Return the first pool that has the default attribute set to true.
 ISystemFilterPool ISystemFilterPoolManager.createSystemFilterPool(String name, boolean isDeletable)
          Create a new filter pool.
 ISystemFilterPool ISystemFilterPoolManager.copySystemFilterPool(ISystemFilterPoolManager targetMgr, ISystemFilterPool pool, String newName)
          Copy the specified filter pool from this manager to this manager or another manager.
 ISystemFilterPool ISystemFilterPoolManager.moveSystemFilterPool(ISystemFilterPoolManager targetMgr, ISystemFilterPool oldPool, String newName)
          Move the specified filter pool from this manager to another manager.
 ISystemFilterPool ISystemFilterPoolReference.getReferencedFilterPool()
           
 ISystemFilterPool ISystemFilterPoolWrapper.getSystemFilterPool()
          Get the wrappered SystemFilterPool object
 ISystemFilterPool ISystemFilterPoolManagerProvider.getSystemFilterPoolForBrokenReference(ISystemFilterPoolReferenceManager callingRefenceMgr, String missingPoolMgrName, String missingPoolName)
          Last chance call, by a filter pool reference manager, when a reference to a filter pool is found but the referenced master filter pool is not found in those the reference manager by getSystemFilterPoolManagers().
 ISystemFilterPool[] ISystemFilterPoolReferenceManager.getReferencedSystemFilterPools()
          Return array of filter pools currently referenced by this manager Result will never be null, although it may be an array of length zero.
 ISystemFilterPool ISystemFilterPoolReferenceManagerProvider.getUniqueOwningSystemFilterPool(boolean createIfNotFound)
          Return the owning filter pool that is unique to this provider
 

Methods in org.eclipse.rse.core.filters with parameters of type ISystemFilterPool
 SystemMessage ISystemFilterPoolSelectionValidator.validate(ISystemFilterPool filterPool)
          Validate the given selection.
 void ISystemFilter.setParentFilterPool(ISystemFilterPool parentPool)
          Internal use method to set the parent filter pool.
 void ISystemFilterPoolManager.deleteSystemFilterPool(ISystemFilterPool pool)
          Delete a given filter pool.
 boolean ISystemFilterPoolManager.preTestRenameFilterPool(ISystemFilterPool pool)
          Pre-test if we are going to run into any trouble renaming any of the files or folders used to persist a filter pool.
 void ISystemFilterPoolManager.renameSystemFilterPool(ISystemFilterPool pool, String newName)
          Rename a filter pool.
 ISystemFilterPool ISystemFilterPoolManager.copySystemFilterPool(ISystemFilterPoolManager targetMgr, ISystemFilterPool pool, String newName)
          Copy the specified filter pool from this manager to this manager or another manager.
 ISystemFilterPool ISystemFilterPoolManager.moveSystemFilterPool(ISystemFilterPoolManager targetMgr, ISystemFilterPool oldPool, String newName)
          Move the specified filter pool from this manager to another manager.
 ISystemFilter ISystemFilterPoolManager.copySystemFilter(ISystemFilterPool targetPool, ISystemFilter oldFilter, String newName)
          Copy a system filter to a pool in this or another filter manager.
 ISystemFilter ISystemFilterPoolManager.moveSystemFilter(ISystemFilterPool targetPool, ISystemFilter oldFilter, String newName)
          Move a system filter to a pool in this or another filter manager.
 void ISystemFilterPoolManager.orderSystemFilters(ISystemFilterPool pool, String[] names)
          Order filters according to user preferences.
 void ISystemFilterPoolReference.setReferenceToFilterPool(ISystemFilterPool pool)
          Set the filter pool that we reference.
 void ISystemFilterPool.cloneSystemFilterPool(ISystemFilterPool targetPool)
          Clone the attributes from this filter pool into another filter pool.
 ISystemFilter ISystemFilterPool.copySystemFilter(ISystemFilterPool targetPool, ISystemFilter oldFilter, String newName)
          Copy a system filter to this or another filter pool.
 void ISystemFilterPoolWrapperInformation.addWrapper(String displayName, ISystemFilterPool poolToWrap, boolean preSelect)
          Add a filter pool, which we will wrapper here by creating a SystemFilterPoolWrapper object for you
 void ISystemFilterPoolManagerProvider.filterEventFilterPoolCreated(ISystemFilterPool newPool)
          A new filter pool has been created
 void ISystemFilterPoolManagerProvider.filterEventFilterPoolDeleted(ISystemFilterPool oldPool)
          A filter pool has been deleted
 void ISystemFilterPoolManagerProvider.filterEventFilterPoolRenamed(ISystemFilterPool pool, String oldName)
          A filter pool has been renamed
 void ISystemFilterPoolManagerProvider.filterEventFilterPoolsRePositioned(ISystemFilterPool[] pools, int delta)
          One or more filter pools have been re-ordered within their manager
 void ISystemFilterPoolReferenceManager.resetSystemFilterPoolReference(ISystemFilterPoolReference filterPoolReference, ISystemFilterPool newPool)
          Reset the filter pool a reference points to.
 boolean ISystemFilterPoolReferenceManager.isSystemFilterPoolReferenced(ISystemFilterPool filterPool)
          Return true if the given filter pool has a referencing object in this list.
 ISystemFilterPoolReference ISystemFilterPoolReferenceManager.getReferenceToSystemFilterPool(ISystemFilterPool filterPool)
          Given a filter pool, locate the referencing object for it and return it.
 ISystemFilterPoolReference ISystemFilterPoolReferenceManager.addReferenceToSystemFilterPool(ISystemFilterPool filterPool)
          Given a filter pool, create a referencing object and add it to the list.
 int ISystemFilterPoolReferenceManager.removeReferenceToSystemFilterPool(ISystemFilterPool filterPool)
          Given a filter pool, locate the referencing object for it and remove it from the list.
 void ISystemFilterPoolReferenceManager.renameReferenceToSystemFilterPool(ISystemFilterPool pool)
          A reference filter pool has been renamed.
 void ISystemFilterPoolReferenceManager.setSystemFilterPoolReferences(ISystemFilterPool[] filterPools, boolean deReference)
          In one shot, set the filter pool references to new references to supplied filter pools.
 

Uses of ISystemFilterPool in org.eclipse.rse.core.model
 

Methods in org.eclipse.rse.core.model that return ISystemFilterPool
 ISystemFilterPool[] ISystemProfile.getFilterPools()
           
 ISystemFilterPool[] ISystemProfile.getFilterPools(ISubSystemConfiguration ssf)
          Return all filter pools for this profile, scoped by a given subsystem factory
 

Uses of ISystemFilterPool in org.eclipse.rse.core.subsystems
 

Methods in org.eclipse.rse.core.subsystems that return ISystemFilterPool
 ISystemFilterPool SubSystemConfiguration.getDefaultFilterPool(ISystemProfile profile, String oldProfileName)
          Return the default filter pool for the given profile...
protected  ISystemFilterPool SubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
          Overridable lifecycle method.
 ISystemFilterPool SubSystemConfiguration.getDefaultSystemFilterPool(ISubSystem subsys)
          Given a subsystem, return the first (hopefully only) default pool for this subsystem's profile.
 ISystemFilterPool SubSystemConfiguration.getDefaultSystemFilterPool(ISystemProfile profile)
          Given a profile, return the first (hopefully only) default pool for this profile.
 ISystemFilterPool SubSystemConfiguration.getSystemFilterPoolForBrokenReference(ISystemFilterPoolReferenceManager callingRefMgr, String missingPoolMgrName, String missingPoolName)
          Last chance call, by a filter pool reference manager, when a reference to a filter pool is found but the referenced master filter pool is not found in those the reference manager by getSystemFilterPoolManagers().
 ISystemFilterPool SubSystemConfiguration.getFilterPool(ISystemProfile profile, String name)
          Returns a filter pool, given its profile and pool name
 ISystemFilterPool[] SubSystemConfiguration.getFilterPools(ISystemProfile profile)
          Returns an array of filter pool objects within a profile.
 ISystemFilterPool SubSystem.getUniqueOwningSystemFilterPool(boolean createIfNotFound)
          Return the owning filter pool that is unique to this provider.
 ISystemFilterPool SubSystem.getConnectionPrivateFilterPool(boolean createIfNotFound)
          Find or create a new filter pool, unique to this subsystem's connection.
 ISystemFilterPool ISubSystemConfiguration.getDefaultSystemFilterPool(ISubSystem subsys)
          Given a subsystem, return the first (hopefully only) default pool for this subsystem's profile.
 ISystemFilterPool ISubSystemConfiguration.getDefaultFilterPool(ISystemProfile profile, String oldProfileName)
           
 

Methods in org.eclipse.rse.core.subsystems with parameters of type ISystemFilterPool
 ISystemProfile SubSystemConfiguration.getSystemProfile(ISystemFilterPool pool)
          Get owning profile object given a filter pool object
 ISubSystem[] SubSystemConfiguration.getSubSystems(ISystemFilterPool pool)
          Returns a list of subsystem objects existing in memory, which contain a reference to the given filter pool.
protected  ISystemFilterPoolManager SubSystemConfiguration.getFilterPoolManager(ISystemFilterPool pool)
          Get the filter pool manager for the given filter pool
 void SubSystemConfiguration.filterEventFilterPoolCreated(ISystemFilterPool newPool)
          A new filter pool has been created
 void SubSystemConfiguration.filterEventFilterPoolDeleted(ISystemFilterPool oldPool)
          A filter pool has been deleted
 void SubSystemConfiguration.filterEventFilterPoolRenamed(ISystemFilterPool pool, String oldName)
          A filter pool has been renamed
 void SubSystemConfiguration.filterEventFilterPoolsRePositioned(ISystemFilterPool[] pools, int delta)
          One or more filter pools have been re-ordered within their manager
static ISubSystemConfiguration SubSystemHelpers.getParentSubSystemConfiguration(ISystemFilterPool pool)
          Give a filter pool, return parent subsystem factory
static ISystemFilterPoolManager SubSystemHelpers.getParentSystemFilterPoolManager(ISystemFilterPool pool)
          Give a filter pool, return its parent filter pool manager
static ISystemProfile SubSystemHelpers.getParentSystemProfile(ISystemFilterPool pool)
          Give a filter pool, return its parent profile
 ISystemProfile ISubSystemConfiguration.getSystemProfile(ISystemFilterPool pool)
          Get owning profile object given a filter pool object
 

Uses of ISystemFilterPool in org.eclipse.rse.subsystems.files.core.subsystems
 

Methods in org.eclipse.rse.subsystems.files.core.subsystems that return ISystemFilterPool
protected  ISystemFilterPool RemoteFileSubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
          Override from parent.
 

Uses of ISystemFilterPool in org.eclipse.rse.subsystems.files.dstore
 

Methods in org.eclipse.rse.subsystems.files.dstore that return ISystemFilterPool
protected  ISystemFilterPool DStoreWindowsFileSubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
           
 

Uses of ISystemFilterPool in org.eclipse.rse.subsystems.files.local
 

Methods in org.eclipse.rse.subsystems.files.local that return ISystemFilterPool
protected  ISystemFilterPool LocalFileSubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
          Override from parent.
 

Uses of ISystemFilterPool in org.eclipse.rse.subsystems.processes.core.subsystem.impl
 

Methods in org.eclipse.rse.subsystems.processes.core.subsystem.impl that return ISystemFilterPool
protected  ISystemFilterPool RemoteProcessSubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
          Override from parent.
 

Uses of ISystemFilterPool in org.eclipse.rse.subsystems.shells.core.subsystems
 

Methods in org.eclipse.rse.subsystems.shells.core.subsystems that return ISystemFilterPool
protected  ISystemFilterPool RemoteCmdSubSystemConfiguration.createDefaultFilterPool(ISystemFilterPoolManager mgr)
           
 

Uses of ISystemFilterPool in org.eclipse.rse.ui.filters
 

Fields in org.eclipse.rse.ui.filters declared as ISystemFilterPool
 ISystemFilterPool SystemFilterPoolDialogOutputs.newPool
           
 

Methods in org.eclipse.rse.ui.filters with parameters of type ISystemFilterPool
protected static void SystemFilterUIHelpers.populateFilterPoolContentElementVector(ISystemFilterPool[] pools, Vector elements, SystemSimpleContentElement parentElement)
          Internal use only
static ImageDescriptor SystemFilterUIHelpers.getFilterPoolImage(ISystemFilterPoolManagerProvider poolMgrProvider, ISystemFilterPool pool)
          Get the filter pool image
 

Uses of ISystemFilterPool in org.eclipse.rse.ui.filters.actions
 

Fields in org.eclipse.rse.ui.filters.actions declared as ISystemFilterPool
protected  ISystemFilterPool SystemNewFilterAction.parentPool
           
protected  ISystemFilterPool[] SystemNewFilterAction.poolsToSelectFrom
           
 

Methods in org.eclipse.rse.ui.filters.actions with parameters of type ISystemFilterPool
protected  boolean SystemFilterAbstractFilterPoolAction.getFilterPoolPreSelection(ISystemFilterPool pool)
          Decide per pool if it should be selected or not.
 void SystemNewFilterAction.setParentFilterPool(ISystemFilterPool parentPool)
          Configuration method.
 void SystemNewFilterAction.setAllowFilterPoolSelection(ISystemFilterPool[] poolsToSelectFrom)
          Configuration method.
protected  SystemNewFilterWizard SystemNewFilterAction.createNewFilterWizard(ISystemFilterPool parentPool)
          Overridable lifecyle method.
 

Constructors in org.eclipse.rse.ui.filters.actions with parameters of type ISystemFilterPool
SystemNewFilterAction(Shell shell, ISystemFilterPool parentPool, String label, String tooltip, ImageDescriptor image)
          Constructor for non-nested actions.
SystemNewFilterAction(Shell shell, ISystemFilterPool parentPool, String label, String tooltip, ImageDescriptor image, boolean nested)
          Constructor allowing nested actions.
SystemNewFilterAction(Shell shell, ISystemFilterPool parentPool)
          Constructor to use when you want to just use the default action name and image.
 

Uses of ISystemFilterPool in org.eclipse.rse.ui.filters.dialogs
 

Fields in org.eclipse.rse.ui.filters.dialogs declared as ISystemFilterPool
protected  ISystemFilterPool SystemNewFilterWizard.parentPool
           
protected  ISystemFilterPool[] SystemNewFilterWizard.poolsToSelectFrom
           
protected  ISystemFilterPool[] SystemNewFilterWizardNamePage.poolsToSelectFrom
           
protected  ISystemFilterPool SystemNewFilterWizardNamePage.parentPool
           
 

Methods in org.eclipse.rse.ui.filters.dialogs that return ISystemFilterPool
 ISystemFilterPool SystemNewFilterWizardNamePage.getParentSystemFilterPool()
          Return the filter pool that was explicitly chosen by the user, or implicitly set by the caller.
 

Methods in org.eclipse.rse.ui.filters.dialogs with parameters of type ISystemFilterPool
 void SystemNewFilterWizard.setAllowFilterPoolSelection(ISystemFilterPool[] poolsToSelectFrom)
          If you want to prompt the user for the parent filter pool to create this filter in, call this with the list of filter pools.
 void SystemNewFilterWizardNamePage.setAllowFilterPoolSelection(ISystemFilterPool[] poolsToSelectFrom, ISystemValidator[] nameValidators)
          Call if you want to allow the user to select the filter pool to create this filter in.
 

Constructors in org.eclipse.rse.ui.filters.dialogs with parameters of type ISystemFilterPool
SystemNewFilterWizard(String title, ImageDescriptor wizardImage, ISystemFilterPool parentPool)
          Constructor when you want to supply your own title and image
SystemNewFilterWizard(ISystemFilterPool parentPool)
          Constructor when you want to use the default page title and image, or want to supply it via setWizardTitle and setWizardImage.
SystemNewFilterWizard(ISystemNewFilterWizardConfigurator data, ImageDescriptor wizardImage, ISystemFilterPool parentPool)
          Constructor when you want to supply all your own configuration data
SystemNewFilterWizardNamePage(SystemNewFilterWizard wizard, ISystemFilterPool parentPool, ISystemNewFilterWizardConfigurator data)
          Constructor.
 

Uses of ISystemFilterPool in org.eclipse.rse.ui.subsystems
 

Methods in org.eclipse.rse.ui.subsystems with parameters of type ISystemFilterPool
 IAction[] ISubSystemConfigurationAdapter.getFilterPoolActions(SystemMenuManager menu, IStructuredSelection selection, Shell shell, String menuGroup, ISubSystemConfiguration config, ISystemFilterPool selectedPool)
          Returns a list of actions for the popup menu when user right clicks on a filter pool object within a subsystem of this subsystem configuration.
 ImageDescriptor ISubSystemConfigurationAdapter.getSystemFilterPoolImage(ISystemFilterPool filterPool)
          Supply the image to be used for filter pools, within actions.
 

Uses of ISystemFilterPool in org.eclipse.rse.ui.view
 

Methods in org.eclipse.rse.ui.view that return ISystemFilterPool
 ISystemFilterPool SubSystemConfigurationAdapter.getDefaultSystemFilterPool(ISubSystemConfiguration config, ISystemProfile profile)
          Given a profile, return the first (hopefully only) default pool for this profile.
 

Methods in org.eclipse.rse.ui.view with parameters of type ISystemFilterPool
 ImageDescriptor SubSystemConfigurationAdapter.getSystemFilterPoolImage(ISystemFilterPool filterPool)
          Supply the image to be used for filter pools, within actions.
 IAction[] SubSystemConfigurationAdapter.getFilterPoolActions(SystemMenuManager menu, IStructuredSelection selection, Shell shell, String menuGroup, ISubSystemConfiguration config, ISystemFilterPool selectedPool)
          Returns a list of actions for the popup menu when user right clicks on a filter pool object within a subsystem of this subsystem configuration.
protected  IAction[] SubSystemConfigurationAdapter.getNewFilterPoolFilterActions(SystemMenuManager menu, IStructuredSelection selection, Shell shell, String menuGroup, ISubSystemConfiguration config, ISystemFilterPool selectedPool)
          Overridable method to return the actions for creating a new filter in a filter pool.
protected  IAction SubSystemConfigurationAdapter.getNewFilterPoolFilterAction(ISubSystemConfiguration config, ISystemFilterPool selectedPool, Shell shell)
          Overridable method to return the single action for creating a new filter in a filter pool.
protected  IAction SubSystemConfigurationAdapter.getRemoveFilterPoolReferenceAction(ISubSystemConfiguration config, ISystemFilterPool selectedPool, Shell shell)
          Overridable method to return the action for removing a filter pool reference.
 


RSE
Release 3.0

Copyright (c) IBM Corporation and others 2000, 2008. All Rights Reserved.