Uses of Class
org.extex.pdf.api.action.ActionSpec

Packages that use ActionSpec
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.pdf.api This package contains utility classes for ExTeX's pdfTeX mode. 
org.extex.pdf.api.action This package contains classes for action spec. 
org.extex.pdf.api.node This package contains the basic data types for nodes targeted towards a pdfTeX-compatible back-end. 
 

Uses of ActionSpec in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type ActionSpec
 void PdfDocumentWriter.pdfcatalog(java.lang.String text, ActionSpec action)
          Add some material to the PDF catalog.
 void PdfDocumentWriter.pdfoutline(ActionSpec action, long count, java.lang.String text)
          Insert some outline into the PDF output.
 

Uses of ActionSpec in org.extex.pdf.api
 

Methods in org.extex.pdf.api with parameters of type ActionSpec
 void PdftexSupport.pdfcatalog(java.lang.String text, ActionSpec action)
          Add some material to the PDF catalog.
 void PdftexSupport.pdfoutline(ActionSpec action, long count, java.lang.String text)
          Insert some outline into the PDF output.
 

Uses of ActionSpec in org.extex.pdf.api.action
 

Subclasses of ActionSpec in org.extex.pdf.api.action
 class GotoActionSpec
          This class provides an abstract base for goto actions in PDF.
 class GotoIdActionSpec
          This is the a goto action with id for PDF.
 class GotoPageActionSpec
          This class represents the action to address a certain page.
 class ThreadActionSpec
          This class represents a thread action spec.
 class UserActionSpec
          This class represents a user action of PDF.
 

Methods in org.extex.pdf.api.action that return ActionSpec
static ActionSpec ActionSpec.parseActionSpec(Context context, TokenSource source, Typesetter typesetter, CodeToken primitive)
          Parse an action spec.
static ActionSpec UserActionSpec.parseActionSpec(Context context, TokenSource source, Typesetter typesetter, CodeToken name)
          Parse a user action spec.
static ActionSpec GotoActionSpec.parseActionSpec(Context context, TokenSource source, Typesetter typesetter, CodeToken primitive)
          Parse a goto action spec.
static ActionSpec ThreadActionSpec.parseActionSpec(Context context, TokenSource source, Typesetter typesetter, CodeToken primitive)
          Parse a thread action spec.
 

Uses of ActionSpec in org.extex.pdf.api.node
 

Methods in org.extex.pdf.api.node that return ActionSpec
 ActionSpec PdfStartLink.getAction()
          Getter for action specification.
 

Constructors in org.extex.pdf.api.node with parameters of type ActionSpec
PdfStartLink(RuleNode rule, java.lang.String attr, ActionSpec action)
          Creates a new object.