From: Ian Taylor <###@###.###>
This does not look like form output to me.
A bug
JDK 1.0
The inside function has a bug :-
/**
* Checks whether a specified x,y location is "inside" this
* Component. By default, x and y are inside an Component if
* they fall within the bounding box of that Component.
* @param x the x coordinate
* @param y the y coordinate
* @see #locate
*/
public synchronized boolean inside(int x, int y) {
return (x >= 0) && ((x-this.x) < width) && (y >= 0) && ((y-this.y) < height);
}
if x < this.x and y < this.y this function will always return true
++++++
the following code however works OK :-
public synchronized boolean inside(int x, int y) {
int xrel, yrel;
xrel = (x-location().x);
yrel = (y-location().y);
return (xrel >= 0) && (xrel < size().width) && (yrel >= 0) &&
(yrel < size().height);
}
This does not look like form output to me.
A bug
JDK 1.0
The inside function has a bug :-
/**
* Checks whether a specified x,y location is "inside" this
* Component. By default, x and y are inside an Component if
* they fall within the bounding box of that Component.
* @param x the x coordinate
* @param y the y coordinate
* @see #locate
*/
public synchronized boolean inside(int x, int y) {
return (x >= 0) && ((x-this.x) < width) && (y >= 0) && ((y-this.y) < height);
}
if x < this.x and y < this.y this function will always return true
++++++
the following code however works OK :-
public synchronized boolean inside(int x, int y) {
int xrel, yrel;
xrel = (x-location().x);
yrel = (y-location().y);
return (xrel >= 0) && (xrel < size().width) && (yrel >= 0) &&
(yrel < size().height);
}
- relates to
-
JDK-1244154 fp.bugs 4175 Container.locate call to inside can cause misdelivered events
-
- Closed
-