Uses of Class
adams.tools.AbstractTool
-
Packages that use AbstractTool Package Description adams.flow.standalone adams.flow.transformer adams.gui.scripting adams.gui.tools adams.tools -
-
Uses of AbstractTool in adams.flow.standalone
Fields in adams.flow.standalone declared as AbstractTool Modifier and Type Field Description protected AbstractTool
Tool. m_Tool
the tool to run.Methods in adams.flow.standalone that return AbstractTool Modifier and Type Method Description AbstractTool
Tool. getTool()
Returns the tool in use.Methods in adams.flow.standalone with parameters of type AbstractTool Modifier and Type Method Description void
Tool. setTool(AbstractTool value)
Sets the tool to use. -
Uses of AbstractTool in adams.flow.transformer
Fields in adams.flow.transformer declared as AbstractTool Modifier and Type Field Description protected AbstractTool
Tool. m_Tool
the tool to run.Methods in adams.flow.transformer that return AbstractTool Modifier and Type Method Description AbstractTool
Tool. getTool()
Returns the tool in use.Methods in adams.flow.transformer with parameters of type AbstractTool Modifier and Type Method Description void
Tool. setTool(AbstractTool value)
Sets the tool to use. -
Uses of AbstractTool in adams.gui.scripting
Fields in adams.gui.scripting declared as AbstractTool Modifier and Type Field Description protected AbstractTool
RunTool. m_RunScheme
-
Uses of AbstractTool in adams.gui.tools
Fields in adams.gui.tools declared as AbstractTool Modifier and Type Field Description protected AbstractTool
AbstractRunToolPanel. m_CurrentTool
the current tool.Methods in adams.gui.tools with parameters of type AbstractTool Modifier and Type Method Description protected void
AbstractRunToolPanel. run(AbstractTool tool)
applies the given tool. -
Uses of AbstractTool in adams.tools
Subclasses of AbstractTool in adams.tools Modifier and Type Class Description class
AbstractAddRemoveTimeWindowDatabaseTool
Ancestor for tools that add or remove stuff in the database.class
AbstractDatabaseTool
Abstract ancestor for tools that need database access.class
AbstractScript
Ancestor for tool scripts.class
AbstractScriptedTool
Abstract ancestor for filters that execute external scripts.class
AbstractTimeWindowDatabaseTool
Abstract ancestor for database tools that act within a time frame.class
CompareDatasets
Compares two datasets, either row-by-row or using a row attribute listing a unique ID for matching the rows, outputting the correlation coefficient of the numeric attributes found in the ranges defined by the user.
In order to trim down the number of generated rows, a threshold can be specified.class
DropTables
Drops all tables that match a regular expression (matching sense can be inverted).class
Groovy
A report filter that uses a Groovy script for processing the data.class
InitializeTables
Makes sure that all tables exist and are initialized.class
Scripted
A tool that uses any scripting handler for processing the data with a script located in the specified file.class
TableUpgrade
Tool for running a specific table upgrade.class
TruncateTables
Truncates all tables that match a regular expression (matching sense can be inverted).class
ZipPassword
Attempts to determine the password of a password protected ZIP file.
If no dictionary file has been provided, a brute force attack is carried out.
The brute force attack can be run in parallel, default is two threads.
The dictionary approach also tests lower/upper case version of the passwords and the reverse of them.Fields in adams.tools declared as AbstractTool Modifier and Type Field Description protected AbstractTool
RunTool. m_Tool
the tool to run.protected AbstractTool
Groovy. m_ToolObject
the loaded script object.protected AbstractTool
Scripted. m_ToolObject
the loaded script object.Methods in adams.tools that return AbstractTool Modifier and Type Method Description static AbstractTool
AbstractTool. forCommandLine(String cmdline)
Instantiates the tool from the given commandline (i.e., classname and optional options).static AbstractTool
AbstractTool. forName(String classname, String[] options)
Instantiates the tool with the given options.AbstractTool
RunTool. getTool()
Returns the tool being used.Methods in adams.tools with parameters of type AbstractTool Modifier and Type Method Description void
RunTool. setTool(AbstractTool value)
Sets the tool to run.
-