1 11 12 package swingwt.awt; 13 14 15 public class Insets implements Cloneable { 16 17 public Insets() { } 18 public Insets(int top, int left, int bottom, int right) { 19 this.top = top; 20 this.left = left; 21 this.bottom = bottom; 22 this.right = right; 23 } 24 25 public int top; 26 public int left; 27 public int bottom; 28 public int right; 29 30 public Object clone() { 31 try { 32 return super.clone(); 33 } catch (Exception e) { 34 } 36 37 return null; 38 } 39 } 40 41 | Popular Tags |