| Modifier and Type | Field and Description |
|---|---|
static char |
ATOM |
static java.lang.String |
QUARK_SEPARATOR |
| Constructor and Description |
|---|
AtomSubparser() |
| Modifier and Type | Method and Description |
|---|---|
static AtomSubparser |
getInstance() |
Token.TokenType |
getTokenType(java.lang.String tokenString)
Asks the subparser to provide a TokenType for the given token.
|
boolean |
matches(java.lang.String music)
Indicates whether the subparser should be responsible for parsing the given music string.
|
int |
parse(java.lang.String music,
StaccatoParserContext context)
Parses the given music string.
|
public static final char ATOM
public static final java.lang.String QUARK_SEPARATOR
public static AtomSubparser getInstance()
public boolean matches(java.lang.String music)
Subparserpublic Token.TokenType getTokenType(java.lang.String tokenString)
SubparsergetTokenType in interface SubparsertokenString - The Staccato token to map to a typepublic int parse(java.lang.String music,
StaccatoParserContext context)
Subparser