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

Collapse All | Expand All

(-)dom/org/eclipse/jdt/core/dom/RecoveredTypeBinding.java (-1 / +1 lines)
Lines 20-26 Link Here
20
/**
20
/**
21
 * This class represents the recovered binding for a type
21
 * This class represents the recovered binding for a type
22
 */
22
 */
23
public class RecoveredTypeBinding implements ITypeBinding {
23
class RecoveredTypeBinding implements ITypeBinding {
24
24
25
	private VariableDeclaration variableDeclaration;
25
	private VariableDeclaration variableDeclaration;
26
	private Type currentType;
26
	private Type currentType;
(-)dom/org/eclipse/jdt/core/dom/RecoveredVariableBinding.java (-2 / +2 lines)
Lines 12-23 Link Here
12
12
13
import org.eclipse.jdt.core.IJavaElement;
13
import org.eclipse.jdt.core.IJavaElement;
14
14
15
public class RecoveredVariableBinding implements IVariableBinding {
15
class RecoveredVariableBinding implements IVariableBinding {
16
16
17
	private VariableDeclaration variableDeclaration;
17
	private VariableDeclaration variableDeclaration;
18
	private BindingResolver resolver;
18
	private BindingResolver resolver;
19
19
20
	public RecoveredVariableBinding(BindingResolver resolver, VariableDeclaration variableDeclaration) {
20
	RecoveredVariableBinding(BindingResolver resolver, VariableDeclaration variableDeclaration) {
21
		this.resolver = resolver;
21
		this.resolver = resolver;
22
		this.variableDeclaration = variableDeclaration;
22
		this.variableDeclaration = variableDeclaration;
23
	}
23
	}

Return to bug 178607