public abstract class Ink extends Object
Represents the user input as a sequence of Ink.Stroke
s
and serves as input for DigitalInkRecognizer
.
Nested Class Summary
class | Ink.Builder | Builder for the Ink
class. |
|
class | Ink.Point | A single touch point (horizontal and vertical coordinates). | |
class | Ink.Stroke | Represents a sequence of touch points between a pen-/finger-down and a pen-/finger-up events. |
Public Constructor Summary
Ink()
|
Public Method Summary
static Ink.Builder | |
abstract List<Ink.Stroke> |
getStrokes()
Returns the list of strokes.
|
Inherited Method Summary
Public Constructors
public Ink ()
Public Methods
public static Ink.Builder builder ()
Static method returning a new builder of Ink
.
public abstract List<Ink.Stroke> getStrokes ()
Returns the list of strokes.