Uses of Class
net.sf.tomp.xtcl.Context

Packages that use Context
net.sf.tomp.xtcl   
net.sf.tomp.xtcl.command   
net.sf.tomp.xtcl.filter   
net.sf.tomp.xtcl.resolver   
 

Uses of Context in net.sf.tomp.xtcl
 

Fields in net.sf.tomp.xtcl declared as Context
protected  Context InteractiveExecutor.context
          Context for commands compilation and execution
 

Methods in net.sf.tomp.xtcl that return Context
 Context CompilerBase.getContext()
           
 Context Compiler.getContext()
           
 Context Context.getPrevious()
          Returns the previous (parent) Context
 

Methods in net.sf.tomp.xtcl with parameters of type Context
static void CompilerFactory.cloneCompilers(Context srcContext, Context targetContext)
          Clones all compilers to a target Context
static Compiler CompilerFactory.createCompiler(java.lang.Class compClass, Context context)
          Similar to createCompiler but creates Compiler with the specified Class compClass
static Compiler CompilerFactory.createCompiler(java.lang.String compClassName, Context context)
          Similar to createDefaultCompilers but creates Compiler with the specified classname compClassName
static void CompilerFactory.createDefaultCompilers(Context context)
          Create the default Compiler.
 int Command.execute(Context c)
          Execute this command within Context c
 void CompilerBase.setContext(Context context)
           
 void Compiler.setContext(Context context)
           
 

Constructors in net.sf.tomp.xtcl with parameters of type Context
Context(Context p)
          Creates a new instance of Context, copying all data from the given parent Context.
InteractiveExecutor(Context c)
          Creates a new instance of InteractiveExecutor
 

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

Methods in net.sf.tomp.xtcl.command with parameters of type Context
 int AbstractCommand.done(Context c, int i)
          Executed always after the command itself.
 int Verbose.execute(Context c)
           
 int TryBlock.execute(Context context)
          DOCUMENT ME!
 int TransformerFilterCommand.execute(Context context)
          DOCUMENT ME!
 int Transform.execute(Context context)
          DOCUMENT ME!
 int Template.execute(Context context)
          DOCUMENT ME!
 int TeeFilterCommand.execute(Context context)
          DOCUMENT ME!
 int Style.execute(Context context)
          DOCUMENT ME!
 int Str.execute(Context context)
          DOCUMENT ME!
 int SetCommand.execute(Context context)
          DOCUMENT ME!
 int Sequence.execute(Context c)
          DOCUMENT ME!
 int SAXSourceCommand.execute(Context context)
          DOCUMENT ME!
 int Save.execute(Context context)
          DOCUMENT ME!
 int Ret.execute(Context c)
          DOCUMENT ME!
 int Remove.execute(Context context)
          DOCUMENT ME!
 int PropertiesToContext.execute(Context context)
          DOCUMENT ME!
 int PropertiesCommand.execute(Context context)
          DOCUMENT ME!
 int MyMultiFilterCommand.execute(Context context)
          DOCUMENT ME!
 int Load.execute(Context context)
          DOCUMENT ME!
 int JoostStyle.execute(Context context)
          DOCUMENT ME!
 int JoostFilterCommand.execute(Context context)
          DOCUMENT ME!
 int JavaCommand.execute(Context c)
          Executes the commmand, i.e. the Java class with args
 int Help.execute(Context context)
          Prints help (just basic info :-)) on XTCL.
 int Function.execute(Context context)
          execute the function command means execute its command
 int FilterCommand.execute(Context context)
          Loads and initializes (parametrizes) the filter.
 int Fil.execute(Context context)
          Creates a File and puts it as variable to Context.
 int ExeCommand.execute(Context c)
          execute the external command with params
 int Err.execute(Context context)
          Generates an Error with specified return (error) code
 int Echo.execute(Context c)
          Echo the String echo
 int DumpContexts.execute(Context context)
          Dumps this Context and also its ancestors.
 int DumpContext.execute(Context context)
          Dumps the Context content.
 int Dump.execute(Context context)
          Prints variable content.
 int Doc.execute(Context context)
          Creates an empty DOM tree and stores it as variable into the Context.
 int Do.execute(Context context)
          Do a template.
 int Chain.execute(Context context)
          Creates and executes a chain transformation by chaining SAX filters and XSLT-based SAX filters.
 int Cd.execute(Context context)
          Changes the working (current) directory.
 int Call.execute(Context context)
          Calls a function
 int AbstractCommand.execute(Context c)
          Do-nothing execution of an empty command.
protected  int Sequence.execute(Context c, int i)
          DOCUMENT ME!
protected  int FilterCommand.initFilter(XTFilter f, Context context)
          Initializes the filter: Evaluates the parameters, gets the real params and fetches them to the XTFilter.
protected static int AbstractCommand.initParameters(java.util.Map params, java.util.Map realParams, Parametrized f, Context context)
          DOCUMENT ME!
protected  void Transform.initTransformer(javax.xml.transform.Transformer t, Context context)
          DOCUMENT ME!
protected  void AbstractParametrizedVarCommand.propertiesToParameters(Context context)
          Resolves all the properties found in the Set of propsReferences within the Context and sets it via setParameter(k, v).
 

Uses of Context in net.sf.tomp.xtcl.filter
 

Fields in net.sf.tomp.xtcl.filter declared as Context
protected  Context XTFilterFactoryImpl.context
          DOCUMENT ME!
 

Methods in net.sf.tomp.xtcl.filter that return Context
 Context XTFilterImpl.getContext()
           
 Context XTFilterFactoryImpl.getContext()
           
 Context XTFilterFactory.getContext()
          DOCUMENT ME!
 Context XTFilter.getContext()
           
 

Methods in net.sf.tomp.xtcl.filter with parameters of type Context
 void XTFilterImpl.setContext(Context context)
           
 void XTFilterFactoryImpl.setContext(Context context)
           
 void XTFilterFactory.setContext(Context context)
           
 void XTFilter.setContext(Context c)
           
 

Constructors in net.sf.tomp.xtcl.filter with parameters of type Context
XTFilterFactoryImpl(Context c, javax.xml.transform.sax.SAXTransformerFactory factory, net.sf.joost.trax.TransformerFactoryImpl jtf)
          Creates a new XTFilterFactoryImpl object.
 

Uses of Context in net.sf.tomp.xtcl.resolver
 

Methods in net.sf.tomp.xtcl.resolver that return Context
 Context XTResolvingReader.getContext()
           
 Context XTResolver.getContext()
           
 

Methods in net.sf.tomp.xtcl.resolver with parameters of type Context
 void XTResolvingReader.setContext(Context context)
           
 void XTResolver.setContext(Context context)