document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //Window.java   MrG 2011.0920
  2. import java.awt.Rectangle;
  3. public class Window
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         Rectangle box = new Rectangle(10,10,20,30);
  8.         System.out.println(box);
  9.         box.translate(20,0);
  10.         System.out.println(box);
  11.         box.translate(0,30);
  12.         System.out.println(box);
  13.         box.translate(-20,0);
  14.         System.out.println(box);
  15.     }
  16. }
');