org.extex.unit.tex.register.count
Class Integer
java.lang.Object
org.extex.interpreter.type.AbstractCode
org.extex.interpreter.type.AbstractAssignment
org.extex.unit.tex.register.count.Integer
- All Implemented Interfaces:
- java.io.Serializable, Code
public class Integer
- extends AbstractAssignment
This class provides an implementation for the primitive \integer.
The Primitive \integer
The primitive \integer can be used to define a control sequence as
alias for an integer register. The control sequence can be used wherever a
count is expected afterwards.
The primitive \integer is an assignment. Thus the settings of
\afterassignment and \globaldefs are applied.
The prefix \global can be used to make the assignment to the new
control sequence global instead of the group-local assignment which is the
default.
Syntax
The formal description of this primitive is the following:
〈integer〉
→ 〈optional prefix〉 \integer 〈control sequence〉 〈equals〉 〈number〉
〈optional prefix〉
→
| \global 〈optional prefix〉
Examples
\integer\abc=45
\integer\abc 33
\integer\abc=-12
- Version:
- $Revision: 4770 $
- Author:
- Gerd Neugebauer
- See Also:
- Serialized Form
|
Field Summary |
protected static long |
serialVersionUID
The constant serialVersionUID contains the id for
serialization. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
serialVersionUID
protected static final long serialVersionUID
- The constant serialVersionUID contains the id for
serialization.
- See Also:
- Constant Field Values
Integer
public Integer(CodeToken token)
- Creates a new object.
- Parameters:
token - the initial token for the primitive
assign
public void assign(Flags prefix,
Context context,
TokenSource source,
Typesetter typesetter)
throws HelpingException,
TypesetterException
- The method assign is the core of the functionality of
execute().
This method is preferable to execute() since the
execute() method provided in this class takes care of
\afterassignment and \globaldefs as well.
- Specified by:
assign in class AbstractAssignment
- Parameters:
prefix - the prefix controlling the executioncontext - the interpreter contextsource - the token sourcetypesetter - the typesetter
- Throws:
HelpingException - in case of an error
TypesetterException - in case of an error in the typesetter- See Also:
AbstractAssignment.assign(
org.extex.interpreter.Flags, org.extex.interpreter.context.Context,
org.extex.interpreter.TokenSource, org.extex.typesetter.Typesetter)