コード例 #1
0
 public void offsetPosition(int dx, int dy) {
   Point p = jFrame.getLocation();
   jFrame.setLocation(p.x + dx, p.y + dy);
 }
コード例 #2
0
 public Point getLocation() {
   return jFrame.getLocation();
 }