Generated by
JDiff

Class java.awt.geom.Rectangle2D

Documentation changed from old to new.

Changed Methods
Rectangle2D createIntersection(Rectangle2D) Documentation changed from old to new.
Returns a new Rectangle2D object representing the intersection of this Rectangle2D with the specified Rectangle2D.
Rectangle2D createUnion(Rectangle2D) Documentation changed from old to new.
Returns a new Rectangle2D object representing the union of this Rectangle2D with the specified Rectangle2D.
boolean equals(Object) Documentation changed from old to new.
Determines whether or not the specified Object is equal to this Rectangle2D.
Rectangle2D getBounds2D() Documentation changed from old to new.
Returns the high precision bounding box of this Rectangle2D.
void intersect(Rectangle2D, Rectangle2D, Rectangle2D) Documentation changed from old to new.
Intersects the pair of specified source Rectangle2D objects and puts the result into the specified destination Rectangle2D object.
void union(Rectangle2D, Rectangle2D, Rectangle2D) Documentation changed from old to new.
Unions the pair of source Rectangle2D objects and puts the result into the specified destination Rectangle2D object.
boolean contains(double, double) Documentation changed from old to new.
Tests if a specified coordinate is inside the boundary of this Rectangle2D.
boolean contains(double, double, double, double) Documentation changed from old to new.
Tests if the interior of this Rectangle2D entirely contains the specified set of rectangular coordinates.
PathIterator getPathIterator(AffineTransform) Documentation changed from old to new.
Returns an iteration object that defines the boundary of this Rectangle2D.
PathIterator getPathIterator(AffineTransform, double) Documentation changed from old to new.
Returns an iteration object that defines the boundary of the flattened Rectangle2D.
boolean intersects(double, double, double, double) Documentation changed from old to new.
Tests if the interior of this Rectangle2D intersects the interior of a specified set of rectangular coordinates.
boolean intersectsLine(double, double, double, double) Documentation changed from old to new.
Tests if the specified line segment intersects the interior of this Rectangle2D.
boolean intersectsLine(Line2D) Documentation changed from old to new.
Tests if the specified line segment intersects the interior of this Rectangle2D.
int outcode(double, double) Documentation changed from old to new.
Determines where the specified coordinates lie with respect to this Rectangle2D.
int outcode(Point2D) Documentation changed from old to new.
Determines where the specified Point2D lies with respect to this Rectangle2D.
void setFrame(double, double, double, double) Documentation changed from old to new.
Sets the location and size of the outer bounds of this Rectangle2D to the specified rectangular values.
void setRect(double, double, double, double) Documentation changed from old to new.
Sets the location and size of this Rectangle2D to the specified double values.
void setRect(Rectangle2D) Documentation changed from old to new.
Sets this Rectangle2D to be the same as the specified Rectangle2D.
 

Changed Fields
int OUT_BOTTOM Documentation changed from old to new.
The bitmask that indicates that a point lies below this Rectangle2D.
int OUT_LEFT Documentation changed from old to new.
The bitmask that indicates that a point lies to the left of this Rectangle2D.
int OUT_RIGHT Documentation changed from old to new.
The bitmask that indicates that a point lies to the right of this Rectangle2D.
int OUT_TOP Documentation changed from old to new.
The bitmask that indicates that a point lies above this Rectangle2D.