public void offsetPosition(int dx, int dy) { Point p = jFrame.getLocation(); jFrame.setLocation(p.x + dx, p.y + dy); }
public Point getLocation() { return jFrame.getLocation(); }