| Summary: | Javadoc for Dimension correction | ||
|---|---|---|---|
| Product: | [Tools] GEF | Reporter: | Miles Parker <milesparker> |
| Component: | GEF-Legacy Draw2d | Assignee: | Anthony Hunter <ahunter.eclipse> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | trivial | ||
| Priority: | P3 | CC: | ahunter.eclipse |
| Version: | unspecified | ||
| Target Milestone: | 3.5.0 (Galileo) M5 | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
Committed to HEAD. |
Sez: /** * Returns <code>true</code> if the Dimension has width or height greater than 0. * * @return <code>true</code> if this Dimension is empty * @since 2.0 */ public boolean isEmpty() { return (width <= 0) || (height <= 0); } Should say: * Returns <code>true</code> if either dimension is less than or equal to 0.