Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2010-09-26 15:38:59 +0000
committerStephan Herrmann2010-09-26 15:38:59 +0000
commit66cc2b630cb956a5224848a13e98714fc235dfd5 (patch)
treeeadbe82168033f67cef968a96d09199eca72edb4 /org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java
parentab1b97641d02b0fd330844d183218bd64c5b7c48 (diff)
downloadorg.eclipse.objectteams-66cc2b630cb956a5224848a13e98714fc235dfd5.tar.gz
org.eclipse.objectteams-66cc2b630cb956a5224848a13e98714fc235dfd5.tar.xz
org.eclipse.objectteams-66cc2b630cb956a5224848a13e98714fc235dfd5.zip
Basic merge with v_B14a for 3.7M2
Diffstat (limited to 'org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java
index 9c7dafa34..c5ecb4539 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/CatchClause.java
@@ -29,14 +29,14 @@ import java.util.List;
public class CatchClause extends ASTNode {
/**
- * The "exception" structural property of this node type.
+ * The "exception" structural property of this node type (child type: {@link SingleVariableDeclaration}).
* @since 3.0
*/
public static final ChildPropertyDescriptor EXCEPTION_PROPERTY =
new ChildPropertyDescriptor(CatchClause.class, "exception", SingleVariableDeclaration.class, MANDATORY, CYCLE_RISK); //$NON-NLS-1$
/**
- * The "body" structural property of this node type.
+ * The "body" structural property of this node type (child type: {@link Block}).
* @since 3.0
*/
public static final ChildPropertyDescriptor BODY_PROPERTY =

Back to the top