1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-20 06:35:50 +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

@ -1,9 +1,9 @@
/********************************************************************************* /*********************************************************************************
* Copyright (c) 2008 IBM Corporation. All rights reserved. * Copyright (c) 2008 IBM Corporation. All rights reserved.
* This program and the accompanying materials are made available under the terms * This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is * of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html * available at http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* David Dykstal (IBM) - [225988] need API to mark persisted profiles as migrated * David Dykstal (IBM) - [225988] need API to mark persisted profiles as migrated
*********************************************************************************/ *********************************************************************************/
@ -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 {
@ -23,16 +24,14 @@ 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;
/** /**
* 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,16 +42,14 @@ 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;
/** /**
* 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,11 +10,13 @@
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 {
/** /**
* @param phase The phase of initialization that has completed. * @param phase The phase of initialization that has completed.
* @see RSECorePlugin#INIT_MODEL * @see RSECorePlugin#INIT_MODEL