|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Catcode | |
|---|---|
| org.extex.interpreter.context | This package contains the container for data in the interpreter. |
| org.extex.interpreter.max.context | This package contains a reference implementation for the
Context. |
| org.extex.scanner.api | This package contains the scanner for ExTeX. |
| org.extex.scanner.type | This package contains the types for the scanner of ExTeX. |
| org.extex.scanner.type.token | This package contains the token types for the scanner of ExTeX. |
| Uses of Catcode in org.extex.interpreter.context |
|---|
| Methods in org.extex.interpreter.context with parameters of type Catcode | |
|---|---|
void |
Context.setCatcode(UnicodeChar c,
Catcode catcode,
boolean global)
Setter for the catcode of a character in the specified groups. |
| Uses of Catcode in org.extex.interpreter.max.context |
|---|
| Methods in org.extex.interpreter.max.context that return Catcode | |
|---|---|
Catcode |
GroupImpl.getCatcode(UnicodeChar c)
Getter for the category code of a character. |
Catcode |
Group.getCatcode(UnicodeChar c)
Getter for the catcode of a character. |
Catcode |
ContextImpl.getCatcode(UnicodeChar uc)
Get the Catcode for a given Unicode character. |
| Methods in org.extex.interpreter.max.context with parameters of type Catcode | |
|---|---|
void |
GroupImpl.setCatcode(UnicodeChar uc,
Catcode code,
boolean global)
Setter for the catcode of a character in the specified groups. |
void |
Group.setCatcode(UnicodeChar c,
Catcode code,
boolean global)
Setter for the catcode of a character in the specified groups. |
void |
ContextImpl.setCatcode(UnicodeChar c,
Catcode catcode,
boolean global)
Setter for the catcode of a character in the specified groups. |
| Uses of Catcode in org.extex.scanner.api |
|---|
| Methods in org.extex.scanner.api that return Catcode | |
|---|---|
Catcode |
Tokenizer.getCatcode(UnicodeChar c)
Getter for the category code of a character. |
| Uses of Catcode in org.extex.scanner.type |
|---|
| Fields in org.extex.scanner.type declared as Catcode | |
|---|---|
static Catcode |
Catcode.ACTIVE
The constant ACTIVE contains the unique object representing the active catcode. |
static Catcode |
Catcode.COMMENT
The constant COMMENT contains the unique object representing the comment catcode. |
static Catcode |
Catcode.CR
The constant CR contains the unique object representing the cr catcode. |
static Catcode |
Catcode.ESCAPE
The constant ESCAPE contains the unique object representing the escape catcode used to initiate control sequences. |
static Catcode |
Catcode.IGNORE
The constant IGNORE contains the unique object representing the ignore catcode. |
static Catcode |
Catcode.INVALID
The constant INVALID contains the unique object representing the invalid catcode. |
static Catcode |
Catcode.LEFTBRACE
The constant LEFTBRACE contains the unique object representing the left brace catcode. |
static Catcode |
Catcode.LETTER
The constant LETTER contains the unique object representing the letter catcode. |
static Catcode |
Catcode.MACROPARAM
The constant MACROPARAM contains the unique object representing the macro parameter catcode. |
static Catcode |
Catcode.MATHSHIFT
The constant MATHSHIFT contains the unique object representing the math shift catcode. |
static Catcode |
Catcode.OTHER
The constant OTHER contains the unique object representing the other catcode. |
static Catcode |
Catcode.RIGHTBRACE
The constant RIGHTBRACE contains the unique object representing the right brace catcode. |
static Catcode |
Catcode.SPACE
The constant SPACE contains the unique object representing the space catcode. |
static Catcode |
Catcode.SUBMARK
The constant SUBMARK contains the unique object representing the sub mark catcode. |
static Catcode |
Catcode.SUPMARK
The constant SUPMARK contains the unique object representing the super mark catcode. |
static Catcode |
Catcode.TABMARK
The constant TABMARK contains the unique object representing the tab mark catcode. |
| Methods in org.extex.scanner.type that return Catcode | |
|---|---|
static Catcode |
Catcode.toCatcode(int theCode)
Return a catcode for a given numerical value. |
| Methods in org.extex.scanner.type with parameters of type Catcode | |
|---|---|
static int |
Catcode.getCode(Catcode cc)
Get the numerical representation for the Catcode. |
| Uses of Catcode in org.extex.scanner.type.token |
|---|
| Methods in org.extex.scanner.type.token that return Catcode | |
|---|---|
Catcode |
SpaceToken.getCatcode()
Getter for the catcode. |
Catcode |
ActiveCharacterToken.getCatcode()
Getter for the catcode. |
Catcode |
LeftBraceToken.getCatcode()
Getter for the catcode. |
Catcode |
MathShiftToken.getCatcode()
Getter for the catcode. |
Catcode |
MacroParamToken.getCatcode()
Getter for the catcode. |
Catcode |
SupMarkToken.getCatcode()
Getter for the catcode. |
Catcode |
OtherToken.getCatcode()
Getter for the catcode. |
Catcode |
TabMarkToken.getCatcode()
Getter for the catcode. |
Catcode |
Token.getCatcode()
Getter for the catcode. |
Catcode |
RightBraceToken.getCatcode()
Getter for the catcode. |
Catcode |
ControlSequenceToken.getCatcode()
Getter for the catcode. |
Catcode |
CrToken.getCatcode()
Getter for the catcode. |
Catcode |
SubMarkToken.getCatcode()
Getter for the catcode. |
abstract Catcode |
AbstractToken.getCatcode()
Getter for the catcode. |
Catcode |
LetterToken.getCatcode()
Getter for the catcode. |
| Methods in org.extex.scanner.type.token with parameters of type Catcode | |
|---|---|
Token |
TokenFactoryImpl.createToken(Catcode code,
int c,
java.lang.String namespace)
Create a new Token of the
appropriate kind. |
Token |
TokenFactory.createToken(Catcode code,
int c,
java.lang.String namespace)
Create a new Token of the
appropriate kind. |
Token |
TokenFactoryImpl.createToken(Catcode code,
UnicodeChar c,
java.lang.String namespace)
Get an instance of a token with a given Catcode and Unicode character value. |
Token |
TokenFactory.createToken(Catcode code,
UnicodeChar c,
java.lang.String namespace)
Get an instance of a token with a given Catcode and Unicode character value. |
Token |
TokenFactoryImpl.createToken(Catcode code,
UnicodeChar esc,
java.lang.String value,
java.lang.String namespace)
Get an instance of a token with a given Catcode and value. |
Token |
TokenFactory.createToken(Catcode code,
UnicodeChar esc,
java.lang.String value,
java.lang.String namespace)
Get an instance of a token with a given Catcode and value. |
boolean |
Token.eq(Catcode cc,
char c)
Compare the current token with a pair of catcode and character value. |
boolean |
ControlSequenceToken.eq(Catcode cc,
char c)
Compare the current token with a pair of catcode and character value. |
boolean |
CrToken.eq(Catcode cc,
char c)
Compare the current token with a pair of catcode and character value. |
boolean |
AbstractToken.eq(Catcode cc,
char c)
Compare the current token with a pair of catcode and character value. |
boolean |
Token.eq(Catcode cc,
java.lang.String s)
Compare the current token with a pair of catcode and String value. |
boolean |
ControlSequenceToken.eq(Catcode cc,
java.lang.String s)
Compare the current token with a pair of catcode and String value. |
boolean |
CrToken.eq(Catcode cc,
java.lang.String s)
Compare the current token with a pair of catcode and String value. |
boolean |
AbstractToken.eq(Catcode cc,
java.lang.String s)
Compare the current token with a pair of catcode and String value. |
boolean |
Token.isa(Catcode cc)
Check if the current token has a specified catcode. |
boolean |
AbstractToken.isa(Catcode cc)
Check if the current token has a specified catcode. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||