Uses of Interface
elki.logging.progress.Progress
-
Packages that use Progress Package Description elki.gui.util Utility classes for GUIs (e.g., a class to display a logging panel).elki.logging Logging facility for controlling logging behavior of the complete framework.elki.logging.progress Progress status objects (for UI). -
-
Uses of Progress in elki.gui.util
Fields in elki.gui.util with type parameters of type Progress Modifier and Type Field Description protected java.util.HashMap<Progress,javax.swing.JProgressBar>
LogPanel. pbarmap
Current progress barsMethods in elki.gui.util with parameters of type Progress Modifier and Type Method Description private javax.swing.JProgressBar
LogPanel. getOrCreateProgressBar(Progress prog)
Get an existing or create a new progress bar.private void
LogPanel. removeProgressBar(Progress prog, javax.swing.JProgressBar pbar)
Remove a progress barprivate void
LogPanel. updateProgressBar(Progress prog, javax.swing.JProgressBar pbar)
Update a progress bar -
Uses of Progress in elki.logging
Methods in elki.logging with parameters of type Progress Modifier and Type Method Description void
Logging. progress(Progress pgr)
Log a Progress object. -
Uses of Progress in elki.logging.progress
Classes in elki.logging.progress that implement Progress Modifier and Type Class Description class
AbstractProgress
Abstract base class for FiniteProgress objects.class
FiniteProgress
A progress object for a given overall number of items to process.class
IndefiniteProgress
Progress class without a fixed destination value.class
MutableProgress
Progress class with a moving target.class
StepProgress
This progress class is used for multi-step processing.Fields in elki.logging.progress declared as Progress Modifier and Type Field Description private Progress
ProgressLogRecord. progress
Progress storageFields in elki.logging.progress with type parameters of type Progress Modifier and Type Field Description private java.util.ArrayList<java.lang.ref.WeakReference<Progress>>
ProgressTracker. progresses
Set of potentially active progresses.Methods in elki.logging.progress that return Progress Modifier and Type Method Description Progress
ProgressLogRecord. getProgress()
Get the objects progress.Methods in elki.logging.progress that return types with arguments of type Progress Modifier and Type Method Description java.util.Collection<Progress>
ProgressTracker. getProgresses()
Get a list of progresses tracked.java.util.Collection<Progress>
ProgressTracker. removeCompleted()
Remove completed progresses.Methods in elki.logging.progress with parameters of type Progress Modifier and Type Method Description void
ProgressTracker. addProgress(Progress p)
Add a new Progress to the tracker.Constructors in elki.logging.progress with parameters of type Progress Constructor Description ProgressLogRecord(java.util.logging.Level level, Progress progress)
Constructor for progress log messages.
-