Overrides Point2D.Double setLocation method. @param x the x position @param y the y position
(double x, double y)
| 165 | * @param y the y position |
| 166 | */ |
| 167 | @Override |
| 168 | public void setLocation(double x, double y) { |
| 169 | if ((getX() == x) && (getY() == y)) { |
| 170 | return; |
| 171 | } |
| 172 | super.setLocation(x, y); |
| 173 | if (support != null) { // VectorStep |
| 174 | support.firePropertyChange("location", null, this); //$NON-NLS-1$ |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Gets the frame number this TPoint uses for coordinate system transforms and |