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   
net.sf.tomp.xtcl.test   
 

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)
          Sets verbosity to Context.
 int TryBlock.execute(Context context)
          Executes the command within the TryBlock.
 int Transform.execute(Context context)
          DOCUMENT ME!
 int TeeFilterCommand.execute(Context context)
          Creates a tee filter.
 int StyleFilterCommand.execute(Context context)
          Sets the properties from prop. references to parameters, creates the style-based filter, initializes it, puts into Context as variable
 int Style.execute(Context context)
          creates Templates and puts it to Context styleRef may start with $ (lookup of var in Context) or otherwise it means a filename
 int Str.execute(Context context)
          Creates a String and puts it as variable to Context.
 int SetCommand.execute(Context context)
          Copies src var to var (shallow copy).
 int Sequence.execute(Context c)
          DOCUMENT ME!
 int SAXSourceCommand.execute(Context context)
          Creates SAXSource or XTSAXSource by class name.
 int Save.execute(Context context)
          Saves a DOM Document to File.
 int Ret.execute(Context c)
          Returns from a function, giving the results back to parent (calling) Context under names $1 ..
 int Remove.execute(Context context)
          Removes referenced objects (usually variables) from Context.
 int PropertiesToContext.execute(Context context)
          Puts all key=value pairs from the Properties separately to the Context.
 int PropertiesCommand.execute(Context context)
          if fileNameOrRef == null, create Properties from String 'body' otherwise from File referenced by 'fileNameOrRef'
 int Load.execute(Context context)
          Loads a DOM tree from file, puts into Context as variable.
 int JoostStyle.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!
static java.io.File FileCommand.getFile(Context context, java.lang.String fileNameOrRef)
           
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  org.xml.sax.XMLFilter XSLTFilterCommand.makeFilter(Context context, java.lang.String styleRef)
          Gets the necesssary factories and creates the transformation filter based on the XSLT style.
protected abstract  org.xml.sax.XMLFilter StyleFilterCommand.makeFilter(Context context, java.lang.String styleRef)
          make style-based (XSLT or STX) filter
protected  org.xml.sax.XMLFilter STXFilterCommand.makeFilter(Context context, java.lang.String styleRef)
          Gets the necesssary factories and creates the transformation filter based on the STX (Joost) style.
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)
           
 

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

Methods in net.sf.tomp.xtcl.test with parameters of type Context
 int MyMultiFilterCommand.execute(Context context)
          DOCUMENT ME!
 



Copyright © 2004-2005 Masaryk University in Brno, Faculty of Informatics, Czech Republic. All Rights Reserved.