1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

API tags for org.eclipse.cdt.core.cdtvariables, bug 260830.

This commit is contained in:
Markus Schorn 2009-02-04 08:56:12 +00:00
parent 1f0a621213
commit 9062425719
5 changed files with 13 additions and 0 deletions

View file

@ -14,6 +14,9 @@ package org.eclipse.cdt.core.cdtvariables;
/**
* this interface represents the given build macro
* @since 3.0
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ICdtVariable{
/**

View file

@ -16,6 +16,8 @@ import org.eclipse.core.variables.IStringVariable;
/**
*
* @since 3.0
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ICdtVariableManager{
/* public final static int CONTEXT_FILE = 1;

View file

@ -16,6 +16,8 @@ import org.eclipse.core.runtime.IStatus;
* This interface represents the status of a build macro operation
*
* @since 3.0
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface ICdtVariableStatus extends IStatus {
/**

View file

@ -12,6 +12,9 @@ package org.eclipse.cdt.core.cdtvariables;
/**
* Public interface to access StorableCdtVariables class methods
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IStorableCdtVariables {
ICdtVariable getMacro(String name);

View file

@ -15,6 +15,9 @@ import org.eclipse.core.runtime.CoreException;
/**
* Public interface to access to UserVarSupplier class methods
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface IUserVarSupplier {
ICdtVariable createMacro(ICdtVariable copy, ICConfigurationDescription contextData);