1 7 8 package java.awt; 9 10 27 28 public class PointerInfo { 29 30 private GraphicsDevice device; 31 private Point location; 32 33 36 PointerInfo(GraphicsDevice device, Point location) { 37 this.device = device; 38 this.location = location; 39 } 40 41 48 public GraphicsDevice getDevice() { 49 return device; 50 } 51 52 63 public Point getLocation() { 64 return location; 65 } 66 67 } 68 | Popular Tags |