| abbot.script.Resolver
All known Subclasses: abbot.script.Script, abbot.editor.ScriptEditor,
Resolver | public interface Resolver (Code) | | Interface to provide a general context in which tests are run.
Includes ComponentReferences, current gui hierarchy, properties, and a
working directory.
|
addComponentReference | void addComponentReference(ComponentReference ref)(Code) | | Add a new component reference to the existing collection.
|
getComponentReference | ComponentReference getComponentReference(String refid)(Code) | | Return the ComponentReference matching the given id, or null if none
exists.
|
getComponentReferences | Collection getComponentReferences()(Code) | | Returns a collection of all the existing references.
|
getContext | String getContext(Step step)(Code) | | Provide a human-readable string that describes the given step's
context.
|
getContextClassLoader | ClassLoader getContextClassLoader()(Code) | | Return the class loader for use in this context.
|
getDirectory | File getDirectory()(Code) | | Provide a working directory context for relative pathnames.
|
getHierarchy | Hierarchy getHierarchy()(Code) | | Get Hierarchy used by this Resolver.
|
getProperty | Object getProperty(String name)(Code) | | Provide retrieval of values from temporary storage.
|
setProperty | void setProperty(String name, Object value)(Code) | | Provide temporary storage of String values.
|
|
|