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/MethodDeclaration.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/MethodDeclaration.java')
-rw-r--r--org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java32
1 files changed, 16 insertions, 16 deletions
diff --git a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
index 93259be1c..d66f5e9a2 100644
--- a/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
+++ b/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/MethodDeclaration.java
@@ -69,7 +69,7 @@ import java.util.List;
public class MethodDeclaration extends BodyDeclaration {
/**
- * The "javadoc" structural property of this node type.
+ * The "javadoc" structural property of this node type (child type: {@link Javadoc}).
* @since 3.0
*/
public static final ChildPropertyDescriptor JAVADOC_PROPERTY =
@@ -90,56 +90,56 @@ public class MethodDeclaration extends BodyDeclaration {
internalModifiers2PropertyFactory(MethodDeclaration.class);
/**
- * The "constructor" structural property of this node type.
+ * The "constructor" structural property of this node type (type: {@link Boolean}).
* @since 3.0
*/
public static final SimplePropertyDescriptor CONSTRUCTOR_PROPERTY =
new SimplePropertyDescriptor(MethodDeclaration.class, "constructor", boolean.class, MANDATORY); //$NON-NLS-1$
/**
- * The "name" structural property of this node type.
+ * The "name" structural property of this node type (child type: {@link SimpleName}).
* @since 3.0
*/
public static final ChildPropertyDescriptor NAME_PROPERTY =
new ChildPropertyDescriptor(MethodDeclaration.class, "name", SimpleName.class, MANDATORY, NO_CYCLE_RISK); //$NON-NLS-1$
/**
- * The "returnType" structural property of this node type (JLS2 API only).
+ * The "returnType" structural property of this node type (child type: {@link Type}) (JLS2 API only).
* @since 3.0
*/
public static final ChildPropertyDescriptor RETURN_TYPE_PROPERTY =
new ChildPropertyDescriptor(MethodDeclaration.class, "returnType", Type.class, MANDATORY, NO_CYCLE_RISK); //$NON-NLS-1$
/**
- * The "returnType2" structural property of this node type (added in JLS3 API).
+ * The "returnType2" structural property of this node type (child type: {@link Type}) (added in JLS3 API).
* @since 3.1
*/
public static final ChildPropertyDescriptor RETURN_TYPE2_PROPERTY =
new ChildPropertyDescriptor(MethodDeclaration.class, "returnType2", Type.class, OPTIONAL, NO_CYCLE_RISK); //$NON-NLS-1$
/**
- * The "extraDimensions" structural property of this node type.
+ * The "extraDimensions" structural property of this node type (type: {@link Integer}).
* @since 3.0
*/
public static final SimplePropertyDescriptor EXTRA_DIMENSIONS_PROPERTY =
new SimplePropertyDescriptor(MethodDeclaration.class, "extraDimensions", int.class, MANDATORY); //$NON-NLS-1$
/**
- * The "typeParameters" structural property of this node type (added in JLS3 API).
+ * The "typeParameters" structural property of this node type (element type: {@link TypeParameter}) (added in JLS3 API).
* @since 3.1
*/
public static final ChildListPropertyDescriptor TYPE_PARAMETERS_PROPERTY =
new ChildListPropertyDescriptor(MethodDeclaration.class, "typeParameters", TypeParameter.class, NO_CYCLE_RISK); //$NON-NLS-1$
/**
- * The "parameters" structural property of this node type).
+ * The "parameters" structural property of this node type (element type: {@link SingleVariableDeclaration}).
* @since 3.0
*/
public static final ChildListPropertyDescriptor PARAMETERS_PROPERTY =
new ChildListPropertyDescriptor(MethodDeclaration.class, "parameters", SingleVariableDeclaration.class, CYCLE_RISK); //$NON-NLS-1$
/**
- * The "thrownExceptions" structural property of this node type).
+ * The "thrownExceptions" structural property of this node type (element type: {@link Name}).
* @since 3.0
*/
public static final ChildListPropertyDescriptor THROWN_EXCEPTIONS_PROPERTY =
@@ -155,7 +155,7 @@ public class MethodDeclaration extends BodyDeclaration {
// SH}
/**
- * 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 =
@@ -243,7 +243,7 @@ public class MethodDeclaration extends BodyDeclaration {
/**
* The parameter declarations
- * (element type: <code>SingleVariableDeclaration</code>).
+ * (element type: {@link SingleVariableDeclaration}).
* Defaults to an empty list.
*/
private ASTNode.NodeList parameters =
@@ -264,7 +264,7 @@ public class MethodDeclaration extends BodyDeclaration {
private boolean returnType2Initialized = false;
/**
- * The type paramters (element type: <code>TypeParameter</code>).
+ * The type paramters (element type: {@link TypeParameter}).
* Null in JLS2. Added in JLS3; defaults to an empty list
* (see constructor).
* @since 3.1
@@ -280,7 +280,7 @@ public class MethodDeclaration extends BodyDeclaration {
private int extraArrayDimensions = 0;
/**
- * The list of thrown exception names (element type: <code>Name</code>).
+ * The list of thrown exception names (element type: {@link Name}).
* Defaults to an empty list.
*/
private ASTNode.NodeList thrownExceptions =
@@ -568,7 +568,7 @@ public class MethodDeclaration extends BodyDeclaration {
* declaration (added in JLS3 API). This list is non-empty for parameterized methods.
*
* @return the live list of type parameters
- * (element type: <code>TypeParameter</code>)
+ * (element type: {@link TypeParameter})
* @exception UnsupportedOperationException if this operation is used in
* a JLS2 AST
* @since 3.1
@@ -629,7 +629,7 @@ public class MethodDeclaration extends BodyDeclaration {
* method declaration.
*
* @return the live list of method parameter declarations
- * (element type: <code>SingleVariableDeclaration</code>)
+ * (element type: {@link SingleVariableDeclaration})
*/
public List parameters() {
return this.parameters;
@@ -665,7 +665,7 @@ public class MethodDeclaration extends BodyDeclaration {
* declaration.
*
* @return the live list of exception names
- * (element type: <code>Name</code>)
+ * (element type: {@link Name})
*/
public List thrownExceptions() {
return this.thrownExceptions;

Back to the top