1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix some @since tags because of new baseline and plugin version

Some changes in the cdt.core plug-ins happened without increasing the version
number. With commit 00df140, the version was increased but now the @since tags
do not match the version.

Change-Id: I51bab190aa4be05e678487a6be0b5122cba8146a
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
This commit is contained in:
Marc-Andre Laperle 2018-07-23 16:57:28 -04:00
parent 2dd5e7193d
commit 4cf155d79f
5 changed files with 9 additions and 9 deletions

View file

@ -123,7 +123,7 @@ public interface INodeFactory {
public IGCCASTAttributeList newGCCAttributeList(); public IGCCASTAttributeList newGCCAttributeList();
/** /**
* @since 6.5 * @since 6.6
*/ */
public IMSASTDeclspecList newMSDeclspecList(); public IMSASTDeclspecList newMSDeclspecList();

View file

@ -25,7 +25,7 @@ public interface ICPPASTEnumerationSpecifier extends IASTEnumerationSpecifier, I
"ICPPASTEnumerationSpecifier.BASE_TYPE [ICPPASTDeclSpecifier]"); //$NON-NLS-1$ "ICPPASTEnumerationSpecifier.BASE_TYPE [ICPPASTDeclSpecifier]"); //$NON-NLS-1$
/** /**
* @since 6.5 * @since 6.6
*/ */
public enum ScopeStyle { public enum ScopeStyle {
CLASS, CLASS,
@ -52,12 +52,12 @@ public interface ICPPASTEnumerationSpecifier extends IASTEnumerationSpecifier, I
/** /**
* Not allowed on frozen AST. * Not allowed on frozen AST.
* @since 6.5 * @since 6.6
*/ */
public void setScopeStyle(ScopeStyle scopeStyle); public void setScopeStyle(ScopeStyle scopeStyle);
/** /**
* @since 6.5 * @since 6.6
*/ */
public ScopeStyle getScopeStyle(); public ScopeStyle getScopeStyle();

View file

@ -166,7 +166,7 @@ public interface ICPPNodeFactory extends INodeFactory {
public ICPPASTEnumerationSpecifier newEnumerationSpecifier(boolean isScoped, IASTName name, ICPPASTDeclSpecifier baseType); public ICPPASTEnumerationSpecifier newEnumerationSpecifier(boolean isScoped, IASTName name, ICPPASTDeclSpecifier baseType);
/** /**
* @since 6.5 * @since 6.6
*/ */
public ICPPASTEnumerationSpecifier newEnumerationSpecifier(ScopeStyle scopeStyle, IASTName name, ICPPASTDeclSpecifier baseType); public ICPPASTEnumerationSpecifier newEnumerationSpecifier(ScopeStyle scopeStyle, IASTName name, ICPPASTDeclSpecifier baseType);

View file

@ -18,7 +18,7 @@ import org.eclipse.cdt.core.parser.util.InstanceOfPredicate;
/** /**
* Represents a Microsoft attribute specifier, introduced by __declspec. * Represents a Microsoft attribute specifier, introduced by __declspec.
* *
* @since 6.5 * @since 6.6
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */

View file

@ -265,7 +265,7 @@ public final class ASTRewrite {
* *
* @param node the node. * @param node the node.
* @param comment the comment to be removed from the node. * @param comment the comment to be removed from the node.
* @since 6.5 * @since 6.6
*/ */
public void removeComment(IASTNode node, IASTComment comment) { public void removeComment(IASTNode node, IASTComment comment) {
fCommentMap.removeCommentFromNode(node, comment); fCommentMap.removeCommentFromNode(node, comment);
@ -276,7 +276,7 @@ public final class ASTRewrite {
* *
* @param node the node. * @param node the node.
* @param pos the position of the comments to be removed from the node. * @param pos the position of the comments to be removed from the node.
* @since 6.5 * @since 6.6
*/ */
public void removeComments(IASTNode node, CommentPosition pos) { public void removeComments(IASTNode node, CommentPosition pos) {
switch (pos) { switch (pos) {
@ -296,7 +296,7 @@ public final class ASTRewrite {
* Removes all comments of a node. * Removes all comments of a node.
* *
* @param node the node. * @param node the node.
* @since 6.5 * @since 6.6
*/ */
public void removeAllComments(IASTNode node) { public void removeAllComments(IASTNode node) {
fCommentMap.removeAllComments(node); fCommentMap.removeAllComments(node);