1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

[javadoc] undeprecated getActiveSystemProfilePosition as there is no alternative. Updated interface javadoc.

This commit is contained in:
David Dykstal 2007-05-25 14:42:06 +00:00
parent ffc0756f6a
commit 7d47d82b47

View file

@ -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.
* <p>
* The underlying folder is created in the file system.
* <p>
* @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);