de.dante.extex.interpreter.primitives.namespace
Class Export

java.lang.Object
  extended byde.dante.extex.interpreter.type.AbstractCode
      extended byde.dante.extex.interpreter.type.AbstractAssignment
          extended byde.dante.extex.interpreter.primitives.namespace.Export
All Implemented Interfaces:
Code, Localizable, java.io.Serializable

public class Export
extends AbstractAssignment

This class provides an implementation for the primitive \export.

The Primitive \export

The primitive \export takes a list of tokens and saves them away for an associated \import. The tokens in the list are either control sequence tokens or active characters. All other tokens are ignored.

The expansion text is empty. The primitive is an assignment. Thus \afterassignment interacts with the primitive in the expected way.

The definitions are usually performed local to the current group. If the prefix \global is given or the count register \globaldefs has a positive value then the definition is made globally. Usually you want to define the export as global. This is the case if the \export primitive is invoked at group level 0. Interesting special effects can be achieved when using the export statement in groups and together with a local scope definition.

This primitive is one building block for the use of name spaces in ExTeX. The central primitive for this purpose is \namespace.

Syntax

The formal description of this primitive is the following:
    ⟨export⟩
      → ⟨prefix⟩ \export ⟨replacement text⟩

    ⟨prefix⟩
      →
       |  \global  

Examples

    \export{\a\b}  

Version:
$Revision: 1.9 $
Author:
Gerd Neugebauer
See Also:
Namespace, Import, Serialized Form

Field Summary
protected static long serialVersionUID
          The constant serialVersionUID contains the id for serialization.
 
Constructor Summary
Export(java.lang.String name)
          Creates a new object.
 
Method Summary
 void assign(Flags prefix, Context context, TokenSource source, Typesetter typesetter)
          The method assign is the core of the functionality of execute().
 
Methods inherited from class de.dante.extex.interpreter.type.AbstractAssignment
execute
 
Methods inherited from class de.dante.extex.interpreter.type.AbstractCode
enableLocalization, getLocalizer, getName, isIf, isOuter, printable, printableControlSequence, readResolve, setName, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

protected static final long serialVersionUID
The constant serialVersionUID contains the id for serialization.

See Also:
Constant Field Values
Constructor Detail

Export

public Export(java.lang.String name)
Creates a new object.

Parameters:
name - the name for debugging
Method Detail

assign

public void assign(Flags prefix,
                   Context context,
                   TokenSource source,
                   Typesetter typesetter)
            throws InterpreterException
Description copied from class: AbstractAssignment
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 execution
context - the interpreter context
source - the token source
typesetter - the typesetter
Throws:
InterpreterException - in case of an error
See Also:
Code.execute( de.dante.extex.interpreter.Flags, de.dante.extex.interpreter.context.Context, de.dante.extex.interpreter.TokenSource, de.dante.extex.typesetter.Typesetter)