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

(-)model/org/eclipse/jdt/core/IJavaElement.java (-2 / +3 lines)
Lines 349-357 Link Here
349
349
350
	/**
350
	/**
351
	 * Returns whether the structure of this element is known. For example, for a
351
	 * Returns whether the structure of this element is known. For example, for a
352
	 * compilation unit that could not be parsed, <code>false</code> is returned.
352
	 * compilation unit that has syntax errors, <code>false</code> is returned.
353
	 * If the structure of an element is unknown, navigations will return reasonable
353
	 * If the structure of an element is unknown, navigations will return reasonable
354
	 * defaults. For example, <code>getChildren</code> will return an empty collection.
354
	 * defaults. For example, <code>getChildren</code> for a compilation unit with
355
	 * syntax errors will return a collection of the children that could be parsed.
355
	 * <p>
356
	 * <p>
356
	 * Note: This does not imply anything about consistency with the
357
	 * Note: This does not imply anything about consistency with the
357
	 * underlying resource/buffer contents.
358
	 * underlying resource/buffer contents.

Return to bug 129560