View | Details | Raw Unified | Return to bug 295866
Collapse All | Expand All

(-)dom/org/eclipse/jdt/core/dom/CatchClause.java (-1 / +2 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 22-27 Link Here
22
 *    <b>catch</b> <b>(</b> FormalParameter <b>)</b> Block
22
 *    <b>catch</b> <b>(</b> FormalParameter <b>)</b> Block
23
 * </pre>
23
 * </pre>
24
 *
24
 *
25
 * <p>The FormalParameter is represented by a {@link SingleVariableDeclaration}.</p>
25
 * @since 2.0
26
 * @since 2.0
26
 * @noinstantiate This class is not intended to be instantiated by clients.
27
 * @noinstantiate This class is not intended to be instantiated by clients.
27
 */
28
 */
(-)dom/org/eclipse/jdt/core/dom/EnhancedForStatement.java (-3 / +4 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 22-29 Link Here
22
 *    <b>for</b> <b>(</b> FormalParameter <b>:</b> Expression <b>)</b>
22
 *    <b>for</b> <b>(</b> FormalParameter <b>:</b> Expression <b>)</b>
23
 * 			Statement
23
 * 			Statement
24
 * </pre>
24
 * </pre>
25
 * The FormalParameter is represented by a <code>SingleVariableDeclaration</code>
25
 * 
26
 * (without an initializer).
26
 * <p>The FormalParameter is represented by a {@link SingleVariableDeclaration}
27
 * (without an initializer).</p>
27
 *
28
 *
28
 * @since 3.1
29
 * @since 3.1
29
 * @noinstantiate This class is not intended to be instantiated by clients.
30
 * @noinstantiate This class is not intended to be instantiated by clients.
(-)dom/org/eclipse/jdt/core/dom/MethodDeclaration.java (-1 / +3 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
2
 * Copyright (c) 2000, 2010 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 17-22 Link Here
17
/**
17
/**
18
 * Method declaration AST node type. A method declaration
18
 * Method declaration AST node type. A method declaration
19
 * is the union of a method declaration and a constructor declaration.
19
 * is the union of a method declaration and a constructor declaration.
20
 * 
20
 * For JLS2:
21
 * For JLS2:
21
 * <pre>
22
 * <pre>
22
 * MethodDeclaration:
23
 * MethodDeclaration:
Lines 59-64 Link Here
59
 * no modifiers). The source range extends through the last character of the
60
 * no modifiers). The source range extends through the last character of the
60
 * ";" token (if no body), or the last character of the block (if body).
61
 * ";" token (if no body), or the last character of the block (if body).
61
 * </p>
62
 * </p>
63
 * <p>The FormalParameter is represented by a {@link SingleVariableDeclaration}.</p>
62
 *
64
 *
63
 * @since 2.0
65
 * @since 2.0
64
 * @noinstantiate This class is not intended to be instantiated by clients.
66
 * @noinstantiate This class is not intended to be instantiated by clients.

Return to bug 295866