From 7d47d82b476fdcfac5358efa4eebe70e625e0ff2 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Fri, 25 May 2007 14:42:06 +0000 Subject: [PATCH] [javadoc] undeprecated getActiveSystemProfilePosition as there is no alternative. Updated interface javadoc. --- .../eclipse/rse/core/model/ISystemProfileManager.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemProfileManager.java b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemProfileManager.java index 4f5540e6f38..650ad7ab4a9 100644 --- a/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemProfileManager.java +++ b/rse/plugins/org.eclipse.rse.core/src/org/eclipse/rse/core/model/ISystemProfileManager.java @@ -20,17 +20,17 @@ import java.util.List; import java.util.Vector; /** - * A class that manages a list of SystemProfile objects. + * Manages a list of SystemProfile objects. System profiles + * should be created, deleted, restored, activated, and deactivated though + * this interface if event processing is not desired. If events are necessary + * then the system registry should be used. */ - public interface ISystemProfileManager { /** * Create a new profile with the given name, and add to the list. * The name must be unique within the existing list. *

- * The underlying folder is created in the file system. - *

* @param name What to name this profile * @param makeActive true if this profile is to be added to the active profile list. * @return new profile, or null if name not unique. @@ -86,7 +86,6 @@ public interface ISystemProfileManager { * Get the index of a profile given its name. * @param profileName the name of the profile to look for. * @return 0-based position of the given active profile within the list of active profiles. - * @deprecated */ public int getActiveSystemProfilePosition(String profileName);