View | Details | Raw Unified | Return to bug 53024 | Differences between
and this patch

Collapse All | Expand All

(-)dom/org/eclipse/jdt/core/dom/ASTVisitor.java (-2 / +1 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
2
 * Copyright (c) 2000, 2009 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 152-158 Link Here
152
152
153
	/**
153
	/**
154
	 * Visits the given AST node prior to the type-specific visit (before <code>visit</code>).
154
	 * Visits the given AST node prior to the type-specific visit (before <code>visit</code>).
155
	 * This API is still under discussion, see https://bugs.eclipse.org/53024 .
156
	 * <p>
155
	 * <p>
157
	 * The default implementation calls {@link #preVisit(ASTNode)} and then
156
	 * The default implementation calls {@link #preVisit(ASTNode)} and then
158
	 * returns true. Subclasses may reimplement.
157
	 * returns true. Subclasses may reimplement.
(-)dom/org/eclipse/jdt/core/dom/NodeFinder.java (-2 / +1 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2000, 2008 IBM Corporation and others.
2
 * Copyright (c) 2000, 2009 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 21-27 Link Here
21
21
22
/**
22
/**
23
 * For a given range, finds the covered node and the covering node.
23
 * For a given range, finds the covered node and the covering node.
24
 * This API is still under discussion, see https://bugs.eclipse.org/53024 .
25
 *
24
 *
26
 * @since 3.5
25
 * @since 3.5
27
 */
26
 */

Return to bug 53024