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

Collapse All | Expand All

(-)model/org/eclipse/jdt/core/compiler/ReconcileContext.java (-2 / +19 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2009 IBM Corporation and others.
2
 * Copyright (c) 2005, 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 118-124 Link Here
118
public boolean isResolvingBindings() {
118
public boolean isResolvingBindings() {
119
	return this.operation.resolveBindings;
119
	return this.operation.resolveBindings;
120
}
120
}
121
121
/**
122
 * Returns whether the reconcile operation has statement recovery enabled.
123
 *
124
 * @return whether the reconcile operation has statement recovery enabled
125
 * @since 3.6
126
 */
127
public boolean hasStatementRecovery() {
128
	return (this.operation.reconcileFlags & ICompilationUnit.ENABLE_STATEMENTS_RECOVERY) != 0;
129
}
130
/**
131
 * Returns whether the reconcile operation has ignore method bodies enabled.
132
 *
133
 * @return whether the reconcile operation has ignore method bodies enabled
134
 * @since 3.6
135
 */
136
public boolean hasIgnoreMethodBodies() {
137
	return (this.operation.reconcileFlags & ICompilationUnit.IGNORE_METHOD_BODIES) != 0;
138
}
122
/**
139
/**
123
 * Returns the delta describing the change to the working copy being reconciled.
140
 * Returns the delta describing the change to the working copy being reconciled.
124
 * Returns <code>null</code> if there is no change.
141
 * Returns <code>null</code> if there is no change.

Return to bug 130000