From 5ba7b39f011a45a1f71ac5b3b00ddd2b3be3e08c Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Thu, 18 Dec 2014 14:27:33 -0800 Subject: [PATCH] ICPPAliasTemplate and ICPPAliasTemplateInstance are not supposed to be extended or implemented by clients. --- .../org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplate.java | 5 ++++- .../cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplate.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplate.java index ed1d537cd8a..897abdd2173 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplate.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplate.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012 Institute for Software, HSR Hochschule fuer Technik + * Copyright (c) 2012, 2014 Institute for Software, HSR Hochschule fuer Technik * Rapperswil, University of applied sciences. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -16,6 +16,9 @@ import org.eclipse.cdt.core.dom.ast.IType; /** * Represents an alias template (14.5.7). * @since 5.5 + * + * @noextend This interface is not intended to be extended by clients. + * @noimplement This interface is not intended to be implemented by clients. */ public interface ICPPAliasTemplate extends IType, ICPPTemplateDefinition { /** diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java index 4c2d7d6d9e8..f176a8e8e1c 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPAliasTemplateInstance.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2012 Institute for Software, HSR Hochschule fuer Technik + * Copyright (c) 2012, 2014 Institute for Software, HSR Hochschule fuer Technik * Rapperswil, University of applied sciences. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -16,6 +16,9 @@ import org.eclipse.cdt.core.dom.ast.ITypedef; /** * Represents an instance of an alias template (14.5.7). * @since 5.5 + * + * @noextend This interface is not intended to be extended by clients. + * @noimplement This interface is not intended to be implemented by clients. */ public interface ICPPAliasTemplateInstance extends ITypedef, ICPPBinding { /**