Uses of Interface
org.specrunner.source.ISource

Packages that use ISource
org.specrunner.context   
org.specrunner.context.core   
org.specrunner.core.pipes   
org.specrunner.dumper   
org.specrunner.dumper.core   
org.specrunner.listeners   
org.specrunner.listeners.core   
org.specrunner.plugins.core.elements   
org.specrunner.plugins.core.include   
org.specrunner.runner   
org.specrunner.runner.core   
org.specrunner.source   
org.specrunner.source.core   
org.specrunner.source.resource   
org.specrunner.source.resource.core   
org.specrunner.source.resource.element.core   
org.specrunner.source.resource.positional.core   
org.specrunner.transformer   
org.specrunner.transformer.core   
org.specrunner.util   
 

Uses of ISource in org.specrunner.context
 

Methods in org.specrunner.context that return ISource
 ISource IContext.getCurrentSource()
          Get current source.
 

Methods in org.specrunner.context that return types with arguments of type ISource
 Deque<ISource> IContext.getSources()
          Queue of sources.
 

Methods in org.specrunner.context with parameters of type ISource
 IContext IContextFactory.newContext(ISource source, IRunner runner)
          Creates a new context based on an source and a runner.
 

Uses of ISource in org.specrunner.context.core
 

Fields in org.specrunner.context.core with type parameters of type ISource
protected  Deque<ISource> ContextImpl.sources
          Queue of sources.
 

Methods in org.specrunner.context.core that return ISource
 ISource ContextImpl.getCurrentSource()
           
 

Methods in org.specrunner.context.core that return types with arguments of type ISource
 Deque<ISource> ContextImpl.getSources()
           
 

Methods in org.specrunner.context.core with parameters of type ISource
 IContext ContextFactoryImpl.newContext(ISource source, IRunner runner)
           
 

Method parameters in org.specrunner.context.core with type arguments of type ISource
 void ContextImpl.setSources(Deque<ISource> sources)
          Sets the sources.
 

Constructors in org.specrunner.context.core with parameters of type ISource
ContextImpl(ISource source, IRunner runner)
          Creates a context from a source and a runner.
 

Uses of ISource in org.specrunner.core.pipes
 

Methods in org.specrunner.core.pipes that return ISource
protected  ISource PipeSource.createSource(String input)
          Creates a source from input.
static ISource PipeSource.lookup(IChannel channel)
          Recover the source from channel.
protected  ISource PipeTransformSource.transformSource(ISource source)
          Perform a transformation of a given source.
 

Methods in org.specrunner.core.pipes with parameters of type ISource
protected  void PipeSource.addResources(ISource source)
          Add resources to a source.
static void PipeSource.bind(IChannel channel, ISource source)
          Bind a source to the channel.
protected  IContext PipeContext.createContext(ISource source, IRunner runner)
          Creates a context based on a source and runner.
protected  IRunner PipeRunner.createRunner(ISource source)
          Creates a runner for a source.
protected  ISource PipeTransformSource.transformSource(ISource source)
          Perform a transformation of a given source.
 

Uses of ISource in org.specrunner.dumper
 

Methods in org.specrunner.dumper with parameters of type ISource
 void ISourceDumper.dump(ISource source, IResultSet result, Map<String,Object> model)
          Extra information to be dumped.
 

Uses of ISource in org.specrunner.dumper.core
 

Methods in org.specrunner.dumper.core with parameters of type ISource
 void SourceDumperWritables.dump(ISource source, IResultSet result, Map<String,Object> model)
           
 void SourceDumperResources.dump(ISource source, IResultSet result, Map<String,Object> model)
           
 void SourceDumperGroupImpl.dump(ISource source, IResultSet result, Map<String,Object> model)
           
 void SourceDumperDetails.dump(ISource source, IResultSet result, Map<String,Object> model)
           
 void SourceDumperCenter.dump(ISource source, IResultSet result, Map<String,Object> model)
           
protected  void AbstractSourceDumperFile.outputName(ISource source)
          Set the output file for the source.
protected  void AbstractSourceDumperFile.set(ISource source, IResultSet result)
          Set source and result objects.
protected  void AbstractSourceDumperFile.setFeatures(ISource source)
          Set features.
 

Uses of ISource in org.specrunner.listeners
 

Methods in org.specrunner.listeners with parameters of type ISource
 void ISourceListener.onAfter(ISource source, IContext context, IResultSet result)
          To be performed after a source execution.
 void ISourceListener.onBefore(ISource source, IContext context, IResultSet result)
          To be performed before start a source execution.
 

Uses of ISource in org.specrunner.listeners.core
 

Methods in org.specrunner.listeners.core with parameters of type ISource
 void ProfilerSourceListener.onAfter(ISource source, IContext context, IResultSet result)
           
 void AbstractSourceListener.onAfter(ISource source, IContext context, IResultSet result)
           
 void ProfilerSourceListener.onBefore(ISource source, IContext context, IResultSet result)
           
 void AbstractSourceListener.onBefore(ISource source, IContext context, IResultSet result)
           
 

Uses of ISource in org.specrunner.plugins.core.elements
 

Methods in org.specrunner.plugins.core.elements with parameters of type ISource
protected  void PluginScript.addResource(ISource source, String path, nu.xom.Element element)
           
protected  void PluginLink.addResource(ISource source, String path, nu.xom.Element element)
           
protected  void PluginImg.addResource(ISource source, String path, nu.xom.Element element)
           
protected abstract  void AbstractPluginResourceReplaceable.addResource(ISource source, String path, nu.xom.Element element)
          Add the resource as a reference.
 

Uses of ISource in org.specrunner.plugins.core.include
 

Methods in org.specrunner.plugins.core.include that return ISource
protected  ISource PluginInclude.getSource(URI newHref)
          Get source from a URI.
protected  ISource PluginInclude.transform(ISource newSource)
          Perform source transformation.
 

Methods in org.specrunner.plugins.core.include with parameters of type ISource
protected  nu.xom.Document PluginInclude.getDocument(ISource newSource)
          Get document from source.
protected  ISource PluginInclude.transform(ISource newSource)
          Perform source transformation.
 

Uses of ISource in org.specrunner.runner
 

Methods in org.specrunner.runner with parameters of type ISource
 IRunner IRunnerFactory.newRunner(ISource source)
          Create a new runner.
 void IRunner.run(ISource source, IContext context, IResultSet result)
          Performs the specification in source.
 

Uses of ISource in org.specrunner.runner.core
 

Methods in org.specrunner.runner.core with parameters of type ISource
 IRunner RunnerFactoryImpl.newRunner(ISource source)
           
 void RunnerImpl.run(ISource source, IContext context, IResultSet result)
           
 

Uses of ISource in org.specrunner.source
 

Methods in org.specrunner.source that return ISource
 ISource ISourceFactoryManager.newSource(Object source)
          Get an instance of a source factory compatible with the given source.
 ISource ISourceFactory.newSource(Object source)
          Creates a source from a String.
 ISource ISource.resolve(ISource other)
          The relative source resolved.
 

Methods in org.specrunner.source with parameters of type ISource
 String ISource.relative(ISource other)
          Returns the reference as a relative String.
 ISource ISource.resolve(ISource other)
          The relative source resolved.
 

Uses of ISource in org.specrunner.source.core
 

Classes in org.specrunner.source.core that implement ISource
 class SourceImpl
          The default implementation.
 

Methods in org.specrunner.source.core that return ISource
 ISource SourceFactoryManagerImpl.newSource(Object source)
           
 ISource AbstractSourceFactory.newSource(Object source)
           
 ISource SourceImpl.resolve(ISource other)
           
 

Methods in org.specrunner.source.core with parameters of type ISource
 String SourceImpl.relative(ISource other)
           
 ISource SourceImpl.resolve(ISource other)
           
 

Uses of ISource in org.specrunner.source.resource
 

Methods in org.specrunner.source.resource that return ISource
 ISource IResourceManager.getParent()
          The resource manager parent source.
 ISource IResource.getParent()
          The reference parent.
 ISource IResource.writeTo(ISource target)
          Write the resource to the target, e returns the resulting source.
 

Methods in org.specrunner.source.resource with parameters of type ISource
 IResourceManager IResourceManagerFactory.newManager(ISource parent)
          Creates a new resource manager.
 void IResource.setParent(ISource parent)
          Change the resource parent.
 ISource IResource.writeTo(ISource target)
          Write the resource to the target, e returns the resulting source.
 

Uses of ISource in org.specrunner.source.resource.core
 

Methods in org.specrunner.source.resource.core that return ISource
 ISource ResourceManagerImpl.getParent()
           
 ISource AbstractResource.getParent()
           
 

Methods in org.specrunner.source.resource.core with parameters of type ISource
 IResourceManager ResourceManagerFactoryImpl.newManager(ISource parent)
           
 void ResourceManagerImpl.setParent(ISource parent)
          Set resource manager parent.
 void AbstractResource.setParent(ISource parent)
           
 

Constructors in org.specrunner.source.resource.core with parameters of type ISource
AbstractResource(ISource parent, String resourcePath, boolean classpath, EType type)
          Partial constructor.
ResourceManagerImpl(ISource parent)
          Creates a resource manager to a source.
 

Uses of ISource in org.specrunner.source.resource.element.core
 

Methods in org.specrunner.source.resource.element.core that return ISource
 ISource AbstractResourceElementAtt.writeTo(ISource target)
           
 

Methods in org.specrunner.source.resource.element.core with parameters of type ISource
 ISource AbstractResourceElementAtt.writeTo(ISource target)
           
 

Constructors in org.specrunner.source.resource.element.core with parameters of type ISource
AbstractResourceElement(ISource parent, String path, boolean classpath, EType type, nu.xom.Element element)
          Creates a element resource.
AbstractResourceElementAtt(ISource parent, String path, boolean classpath, EType type, nu.xom.Element element, String reference, String prefix)
          Creates a resource.
ImageResource(ISource parent, String path, boolean classpath, EType type, nu.xom.Element element)
          Creates an image resource.
JavaScriptResource(ISource parent, String path, boolean classpath, EType type, nu.xom.Element element)
          Creates a JavaScript resource.
StylesheetResource(ISource parent, String path, boolean classpath, EType type, nu.xom.Element element)
          Creates a stylesheet resource.
 

Uses of ISource in org.specrunner.source.resource.positional.core
 

Methods in org.specrunner.source.resource.positional.core that return ISource
 ISource AbstractResourceHeader.writeTo(ISource output)
           
 

Methods in org.specrunner.source.resource.positional.core with parameters of type ISource
protected  File JSResource.getFile(ISource output, String name)
           
protected  File CSSResource.getFile(ISource output, String name)
           
protected abstract  File AbstractResourceHeader.getFile(ISource output, String name)
          Get the file which represents the output resource.
protected  nu.xom.Element JSResource.getHeaderTag(ISource output, String name)
           
protected  nu.xom.Element CSSResource.getHeaderTag(ISource output, String name)
           
protected abstract  nu.xom.Element AbstractResourceHeader.getHeaderTag(ISource output, String name)
          Ges the element which represents the source provided extra information.
protected  String JSResource.localName(ISource output, String name)
          Gets the local disk file name.
protected  String CSSResource.localName(ISource output, String name)
          Gets the local disk file name.
 ISource AbstractResourceHeader.writeTo(ISource output)
           
 

Constructors in org.specrunner.source.resource.positional.core with parameters of type ISource
AbstractResourceHeader(ISource parent, String path, boolean classpath, EType type, Position position)
          Creates a header resource.
AbstractResourcePositional(ISource parent, String path, boolean classpath, EType type, Position position)
          Creates a positional resource.
CSSResource(ISource parent, String path, boolean classpath, EType type, Position position)
          Creates CSS resource.
JSResource(ISource parent, String path, boolean classpath, EType type, Position position)
          Creates a JavaScript resource.
 

Uses of ISource in org.specrunner.transformer
 

Methods in org.specrunner.transformer that return ISource
 ISource ITransformer.transform(ISource source)
          Converts a source into another.
 

Methods in org.specrunner.transformer with parameters of type ISource
 ISource ITransformer.transform(ISource source)
          Converts a source into another.
 

Uses of ISource in org.specrunner.transformer.core
 

Methods in org.specrunner.transformer.core that return ISource
 ISource TransformerHref.transform(ISource source)
           
 ISource TransformerGroupImpl.transform(ISource source)
           
 ISource TransformerDefault.transform(ISource source)
           
 

Methods in org.specrunner.transformer.core with parameters of type ISource
 ISource TransformerHref.transform(ISource source)
           
 ISource TransformerGroupImpl.transform(ISource source)
           
 ISource TransformerDefault.transform(ISource source)
           
 

Uses of ISource in org.specrunner.util
 

Methods in org.specrunner.util with parameters of type ISource
static void UtilResources.addToDoc(ISource source, IResourcePositional resourcePositional)
          Add a positional resource to a document.
 



Copyright © 2014. All rights reserved.