Uses of Class
ch.claudio.pen.input.PenState

Packages that use PenState
ch.claudio.pen   
ch.claudio.pen.input   
 

Uses of PenState in ch.claudio.pen
 

Methods in ch.claudio.pen that return PenState
 PenState InkDot.getState()
           
 

Methods in ch.claudio.pen with parameters of type PenState
 InkDot InkStore.newDot(int xArg, int yArg, PenState stateArg, long time)
          Create a dot, compute velocity and acceleration and store it.
 

Constructors in ch.claudio.pen with parameters of type PenState
InkDot(int xArg, int yArg, PenState stateArg, InkDot previousArg, long timeArg)
          Create a new ink dot with all information.
 

Uses of PenState in ch.claudio.pen.input
 

Fields in ch.claudio.pen.input declared as PenState
 PenState Event.penState
          Pen state
 

Methods in ch.claudio.pen.input that return PenState
static PenState PenState.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PenState[] PenState.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Constructors in ch.claudio.pen.input with parameters of type PenState
Event(int lastX, int lastY, PenState lastState)
          Create a new event and initialise it with the given last coordinate values.