JTablet 1.2.0 API

Uses of Class
cello.jtablet.event.TabletEvent.Type

Packages that use TabletEvent.Type
cello.jtablet.event Provides interfaces and classes for dealing with tablet events on AWT components. 
 

Uses of TabletEvent.Type in cello.jtablet.event
 

Methods in cello.jtablet.event that return TabletEvent.Type
 TabletEvent.Type TabletEvent.getType()
          Returns the TabletEvent.Type for this event.
static TabletEvent.Type TabletEvent.Type.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TabletEvent.Type[] TabletEvent.Type.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in cello.jtablet.event with parameters of type TabletEvent.Type
 TabletEvent TabletEvent.withType(TabletEvent.Type type)
          Returns a copy of this TabletEvent with a new event TabletEvent.Type.
 

Constructors in cello.jtablet.event with parameters of type TabletEvent.Type
TabletEvent(Component source, TabletEvent.Type type, long when, int modifiers, int rawTabletButtonMask, TabletDevice device, float x, float y)
          Constructs a new TabletEvent with some of the trimmings...
TabletEvent(Component source, TabletEvent.Type type, long when, int modifiers, int rawTabletButtonMask, TabletDevice device, float x, float y, float pressure, float tiltX, float tiltY, float sidePressure, float rotation, int button)
          Constructs a new TabletEvent with all the trimmings...
TabletEvent(Component source, TabletEvent.Type type, long when, int modifiers, TabletDevice device, float x, float y, float rotation, float deltaX, float deltaY, float zoom)
          Constructs a new TabletEvent with some of the trimmings...
TabletEvent(Component source, TabletEvent.Type type, long when, int modifiers, TabletDevice device, float x, float y, float pressure, float tiltX, float tiltY, float sidePressure, float rotation, float deltaX, float deltaY, float zoom, int button, int rawTabletButtonMask)
          Constructs a new TabletEvent with all the trimmings...
TabletEvent(Component source, TabletEvent.Type type, long when, TabletDevice device, int modifiers, float x, float y, int button)
          Constructs a new TabletEvent with some of the trimmings...
TabletEvent(MouseEvent e, TabletEvent.Type type, TabletDevice device)
          Wrap a MouseEvent as a TabletEvent.
TabletEvent(MouseEvent e, TabletEvent.Type type, TabletDevice device, Component c, float x, float y)
          Wrap a MouseEvent as a TabletEvent.
TabletEvent(TabletEvent original, TabletEvent.Type newType)
          Constructs a TabletEvent based on another with a new event TabletEvent.Type.
 


JTablet 1.2.0 API