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

(-)dom/org/eclipse/jdt/core/dom/AST.java (+1 lines)
Lines 301-306 Link Here
301
     * </p>
301
     * </p>
302
     * 
302
     * 
303
 	 * @param level the API level; one of the LEVEL constants
303
 	 * @param level the API level; one of the LEVEL constants
304
	 * @return new AST instance following the specified set of API rules. 
304
     * @since 3.0
305
     * @since 3.0
305
	 */
306
	 */
306
	public static AST newAST(int level) {
307
	public static AST newAST(int level) {
(-)dom/org/eclipse/jdt/core/dom/ASTNode.java (+1 lines)
Lines 1530-1535 Link Here
1530
	 * </ul>
1530
	 * </ul>
1531
	 * 
1531
	 * 
1532
	 * @param property the property
1532
	 * @param property the property
1533
	 * @param value the property value
1533
	 * @exception RuntimeException if this node does not have the
1534
	 * @exception RuntimeException if this node does not have the
1534
	 * given property, or if the given property cannot be set
1535
	 * given property, or if the given property cannot be set
1535
	 * @since 3.0
1536
	 * @since 3.0
(-)dom/org/eclipse/jdt/core/dom/ASTParser.java (+1 lines)
Lines 107-112 Link Here
107
     *  
107
     *  
108
 	 * @param level the API level; one of the LEVEL constants
108
 	 * @param level the API level; one of the LEVEL constants
109
     * declared on <code>AST</code>
109
     * declared on <code>AST</code>
110
	 * @return new ASTParser instance
110
	 */
111
	 */
111
	public static ASTParser newParser(int level) {
112
	public static ASTParser newParser(int level) {
112
		return new ASTParser(level);
113
		return new ASTParser(level);
(-)search/org/eclipse/jdt/core/search/SearchRequestor.java (+1 lines)
Lines 35-40 Link Here
35
	 * Accepts the given search match.
35
	 * Accepts the given search match.
36
	 *
36
	 *
37
	 * @param match the found match
37
	 * @param match the found match
38
	 * @throws CoreException
38
	 */
39
	 */
39
	// TODO (jerome) - remove throws CoreException
40
	// TODO (jerome) - remove throws CoreException
40
	public abstract void acceptSearchMatch(SearchMatch match) throws CoreException;
41
	public abstract void acceptSearchMatch(SearchMatch match) throws CoreException;

Return to bug 64329