|
RSE Release 1.0 |
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Uses of ISystemProfile in org.eclipse.rse.core |
|---|
| Methods in org.eclipse.rse.core with parameters of type ISystemProfile | |
static IFolder |
SystemResourceManager.getProfileFolder(ISystemProfile profile)
Get profiles folder for a given profile |
static IFolder |
SystemResourceManager.getUserActionsFolder(ISystemProfile profile,
ISubSystemConfiguration ssFactory)
Get user defined actions root folder given a system profile object and subsystem factory |
static IFolder |
SystemResourceManager.getCompileCommandsFolder(ISystemProfile profile,
ISubSystemConfiguration ssFactory)
Get compile commands root folder given a system profile object and subsystem factory |
| Uses of ISystemProfile in org.eclipse.rse.core.filters |
|---|
| Methods in org.eclipse.rse.core.filters that return ISystemProfile | |
ISystemProfile |
SystemFilterPoolManager.getSystemProfile()
|
ISystemProfile |
ISystemFilterPoolManager.getSystemProfile()
Return the owning profile for this provider |
| Methods in org.eclipse.rse.core.filters with parameters of type ISystemProfile | |
ISystemFilterPoolManager |
ISystemFilterStartHere.createSystemFilterPoolManager(ISystemProfile profile,
Logger logger,
ISystemFilterPoolManagerProvider caller,
String name,
boolean allowNestedFilters)
Factory to create a filter pool manager, when you do NOT want it to worry about saving and restoring the filter data to disk. |
static ISystemFilterPoolManager |
SystemFilterPoolManager.createSystemFilterPoolManager(ISystemProfile profile,
Logger logger,
ISystemFilterPoolManagerProvider caller,
String name,
boolean allowNestedFilters,
int savePolicy,
IRSEFilterNamingPolicy namingPolicy)
Factory to create a filter pool manager. |
static SystemFilterPoolManager |
SystemFilterPoolManager.createManager(ISystemProfile profile)
|
| Constructors in org.eclipse.rse.core.filters with parameters of type ISystemProfile | |
SystemFilterPoolManager(ISystemProfile profile)
Constructor |
|
| Uses of ISystemProfile in org.eclipse.rse.core.model |
|---|
| Methods in org.eclipse.rse.core.model that return ISystemProfile | |
ISystemProfile |
ISystemHostPool.getSystemProfile()
Return the system profile that owns this connection pool |
ISystemProfile[] |
ISystemRegistry.getActiveSystemProfiles()
Return the profiles currently selected by the user as his "active" profiles |
ISystemProfile[] |
ISystemRegistry.getAllSystemProfiles()
Return all defined profiles |
ISystemProfile |
ISystemRegistry.getSystemProfile(String profileName)
Get a SystemProfile given its name |
ISystemProfile |
ISystemRegistry.createSystemProfile(String profileName,
boolean makeActive)
Create a SystemProfile given its name and whether or not to make it active |
ISystemProfile |
ISystemRegistry.copySystemProfile(IProgressMonitor monitor,
ISystemProfile profile,
String newName,
boolean makeActive)
Copy a SystemProfile. |
ISystemProfile |
ISystemProfileManager.createSystemProfile(String name,
boolean makeActive)
Create a new profile with the given name, and add to the list. |
ISystemProfile[] |
ISystemProfileManager.getSystemProfiles()
|
ISystemProfile |
ISystemProfileManager.getSystemProfile(String name)
Get a profile given its name. |
ISystemProfile[] |
ISystemProfileManager.getActiveSystemProfiles()
|
ISystemProfile |
ISystemProfileManager.getDefaultPrivateSystemProfile()
|
ISystemProfile |
ISystemProfileManager.getDefaultTeamSystemProfile()
|
ISystemProfile |
ISystemProfileManager.cloneSystemProfile(ISystemProfile profile,
String newName)
Clone the given profile |
ISystemProfile |
IHost.getSystemProfile()
Return the system profile that owns this connection |
| Methods in org.eclipse.rse.core.model with parameters of type ISystemProfile | |
ISystemProfile |
ISystemRegistry.copySystemProfile(IProgressMonitor monitor,
ISystemProfile profile,
String newName,
boolean makeActive)
Copy a SystemProfile. |
void |
ISystemRegistry.renameSystemProfile(ISystemProfile profile,
String newName)
Rename a SystemProfile. |
void |
ISystemRegistry.deleteSystemProfile(ISystemProfile profile)
Delete a SystemProfile. |
void |
ISystemRegistry.setSystemProfileActive(ISystemProfile profile,
boolean makeActive)
Make or unmake the given profile active |
IHost[] |
ISystemRegistry.getHostsByProfile(ISystemProfile profile)
Return all connections in a given profile name. |
IHost |
ISystemRegistry.getHost(ISystemProfile profile,
String connectionName)
Return a SystemConnection object given a system profile containing it, and a connection name uniquely identifying it. |
Vector |
ISystemRegistry.getHostAliasNames(ISystemProfile profile)
Return a vector of previously-used connection names in the given profile. |
IHost |
ISystemRegistry.createLocalHost(ISystemProfile profile,
String name,
String userId)
Convenience method to create a local connection, as it often that one is needed for access to the local file system. |
IHost |
ISystemRegistry.copyHost(IProgressMonitor monitor,
IHost conn,
ISystemProfile targetProfile,
String newName)
Copy a SystemConnection. |
IHost |
ISystemRegistry.moveHost(IProgressMonitor monitor,
IHost conn,
ISystemProfile targetProfile,
String newName)
Move a SystemConnection to another profile. |
void |
ISystemProfileManager.makeSystemProfileActive(ISystemProfile profile,
boolean makeActive)
Toggle an existing profile's state between active and inactive |
void |
ISystemProfileManager.renameSystemProfile(ISystemProfile profile,
String newName)
Rename the given profile. |
void |
ISystemProfileManager.deleteSystemProfile(ISystemProfile profile,
boolean persist)
Delete the given profile |
ISystemProfile |
ISystemProfileManager.cloneSystemProfile(ISystemProfile profile,
String newName)
Clone the given profile |
| Uses of ISystemProfile in org.eclipse.rse.core.subsystems |
|---|
| Methods in org.eclipse.rse.core.subsystems that return ISystemProfile | |
static ISystemProfile |
SubSystemHelpers.getParentSystemProfile(ISystemFilterPool pool)
Give a filter pool, return its parent profile |
ISystemProfile |
SubSystemConfiguration.getSystemProfile(String name)
Get a profile object given its name |
protected ISystemProfile |
SubSystemConfiguration.getSystemProfile(ISystemFilterPoolManager poolMgr)
Get a profile object given a filter pool manager object |
ISystemProfile |
SubSystemConfiguration.getSystemProfile(ISystemFilterPool pool)
Get owning profile object given a filter pool object |
protected ISystemProfile |
SubSystemConfiguration.getSystemProfile(ISystemFilter filter)
Get a profile object given a filter object |
ISystemProfile |
SubSystem.getSystemProfile()
Return the system profile object this subsystem is associated with. |
ISystemProfile |
ISubSystem.getSystemProfile()
Return the system profile object this subsystem is associated with. |
ISystemProfile |
ISubSystemConfiguration.getSystemProfile(ISystemFilterPool pool)
Get owning profile object given a filter pool object |
ISystemProfile |
ISubSystemConfiguration.getSystemProfile(String name)
|
| Methods in org.eclipse.rse.core.subsystems with parameters of type ISystemProfile | |
void |
SubSystemConfiguration.deletingSystemProfile(ISystemProfile profile)
Called by SystemRegistry when we are about to delete a profile. |
void |
SubSystemConfiguration.changingSystemProfileActiveStatus(ISystemProfile profile,
boolean newStatus)
Called by SystemRegistry when we have toggled the active-status of a profile |
ISystemFilterPool |
SubSystemConfiguration.getDefaultFilterPool(ISystemProfile profile,
String oldProfileName)
Return the default filter pool for the given profile... |
ISubSystem[] |
SubSystemConfiguration.getSubSystems(ISystemProfile profile)
Returns a list of subsystem objects existing for all the connections in the given profile. |
ISystemFilterPool |
SubSystemConfiguration.getDefaultSystemFilterPool(ISystemProfile profile)
Given a profile, return the first (hopefully only) default pool for this profile. |
ISystemFilterPoolManager |
SubSystemConfiguration.getFilterPoolManager(ISystemProfile profile)
Get the filter pool manager for the given profile |
ISystemFilterPoolManager |
SubSystemConfiguration.copyFilterPoolManager(ISystemProfile oldProfile,
ISystemProfile newProfile)
Copy the filter pool manager and return a new one. |
protected void |
SubSystemConfiguration.addFilterPoolManager(ISystemProfile profile,
ISystemFilterPoolManager mgr)
Add the given filter pool manager object to internal lists |
protected String |
SubSystemConfiguration.getFilterPoolManagerName(ISystemProfile profile)
Return the name of the filter pool manager, given the profile. |
protected void |
SubSystemConfiguration.deleteFilterPoolManager(ISystemProfile profile)
Delete the filter pool manager associated with the given profile |
void |
SubSystemConfiguration.renameFilterPoolManager(ISystemProfile profile)
Rename the filter pool manager associated with the given profile |
protected void |
SubSystemConfiguration.fireSubSystemEvent(SystemResourceChangeEvent event,
ISystemProfile profile)
Fire given event to all subsystems in the given profile |
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. |
ISubSystem[] |
SubSystemConfiguration.testForActiveReferences(ISystemProfile profile)
Test if any filter pools in the given profile are referenced by other profiles, which are active. |
void |
ISubSystemConfiguration.deletingSystemProfile(ISystemProfile profile)
Called by SystemRegistry when we are about to delete a profile. |
void |
ISubSystemConfiguration.changingSystemProfileActiveStatus(ISystemProfile profile,
boolean newStatus)
Called by SystemRegistry when we have toggled the active-status of a profile |
ISystemFilterPoolManager |
ISubSystemConfiguration.getFilterPoolManager(ISystemProfile profile)
Get the filter pool manager for the given profile |
ISystemFilterPoolManager |
ISubSystemConfiguration.copyFilterPoolManager(ISystemProfile oldProfile,
ISystemProfile newProfile)
Copy the filter pool manager and return a new one. |
ISubSystem[] |
ISubSystemConfiguration.testForActiveReferences(ISystemProfile profile)
Test if any filter pools in the given profile are referenced by other profiles, which are active. |
ISystemFilterPool |
ISubSystemConfiguration.getDefaultFilterPool(ISystemProfile profile,
String oldProfileName)
|
void |
ISubSystemConfiguration.renameFilterPoolManager(ISystemProfile profile)
|
| Uses of ISystemProfile in org.eclipse.rse.filters |
|---|
| Methods in org.eclipse.rse.filters with parameters of type ISystemProfile | |
ISystemFilterPoolManager |
SystemFilterStartHere.createSystemFilterPoolManager(ISystemProfile profile,
Logger logger,
ISystemFilterPoolManagerProvider caller,
String name,
boolean allowNestedFilters)
Factory to create a filter pool manager, when you do NOT want it to worry about saving and restoring the filter data to disk. |
| Uses of ISystemProfile in org.eclipse.rse.model |
|---|
| Methods in org.eclipse.rse.model that return ISystemProfile | |
ISystemProfile |
DummyHost.getSystemProfile()
|
static ISystemProfile[] |
SystemStartHere.getActiveSystemProfiles()
Return all active profiles. |
ISystemProfile[] |
SystemRegistry.getActiveSystemProfiles()
Return the profiles currently selected by the user as his "active" profiles |
ISystemProfile[] |
SystemRegistry.getAllSystemProfiles()
Return all defined profiles |
ISystemProfile |
SystemRegistry.getSystemProfile(String profileName)
Get a SystemProfile given its name |
ISystemProfile |
SystemRegistry.createSystemProfile(String profileName,
boolean makeActive)
Create a SystemProfile given its name and whether or not to make it active |
ISystemProfile |
SystemRegistry.copySystemProfile(IProgressMonitor monitor,
ISystemProfile profile,
String newName,
boolean makeActive)
Copy a SystemProfile. |
| Methods in org.eclipse.rse.model with parameters of type ISystemProfile | |
void |
SystemRegistry.renameSystemProfile(ISystemProfile profile,
String newName)
Rename a SystemProfile. |
ISystemProfile |
SystemRegistry.copySystemProfile(IProgressMonitor monitor,
ISystemProfile profile,
String newName,
boolean makeActive)
Copy a SystemProfile. |
void |
SystemRegistry.deleteSystemProfile(ISystemProfile profile)
Delete a SystemProfile. |
void |
SystemRegistry.setSystemProfileActive(ISystemProfile profile,
boolean makeActive)
Make or unmake the given profile active. |
IHost[] |
SystemRegistry.getHostsByProfile(ISystemProfile profile)
Return all connections in a given profile. |
IHost |
SystemRegistry.getHost(ISystemProfile profile,
String connectionName)
Return a SystemConnection object given a system profile containing it, and an connection name uniquely identifying it. |
Vector |
SystemRegistry.getHostAliasNames(ISystemProfile profile)
Return a vector of previously-used connection names in the given profile. |
IHost |
SystemRegistry.createLocalHost(ISystemProfile profile,
String name,
String userId)
Convenience method to create a local connection, as it often that one is needed for access to the local file system. |
IHost |
SystemRegistry.copyHost(IProgressMonitor monitor,
IHost conn,
ISystemProfile targetProfile,
String newName)
Copy a SystemConnection. |
IHost |
SystemRegistry.moveHost(IProgressMonitor monitor,
IHost conn,
ISystemProfile targetProfile,
String newName)
Move a SystemConnection to another profile. |
| Uses of ISystemProfile in org.eclipse.rse.persistence |
|---|
| Methods in org.eclipse.rse.persistence with parameters of type ISystemProfile | |
boolean |
IRSEPersistenceManager.commit(ISystemProfile profile)
Save this profile |
ISystemFilterPoolManager |
IRSEPersistenceManager.restoreFilterPoolManager(ISystemProfile profile,
Logger logger,
ISystemFilterPoolManagerProvider caller,
String name)
|
| Uses of ISystemProfile in org.eclipse.rse.persistence.dom |
|---|
| Methods in org.eclipse.rse.persistence.dom that return ISystemProfile | |
ISystemProfile |
IRSEDOMImporter.restoreProfile(ISystemProfileManager profileManager,
RSEDOM dom)
Restores the profile represented by dom |
ISystemProfile |
RSEDOM.getProfile()
|
| Methods in org.eclipse.rse.persistence.dom with parameters of type ISystemProfile | |
IHost |
IRSEDOMImporter.restoreHost(ISystemProfile profile,
RSEDOMNode hostNode)
Restores the host represented by hostNode |
ISystemFilterPool |
IRSEDOMImporter.restoreFilterPool(ISystemProfile profile,
RSEDOMNode systemFilterPoolNode)
Restore the filter pool represented by the node |
RSEDOM |
IRSEDOMExporter.createRSEDOM(ISystemProfile profile,
boolean clean)
Creates the RSE DOM for this profile |
RSEDOM |
IRSEDOMExporter.populateRSEDOM(RSEDOM dom,
ISystemProfile profile,
boolean clean)
Creates an RSE DOM for use in persistence |
RSEDOM |
IRSEDOMExporter.getRSEDOM(ISystemProfile profile)
Returns the RSEDOM for this profile iff it exists |
| Constructors in org.eclipse.rse.persistence.dom with parameters of type ISystemProfile | |
RSEDOM(ISystemProfile profile)
|
|
| Uses of ISystemProfile in org.eclipse.rse.ui |
|---|
| Fields in org.eclipse.rse.ui declared as ISystemProfile | |
protected ISystemProfile |
SystemProfileForm.profile
|
| Methods in org.eclipse.rse.ui with parameters of type ISystemProfile | |
static ISystemValidator |
SystemConnectionForm.getConnectionNameValidator(ISystemProfile profile)
Reusable method to return a name validator for renaming a connection. |
| Constructors in org.eclipse.rse.ui with parameters of type ISystemProfile | |
SystemProfileForm(ISystemMessageLine msgLine,
Object caller,
ISystemProfile profile,
boolean showVerbage)
Constructor. |
|
| Uses of ISystemProfile in org.eclipse.rse.ui.actions |
|---|
| Methods in org.eclipse.rse.ui.actions with parameters of type ISystemProfile | |
void |
SystemProfileNameCopyAction.setProfile(ISystemProfile profile)
Set the profile |
protected SystemSimpleContentElement |
SystemMoveConnectionAction.getProfileTreeModel(ISystemProfile profile)
Create and return data model to populate selection tree with. |
protected SystemSimpleContentElement |
SystemCopyConnectionAction.getProfileTreeModel(ISystemProfile profile)
Create and return data model to populate selection tree with. |
| Constructors in org.eclipse.rse.ui.actions with parameters of type ISystemProfile | |
SystemProfileNameSelectAction(Shell parent,
ISystemProfile profile)
Constructor |
|
| Uses of ISystemProfile in org.eclipse.rse.ui.dialogs |
|---|
| Constructors in org.eclipse.rse.ui.dialogs with parameters of type ISystemProfile | |
SystemCopyProfileDialog(Shell shell,
ISystemProfile profile)
Constructor when profile known |
|
| Uses of ISystemProfile in org.eclipse.rse.ui.propertypages |
|---|
| Methods in org.eclipse.rse.ui.propertypages that return ISystemProfile | |
protected ISystemProfile |
SystemTeamViewProfilePropertyPage.getProfile()
Get the input team view category node |
| Uses of ISystemProfile in org.eclipse.rse.ui.view |
|---|
| Methods in org.eclipse.rse.ui.view with parameters of type ISystemProfile | |
ISystemFilterPool |
SubSystemConfigurationAdapter.getDefaultSystemFilterPool(ISubSystemConfiguration factory,
ISystemProfile profile)
Given a profile, return the first (hopefully only) default pool for this profile. |
| Uses of ISystemProfile in org.eclipse.rse.ui.view.team |
|---|
| Methods in org.eclipse.rse.ui.view.team that return ISystemProfile | |
ISystemProfile |
SystemTeamViewSubSystemConfigurationNode.getProfile()
|
ISystemProfile |
SystemTeamViewCategoryNode.getProfile()
|
| Methods in org.eclipse.rse.ui.view.team with parameters of type ISystemProfile | |
SystemTeamViewCategoryNode[] |
SystemTeamViewProfileAdapter.getCategoryChildren(ISystemProfile profile)
Given a profile, return all the category children for it. |
SystemTeamViewCategoryNode |
SystemTeamViewProfileAdapter.restoreCategory(ISystemProfile profile,
String mementoHandle)
Given a profile and memento handle, return the appropriate category node. |
void |
SystemTeamViewSubSystemConfigurationNode.setProfile(ISystemProfile profile)
|
void |
SystemTeamViewCategoryNode.setProfile(ISystemProfile profile)
|
| Constructors in org.eclipse.rse.ui.view.team with parameters of type ISystemProfile | |
SystemTeamViewSubSystemConfigurationNode(ISystemProfile profile,
SystemTeamViewCategoryNode parentCategory,
ISubSystemConfiguration ssf)
Constructor |
|
SystemTeamViewCategoryNode(ISystemProfile profile)
Constructor |
|
SystemResourceAdaptableProfile(ISystemProfile profile)
Constructor |
|
|
RSE Release 1.0 |
||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||