|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Catcode | |
de.dante.extex.interpreter | This package contains the macro expansion engine and all supporting classes. |
de.dante.extex.interpreter.context | This package contains the container for data in the interpreter. |
de.dante.extex.interpreter.context.impl | This package contains a reference implementation for the
Context . |
de.dante.extex.scanner.type | This package contains the types for the scanner of ExTeX. |
de.dante.extex.scanner.type.token | This package contains the token types for the scanner of ExTeX. |
Uses of Catcode in de.dante.extex.interpreter |
Methods in de.dante.extex.interpreter that return Catcode | |
Catcode |
Tokenizer.getCatcode(UnicodeChar c)
Getter for the category code of a character. |
Uses of Catcode in de.dante.extex.interpreter.context |
Methods in de.dante.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 de.dante.extex.interpreter.context.impl |
Methods in de.dante.extex.interpreter.context.impl that return Catcode | |
Catcode |
GroupImpl.getCatcode(UnicodeChar c)
|
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 de.dante.extex.interpreter.context.impl with parameters of type Catcode | |
void |
GroupImpl.setCatcode(UnicodeChar uc,
Catcode code,
boolean global)
|
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 cc,
boolean global)
|
Uses of Catcode in de.dante.extex.scanner.type |
Fields in de.dante.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 param 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 de.dante.extex.scanner.type that return Catcode | |
static Catcode |
Catcode.toCatcode(int theCode)
Return a catcode for a given numerical value. |
Methods in de.dante.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 de.dante.extex.scanner.type.token |
Methods in de.dante.extex.scanner.type.token that return Catcode | |
Catcode |
Token.getCatcode()
Getter for the catcode. |
Catcode |
TabMarkToken.getCatcode()
|
Catcode |
SupMarkToken.getCatcode()
|
Catcode |
SubMarkToken.getCatcode()
|
Catcode |
SpaceToken.getCatcode()
|
Catcode |
RightBraceToken.getCatcode()
|
Catcode |
OtherToken.getCatcode()
|
Catcode |
MathShiftToken.getCatcode()
|
Catcode |
MacroParamToken.getCatcode()
|
Catcode |
LetterToken.getCatcode()
|
Catcode |
LeftBraceToken.getCatcode()
|
Catcode |
CrToken.getCatcode()
|
Catcode |
ControlSequenceToken.getCatcode()
|
Catcode |
ActiveCharacterToken.getCatcode()
|
abstract Catcode |
AbstractToken.getCatcode()
This is the getter for the catcode of this token. |
Methods in de.dante.extex.scanner.type.token with parameters of type Catcode | |
Token |
TokenFactoryImpl.createToken(Catcode code,
int c,
java.lang.String namespace)
|
Token |
TokenFactoryImpl.createToken(Catcode code,
UnicodeChar esc,
java.lang.String value,
java.lang.String namespace)
|
Token |
TokenFactoryImpl.createToken(Catcode code,
UnicodeChar c,
java.lang.String namespace)
|
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. |
Token |
TokenFactory.createToken(Catcode code,
int c,
java.lang.String namespace)
Create a new Token of the
appropriate kind. |
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. |
boolean |
Token.equals(Catcode cc,
char c)
Compare the current token with a pair of catcode and character value. |
boolean |
Token.equals(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 |
CrToken.equals(Catcode cc,
char c)
|
boolean |
CrToken.equals(Catcode cc,
java.lang.String s)
|
boolean |
ControlSequenceToken.equals(Catcode cc,
char c)
|
boolean |
ControlSequenceToken.equals(Catcode cc,
java.lang.String s)
|
boolean |
AbstractToken.equals(Catcode cc,
char c)
|
boolean |
AbstractToken.equals(Catcode cc,
java.lang.String s)
|
boolean |
AbstractToken.isa(Catcode cc)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |