Class myCursors

java.lang.Object
  extended by myCursors

 class myCursors
extends java.lang.Object

This method basically uses a customized mouse pointer for use in PAINT. It looks in "/images/myPencil.gif". It seems to be missing a period in front of /images so therefore that might be a bug. There are no OS/Hardware dependencies or variances. There are no security constraints. There are no references to any external specifications.


Field Summary
(package private)  java.awt.Image img
          This creates a variable of class Image called img.
 java.awt.Cursor pencilCursor
          This field is a creation of a custom cursor to be used in PAINT.
(package private)  java.awt.Toolkit tk
          This is the class type Toolkit.
 
Constructor Summary
myCursors()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

tk

java.awt.Toolkit tk
This is the class type Toolkit. It initializes it to get the default Toolkit. What is a Toolkit you may ask? It is from java.awt. The official explanation is: "This class is the abstract superclass of all actual implementations of the Abstract Window Toolkit." It should work with all operating systems and hardware. There are no variances and no security constraints.


img

java.awt.Image img
This creates a variable of class Image called img. This image is a representation of the "/images/myPencil.gif" file. It should work with all operating systems and hardware. There are no variances and no security constraints.


pencilCursor

public java.awt.Cursor pencilCursor
This field is a creation of a custom cursor to be used in PAINT. It is entitled "OUR CURSOR" for now.

Constructor Detail

myCursors

myCursors()