Package | Description |
---|---|
controller |
Application controller classes, for managing the extraction
process, the storage of the extracted information, management of modules and profiles,
event handling, and environment observation.
|
gui |
The graphical user interface made with swing and awt, and the system tray icon.
|
model |
This package contains of data structure classes "model layer": this includes the data
structures for profiles, information collections and extraction results.
|
modules |
Sources relevant to the information extraction modules especially
abstract module classes for the different types of modules (file-dependent,
environment, daemon), and the module implementations.
|
Modifier and Type | Method and Description |
---|---|
static AbstractModule |
ModuleController.getModuleInstance(java.lang.Class<? extends AbstractModule> moduleClass)
Creates an
AbstractModule instance from a class. |
static AbstractModule |
ModuleController.loadModule(java.lang.String moduleName)
Returns a newly created
AbstractModule instance. |
Modifier and Type | Method and Description |
---|---|
static AbstractModule |
ModuleController.getModuleInstance(java.lang.Class<? extends AbstractModule> moduleClass)
Creates an
AbstractModule instance from a class. |
Modifier and Type | Field and Description |
---|---|
(package private) javax.swing.JList<AbstractModule> |
ProfileModuleTab.moduleList |
Modifier and Type | Method and Description |
---|---|
void |
ProfileModuleTab.createSelectedModule(AbstractModule module) |
Constructor and Description |
---|
ModuleConfigurationEditor(AbstractModule module) |
Modifier and Type | Field and Description |
---|---|
(package private) AbstractModule |
ProfileTest.testModule1 |
(package private) AbstractModule |
ProfileTest.testModule2 |
Modifier and Type | Field and Description |
---|---|
java.lang.Class<? extends AbstractModule> |
GenericModule.moduleClass
Reference to the belonging
AbstractModule . |
java.util.List<AbstractModule> |
ProfileTemplate.moduleList
List of pre-configured modules
|
Modifier and Type | Method and Description |
---|---|
AbstractModule |
GenericModule.getInstance()
Get an
AbstractModule instance that was represented by this
generic module. |
Modifier and Type | Method and Description |
---|---|
java.util.HashSet<AbstractModule> |
Profile.getModules()
Returns all
AbstractModule s contained in this Profile. |
Modifier and Type | Method and Description |
---|---|
void |
Profile.addModule(AbstractModule module)
Adds an
AbstractModule to this profile. |
void |
Profile.removeModule(AbstractModule module)
Removes a specific
AbstractModule from this profile. |
Modifier and Type | Method and Description |
---|---|
void |
Profile.addAllModules(java.util.List<AbstractModule> modules)
Adds all
AbstractModule s of a list to this profile. |
Constructor and Description |
---|
ExtractionResult(AbstractModule module)
This is the constructor you should use.
|
Constructor and Description |
---|
GenericModule(java.lang.Class<? extends AbstractModule> moduleClass,
java.lang.String moduleName,
java.lang.String moduleDescription) |
Modifier and Type | Method and Description |
---|---|
int |
ModuleComparator.compare(AbstractModule o1,
AbstractModule o2) |