diff --git a/core/org.eclipse.cdt.core/ChangeLog b/core/org.eclipse.cdt.core/ChangeLog index b78d389a1d8..0fced2b7471 100644 --- a/core/org.eclipse.cdt.core/ChangeLog +++ b/core/org.eclipse.cdt.core/ChangeLog @@ -1,3 +1,14 @@ +2005-02-15 Alain Magloire + Fix PR 82856 + * model/org/eclipse/cdt/core/model/IDeclaration.java + * model/org/eclipse/cdt/core/model/IMacro.java + * model/org/eclipse/cdt/core/model/IMember.java + * model/org/eclipse/cdt/core/model/IMethod.java + * model/org/eclipse/cdt/core/model/INamespace.java + * model/org/eclipse/cdt/core/model/IStructure.java + * model/org/eclipse/cdt/core/model/IVariable.java + * model/org/eclipse/cdt/core/model/IVariableDeclaration.java + 2005-02-14 Alain Magloire Part of 79596 * model/org/eclipse/cdt/core/model/CoreModel.java diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IDeclaration.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IDeclaration.java index a360897f28e..16da13588bb 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IDeclaration.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IDeclaration.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMacro.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMacro.java index 9d6ba0c6440..c02f31a7474 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMacro.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMacro.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMember.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMember.java index c0373b7e4fa..c45910afca7 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMember.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMember.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethod.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethod.java index c282f16be47..266a82a7cc2 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethod.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMethod.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; @@ -15,4 +15,4 @@ package org.eclipse.cdt.core.model; */ public interface IMethod extends IMethodDeclaration { -} \ No newline at end of file +} diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java index 91f4240f3d2..9bb13069323 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/INamespace.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IStructure.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IStructure.java index f85806addf7..c97ef568312 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IStructure.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IStructure.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariable.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariable.java index f00260e333a..bbc9e8d9351 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariable.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariable.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model; diff --git a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java index b96ced20d7d..b114fd0d622 100644 --- a/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java +++ b/core/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IVariableDeclaration.java @@ -1,12 +1,12 @@ /********************************************************************** Copyright (c) 2002, 2004 IBM Rational Software and others. -All rights reserved.   This program and the accompanying materials +All rights reserved. This program and the accompanying materials are made available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html -  + Contributors: -    IBM Rational Software - Initial API and implementation + IBM Rational Software - Initial API and implementation **********************************************************************/ package org.eclipse.cdt.core.model;