1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-14 12:35:22 +02:00

[cleanup] fix invalid @since tag

This commit is contained in:
Martin Oberhuber 2008-04-08 16:46:05 +00:00
parent dd55387bd1
commit 679cd4858c

View file

@ -88,17 +88,20 @@ public interface IRSEPersistenceManager {
public void migrateProfile(ISystemProfile profile, IRSEPersistenceProvider persistenceProvider); public void migrateProfile(ISystemProfile profile, IRSEPersistenceProvider persistenceProvider);
/** /**
* Migrates a profile to a new persistence provider. * Migrates a profile to a new persistence provider. It will mark the
* It will mark the persistent form known to its previous * persistent form known to its previous persistence provider as migrated.
* persistence provider as migrated. This may, in fact, result * This may, in fact, result in the persistent form of this profile being
* in the persistent form of this profile being deleted. * deleted. If the new provider and the previous provider are the same this
* If the new provider and the previous provider are the same this does nothing. * does nothing.
*
* @param profile the system profile to be migrated * @param profile the system profile to be migrated
* @param persistenceProvider the persistence provider to which this profile will be migrated. * @param persistenceProvider the persistence provider to which this profile
* @param delete true if the persistent form of this profile is to be deleted from the old provider, * will be migrated.
* false if the persistent form of the profile is to be marked as migrated. * @param delete true if the persistent form of this profile is to be
* deleted from the old provider, false if the persistent form of
* the profile is to be marked as migrated.
* @return an IStatus indicating the success of the migration. * @return an IStatus indicating the success of the migration.
* @since org.eclipse.rse.core 2.1 * @since org.eclipse.rse.core 3.0
*/ */
public IStatus migrateProfile(ISystemProfile profile, IRSEPersistenceProvider persistenceProvider, boolean delete); public IStatus migrateProfile(ISystemProfile profile, IRSEPersistenceProvider persistenceProvider, boolean delete);