Uses of Interface
net.sf.tomp.xtcl.Command

Packages that use Command
net.sf.tomp.xtcl   
net.sf.tomp.xtcl.command   
net.sf.tomp.xtcl.test   
 

Uses of Command in net.sf.tomp.xtcl
 

Methods in net.sf.tomp.xtcl that return Command
 Command CompilerBase.compile(CommandLineReader clr)
          Compiles commands from a CommandLineReader into a command Sequence
 Command Compiler.compile(CommandLineReader clr)
          Compiles commands from a CommandLineReader into a command Sequence
 Command CompilerBase.compile(java.io.File f)
          Compiles commands from a String
 Command CompilerBase.compile(java.lang.String s)
          Compiles commands from a String
 Command Compiler.compile(java.lang.String script)
           
 Command XTCompiler.compile(java.lang.String[] cl, CommandLineReader clr)
          The main compile method.
 Command Compiler.compile(java.lang.String[] cl, CommandLineReader clr)
           
 Command CompilerBase.compile(java.lang.String cl, CommandLineReader clr)
          Compiles commands from a String followed by a CommandLineReader into a command Sequence
 Command Compiler.compile(java.lang.String cl, CommandLineReader clr)
           
protected  Command CompilerBase.compileByNextCompiler(java.lang.String ci, java.lang.String[] cl, CommandLineReader clr)
           
 

Methods in net.sf.tomp.xtcl with parameters of type Command
protected  void CompilerBase.assertWholeLineRead(java.lang.String ci, int i, java.lang.String[] cl, Command commandToReturn)
           
 int Context.execute(Command command)
          Executes a command in the current context
 

Uses of Command in net.sf.tomp.xtcl.command
 

Classes in net.sf.tomp.xtcl.command that implement Command
 class AbstractCommand
          Base class for (almost all) built-in Commands in XTCL.
 class AbstractParametrizedVarCommand
          The base for parametrized VarCommands.
 class Call
          Calls a Function.
 class CatchCommand
          CatchCommand - does nothing when executed.
 class Cd
          Changes the working (current) directory.
 class Do
          Do a template.
 class Doc
          Creates an empty DOM tree and stores it as variable into the Context.
 class Dump
          Prints variable content.
 class DumpContext
          Dumps the Context content
 class DumpContexts
          Dumps this Context and also its ancestors.
 class Echo
          Prints a String to Context's stdout
 class End
          End command does nothing; serves just as a marker in the sequence.
 class Err
          Generates an Error with specified return (error) code
 class ExeCommand
          Executes an XTCL-external, i.e.
 class Fil
          Creates a File and puts it as variable to Context
 class FileCommand
          Abstract ancestor of File-related, i.e.
 class FilterCommand
          Command for loading and initializing a XMLFilter (XTFilter)
 class Function
          Function command
 class Help
          Prints help (just basic info :-)) on XTCL.
 class Chain
          Command to assemble and store a transformation chain
 class JavaCommand
          Executes an executable Java class (i.e. with main method)
 class JoostFilterCommand
          DOCUMENT ME!
 class JoostStyle
          DOCUMENT ME!
 class Label
          DOCUMENT ME!
 class Load
          DOCUMENT ME!
 class MyMultiFilterCommand
          DOCUMENT ME!
 class PropertiesCommand
          DOCUMENT ME!
 class PropertiesToContext
          DOCUMENT ME!
 class Remove
          A Call to a Function.
 class Ret
          DOCUMENT ME!
 class Save
          DOCUMENT ME!
 class SAXSourceCommand
          DOCUMENT ME!
 class Sequence
          A Sequence of Commands, will be executed sequentially, one-after-another
 class SetCommand
          DOCUMENT ME!
 class Str
          DOCUMENT ME!
 class Style
          DOCUMENT ME!
 class TeeFilterCommand
          DOCUMENT ME!
 class Template
          DOCUMENT ME!
 class Transform
          DOCUMENT ME!
 class TransformerFilterCommand
          DOCUMENT ME!
 class TryBlock
          DOCUMENT ME!
 class VarCommand
          DOCUMENT ME!
 class Verbose
          DOCUMENT ME!
 

Fields in net.sf.tomp.xtcl.command declared as Command
protected  Command TryBlock.command
          DOCUMENT ME!
protected  Command Function.command
          the command itself
 

Methods in net.sf.tomp.xtcl.command with parameters of type Command
 void TryBlock.setCommand(Command c)
          DOCUMENT ME!
 void Function.setCommand(Command c)
          sets the command representing the function
 void Sequence.setCommands(Command[] c)
          Set the array of Command into this Sequence
 

Uses of Command in net.sf.tomp.xtcl.test
 

Classes in net.sf.tomp.xtcl.test that implement Command
 class TestParametrizedVarCommand