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.
|
storage |
Storage backend to save and load extraction results.
|
Modifier and Type | Field and Description |
---|---|
Part |
ProfileController.ProfilePart.part |
(package private) Part |
FileMonitorTest.part1 |
(package private) Part |
FileMonitorTest.part2 |
Modifier and Type | Method and Description |
---|---|
java.util.concurrent.Future<java.lang.Object> |
Extractor.extractNewParts(Part[] parts,
Profile profile,
boolean isAsync)
|
Constructor and Description |
---|
ProfilePart(Profile profile,
Part part) |
Modifier and Type | Field and Description |
---|---|
(package private) javax.swing.JList<Part> |
ProfilePartsTab.partList |
Modifier and Type | Field and Description |
---|---|
(package private) Part |
PartTest.part |
(package private) Part |
ProfileTest.testPart1 |
(package private) Part |
ProfileTest.testPart2 |
Modifier and Type | Method and Description |
---|---|
static Part |
Part.create(java.nio.file.Path file,
java.lang.String profileuuId)
Private constructor and construction method to check, if the passed file
exists.
|
Modifier and Type | Method and Description |
---|---|
java.util.HashSet<Part> |
Profile.getParts()
Returns all
Part s belonging to this profile. |
protected java.util.HashSet<Part> |
Profile.getPartsFromDirectoryFiles(java.io.File directory)
Loads all saved
Part s from a specific directory. |
Modifier and Type | Method and Description |
---|---|
void |
Profile.addPart(Part part)
Add a
Part to this Profile. |
void |
Profile.addPart(Part part,
boolean async)
Add a
Part to this Profile. |
void |
Profile.removePart(Part part)
Remove a specific
Part from this profile.s |
Modifier and Type | Method and Description |
---|---|
void |
GeneralStorage.save(Part part,
Profile profile) |
Modifier and Type | Method and Description |
---|---|
static void |
ConfigSaver.savePartSet(java.util.HashSet<Part> data,
java.lang.String fileName)
Saves a set of Part classes to file.
|