Searched defs:hotSpot (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/
H A DCustomCursor.java40 public CustomCursor(Image cursor, Point hotSpot, String name) argument
63 hotSpot.x = hotSpot.y = 0;
77 if (hotSpot.x >= width || hotSpot.y >= height || hotSpot.x < 0 || hotSpot.y < 0) {
78 throw new IndexOutOfBoundsException("invalid hotSpot");
97 createNativeCursor(image, pixels, width, height, hotSpot.x, hotSpot
[all...]
H A DHToolkit.java225 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
H A DHeadlessToolkit.java247 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCCustomCursor.java42 public CCustomCursor(final Image cursor, final Point hotSpot, final String name) throws IndexOutOfBoundsException, HeadlessException { argument
45 fHotspot = hotSpot;
83 throw new IndexOutOfBoundsException("invalid hotSpot");
H A DLWCToolkit.java238 public Cursor createCustomCursor(final Image cursor, final Point hotSpot, final String name) throws IndexOutOfBoundsException, HeadlessException { argument
239 return new CCustomCursor(cursor, hotSpot, name);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCustomCursor.java40 public XCustomCursor(Image cursor, Point hotSpot, String name) argument
42 super(cursor, hotSpot, name);
H A DXToolkit.java1056 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
1058 return new XCustomCursor(cursor, hotSpot, name);
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11CustomCursor.java41 public X11CustomCursor(Image cursor, Point hotSpot, String name) argument
43 super(cursor, hotSpot, name);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWCustomCursor.java43 public WCustomCursor(Image cursor, Point hotSpot, String name) argument
45 super(cursor, hotSpot, name);
H A DWToolkit.java729 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
731 return new WCustomCursor(cursor, hotSpot, name);
/openjdk7/jdk/test/java/awt/Toolkit/Headless/ExceptionContract/
H A DExceptionContract.java93 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
96 return super.createCustomCursor(cursor, hotSpot, name);
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java552 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
554 return null; //return new MCustomCursor(cursor, hotSpot, name);
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1465 * @param hotSpot the X and Y of the large cursor's hot spot; the
1466 * hotSpot values must be less than the Dimension returned by
1469 * @exception IndexOutOfBoundsException if the hotSpot values are outside
1476 public Cursor createCustomCursor(Image cursor, Point hotSpot, String name) argument
1482 createCustomCursor(cursor, hotSpot, name);

Completed in 62 milliseconds