Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsprigogin2012-05-21 04:06:18 +0000
committersprigogin2012-05-21 04:06:18 +0000
commited4b23705cfcc11c44ee056f6acac18106fa0d65 (patch)
tree392a8fe9c51ad12fb234dba4fcf3262a6bff3f6c /core/org.eclipse.cdt.core/parser/org/eclipse/cdt
parent65a29165c20d6a4546853eee11fd88eafb2250f6 (diff)
downloadorg.eclipse.cdt-ed4b23705cfcc11c44ee056f6acac18106fa0d65.tar.gz
org.eclipse.cdt-ed4b23705cfcc11c44ee056f6acac18106fa0d65.tar.xz
org.eclipse.cdt-ed4b23705cfcc11c44ee056f6acac18106fa0d65.zip
Cosmetics.
Diffstat (limited to 'core/org.eclipse.cdt.core/parser/org/eclipse/cdt')
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTArrayDeclarator.java5
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTDeclarator.java11
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTFunctionTryBlockDeclarator.java8
3 files changed, 10 insertions, 14 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTArrayDeclarator.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTArrayDeclarator.java
index 4edeb1b52d9..02e80947727 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTArrayDeclarator.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTArrayDeclarator.java
@@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * Markus Schorn - initial API and implementation
+ * Markus Schorn - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp;
@@ -19,6 +19,5 @@ import org.eclipse.cdt.core.dom.ast.IASTArrayDeclarator;
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/
-public interface ICPPASTArrayDeclarator extends IASTArrayDeclarator, ICPPASTDeclarator{
-
+public interface ICPPASTArrayDeclarator extends IASTArrayDeclarator, ICPPASTDeclarator {
}
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTDeclarator.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTDeclarator.java
index 5ba0b47538f..0f493d8a8ad 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTDeclarator.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTDeclarator.java
@@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * Markus Schorn - initial API and implementation
+ * Markus Schorn - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp;
@@ -21,15 +21,14 @@ import org.eclipse.cdt.core.dom.ast.IASTDeclarator;
*/
public interface ICPPASTDeclarator extends IASTDeclarator {
/**
- * Returns whether the declarator contains an ellipsis, in which case it declares a
- * parameter pack.
+ * Returns whether the declarator contains an ellipsis, in which case it declares
+ * a parameter pack.
*/
public boolean declaresParameterPack();
-
-
+
/**
* Set whether the declarator contains an ellipsis, denoting a pack expansion.
- * Not allowed on frozen AST.
+ * Not allowed on a frozen AST.
*/
public void setDeclaresParameterPack(boolean val);
}
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTFunctionTryBlockDeclarator.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTFunctionTryBlockDeclarator.java
index e5d8af0d57b..91133b4c87e 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTFunctionTryBlockDeclarator.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPASTFunctionTryBlockDeclarator.java
@@ -6,8 +6,8 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
- * IBM - Initial API and implementation
- * Markus Schorn (Wind River Systems)
+ * IBM - Initial API and implementation
+ * Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp;
@@ -18,9 +18,7 @@ import org.eclipse.cdt.core.dom.ast.ASTNodeProperty;
* @noimplement This interface is not intended to be implemented by clients.
*/
@Deprecated
-public interface ICPPASTFunctionTryBlockDeclarator extends
- ICPPASTFunctionDeclarator {
-
+public interface ICPPASTFunctionTryBlockDeclarator extends ICPPASTFunctionDeclarator {
/**
* A <code>CATCH_HANDLER</code> is the role of an ICPPASTCatchHandler in
* this interface.

Back to the top