Package | Description |
---|---|
com.scriptel.easyscript |
This package contains all of the required logic to parse output from
Scriptel ScripTouch EasyScript products.
|
Modifier and Type | Class and Description |
---|---|
class |
CardSwipeInvalidException
This exception is thrown when there is a problem parsing a card swipe string.
|
Modifier and Type | Method and Description |
---|---|
protected int |
EasyScriptCompressedDecoder.convertBodnarCharsToValue(java.lang.StringBuilder signature)
This method reads characters from signature and puts them in 9-bit binary value
It requires 2 or 3 characters and should only be given as many.
|
protected Coordinate |
EasyScriptUncompressedDecoder.decodePoint(char[] ePoint)
This method attempts to take a four character point and decode it using
the protocol's value tables.
|
int |
KeyboardDecoder.getValue(char c)
Searches the tables for a value represented by the character.
|
int[] |
KeyboardDecoder.getValues(char[] chrs)
This method takes four characters and attempts to decode them into
an x and y coordinate component used with the uncompressed EasyScript
protocol.
|
void |
EasyScript.parse(char chr)
This method allows you to stream in a set of characters and the library
will attempt to decode signatures and card swipes as the characters are
passed in.
|
void |
EasyScript.parse(java.awt.event.KeyEvent evt)
This method attempts to parse a stream of keyboard events coming into a
JFrame and turning them into characters which then get passed to parse(char c).
|
void |
EasyScriptCompressedDecoder.parseSignature(char ch)
This method parses the signature character by character to decode it.
|
void |
EasyScriptDecoder.parseSignature(char ch)
This will be called by EasyScript when a character is received for this
decoder.
|
void |
EasyScriptUncompressedDecoder.parseSignature(char ch)
This method parses the signature character by character to decode it.
|
Signature |
EasyScript.parseSignature(java.lang.String sig)
This method takes an EasyScript string and attempts to parse it into
a signature object.
|