Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-1240721

fp.bugs 3408 component.inside always true if x<this.x and y<this.y

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P3 P3
    • None
    • 1.0
    • tools
    • sparc
    • solaris_2.5

       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);
          }

            dbowensunw David Bowen (Inactive)
            bhagen Benjamin Hagen (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: