1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 14:45:57 +02:00

[197167][apidoc] Add missing @since tags for IRSECoreStatusCodes, IRSEInitListener

This commit is contained in:
Martin Oberhuber 2008-04-14 16:03:21 +00:00
parent 9eddee2760
commit 6c736125ce
2 changed files with 15 additions and 16 deletions

View file

@ -11,9 +11,10 @@
package org.eclipse.rse.core; package org.eclipse.rse.core;
/** /**
* Codes for use in constructing IStatus objects. * Codes for use in constructing IStatus objects. These are unique across
* These are unique across org.eclipse.rse.core * org.eclipse.rse.core
* @since 3.0 *
* @since org.eclipse.rse.core 3.0
*/ */
public interface IRSECoreStatusCodes { public interface IRSECoreStatusCodes {
@ -24,7 +25,6 @@ public interface IRSECoreStatusCodes {
/** /**
* A code used for constructing IStatus objects. * A code used for constructing IStatus objects.
* Value 1. An exception occurred during the operation. * Value 1. An exception occurred during the operation.
* @since 3.0
*/ */
public static final int EXCEPTION_OCCURRED = 1; public static final int EXCEPTION_OCCURRED = 1;
@ -32,7 +32,6 @@ public interface IRSECoreStatusCodes {
* A code used for constructing IStatus objects. * A code used for constructing IStatus objects.
* Value 2. An invalid format was encountered operation. * Value 2. An invalid format was encountered operation.
* The object in question must be assumed to be corrupted. * The object in question must be assumed to be corrupted.
* @since 3.0
*/ */
public static final int INVALID_FORMAT = 2; public static final int INVALID_FORMAT = 2;
@ -43,7 +42,6 @@ public interface IRSECoreStatusCodes {
/** /**
* A code used for constructing IStatus objects. * A code used for constructing IStatus objects.
* Value 101. A persistent form of a profile is not found. * Value 101. A persistent form of a profile is not found.
* @since 3.0
*/ */
public static final int PROFILE_NOT_FOUND = 101; public static final int PROFILE_NOT_FOUND = 101;
@ -51,7 +49,6 @@ public interface IRSECoreStatusCodes {
* A code used for constructing IStatus objects. * A code used for constructing IStatus objects.
* Value 102. * Value 102.
* The marking of profiles as migrated is not supported by this provider. * The marking of profiles as migrated is not supported by this provider.
* @since 3.0
*/ */
public static final int MIGRATION_NOT_SUPPORTED = 102; public static final int MIGRATION_NOT_SUPPORTED = 102;

View file

@ -10,8 +10,10 @@
package org.eclipse.rse.core; package org.eclipse.rse.core;
/** /**
* An IRSEInitListener will be invoked when the initialization of RSE reaches the * An IRSEInitListener will be invoked when the initialization of RSE reaches
* completion of each phase. * the completion of each phase.
*
* @since org.eclipse.rse.core 3.0
*/ */
public interface IRSEInitListener { public interface IRSEInitListener {