Class Summary |
AboutDialog |
Displays information about an application in a JEditorPane. |
AbstractCellEditor |
|
AbstractConfidenceInterval |
|
AbstractConfidenceInterval.DataPoint |
Data structure to hold a pair of numbers indicating a historical
value. |
AbstractLanguageFilter |
No-op implementation of the LanguageFilter interface. |
AbstractLinearConfidenceInterval |
|
AbstractTreeTableModel |
|
AutoData |
Automatically defines various types of data. |
AutoUpdateManager |
Automatically determines whether newer versions of the dashboard (or any
dashboard add-ons) are available for download, and alerts the user. |
Base64 |
Implements Base64 encoding and decoding as defined by RFC 2045: "Multipurpose Internet
Mail Extensions (MIME) Part One: Format of Internet Message Bodies" page 23. |
BetaVersionSetup |
|
Browser |
This class is used for launching the current platforms browser. |
BrowserLauncher |
BrowserLauncher is a class that provides one static method, openURL, which opens the default
web browser for the current user of the system to the given URL. |
CachedObject |
|
CachedURLObject |
|
CGIChartBase |
|
ChartDialog |
|
CompletionButton |
|
ConcurrencyLock |
|
ConfidenceIntervalSum |
|
ConfigureButton |
|
ConsoleWindow |
This simple class can capture the debugging output that was previously
sent to System.out and System.err , and display
it in a small dialog box instead. |
DashboardIconFactory |
|
DashboardIconFactory.ContinueIcon |
|
DashboardIconFactory.PauseIcon |
|
DashboardIconFactory.SmallDisabledDownArrow |
|
DashboardIconFactory.SmallDownArrow |
|
DashController |
|
DashHelpBroker |
|
DashPackage |
Contains information about a package that is installed on the
local system. |
DataComboBox |
|
DataComboBox.TranslatingSorter |
|
DateFormatter |
|
DecimalField |
|
Defect |
|
DefectAnalyzer |
|
DefectButton |
|
DefectDialog |
|
DefectEditor |
|
DefectLog |
|
DefectLogID |
|
DefectTypeStandard |
|
DelegatingConfidenceInterval |
|
Diff |
A class to compare vectors of objects. |
Diff.change |
The result of comparison is an "edit script": a chain of change objects. |
DoubleList |
Certain earned value calculations require frequent creation and
manipulations of lists of double values. |
DropDownButton |
|
ErrorReporter |
This class provides a generally reusable feature for displaying a
collected list of error messages to the user. |
EscapeString |
|
EVCalculator |
|
EVCalculatorData |
|
EVCalculatorRollup |
|
EVCalculatorXML |
|
EVCostConfidenceInterval |
|
EVMetrics |
|
EVMetrics.FormatResources |
|
EVMetricsRandom |
|
EVMetricsRollup |
|
EVMetricsRollupRandom |
|
EVSchedule |
|
EVSchedule.NumericRange |
|
EVScheduleConfidenceIntervals |
|
EVScheduleRandom |
|
EVScheduleRollup |
This class represents a schedule that has been rolled up from
several subschedules. |
EVTask |
|
EVTaskList |
|
EVTaskListCached |
|
EVTaskListData |
|
EVTaskListRollup |
|
EVTaskListXML |
|
EVTaskListXMLAbstract |
|
EVTimeErrConfidenceInterval |
|
FileBackupManager |
Backup data and other files automatically. |
FileObjectCache |
|
FileProperties |
I got tired of trying to make my .properties and .ini files look nice
so now I delegated that to this object. |
Filter |
This class implements a primitive filter for hierarchy paths. |
FilterDialog |
|
FormattedDocument |
|
HierarchyAlterer |
General purpose class for making simple changes to the hierarchy. |
HierarchyButton |
|
HierarchyTreeModel |
|
HTMLPreprocessor |
Class for performing server-side includes and other preprocessing on
HTML files. |
HTMLPreprocessor.QueryParser |
|
HTMLUtils |
|
ImportExport |
|
ImportExport.DailyExporterThread |
|
ImportExport.ExportTask |
|
ImportTemplatePermissionDialog |
|
InternalSettings |
|
JarVerifier |
Utility class for verifying that a Jar file was signed by the
Process Dashboard development team. |
JpegEncoder |
|
JTreeTable |
This example shows how to create a simple JTreeTable component,
by using a JTree as a renderer (and editor) for the cells in a
particular column in the JTable. |
LinearRatioConfidenceInterval |
|
LinearRegressionConfidenceInterval |
|
LogCenteredConfidenceInterval |
|
LognormalConfidenceInterval |
|
LookAndFeelSettings |
|
LostDataFiles |
|
MD5 |
Implementation of RSA's MD5 hash generator |
MD5State |
Contains internal state of the MD5 class |
MimeHTMLArchiver |
Class for creating MIME Encoded HTML archives of dashboard content. |
MonteCarloConfidenceInterval |
Construct a confidence interval using a Monte Carlo simulation |
MRUCache |
Simple implementation of a most-recently-used cache. |
MultipartRequest |
A Multipart form data parser. |
NetworkDriveList |
On Windows systems, this class compiles a list of drive letters
that are mapped to network drives, along with the UNC names they
are mapped to. |
NodeSelectionDialog |
|
OptionList |
|
PauseButton |
|
PCSH |
Wrapper to context-sensitive help functionality. |
PendingDataChange |
|
Perl5Util |
Limit dependence upon a particular regular expression library. |
PerlPool |
|
PhaseTypeSet |
A case-insensitive set containing phase types. |
Ping |
Poor man's ping. |
ProbeDialog |
|
ProfTimer |
The ProfTimer class is used for crude profiling. |
ProgressDialog |
A useful class which displays a dialog box with a progress bar,
then runs a sequence of tasks, updating the progress bar as each
task completes. |
Prop |
|
PropertyFrame |
|
PropertyKey |
|
PropTreeModel |
|
PSPDashboard |
|
PSPDiff |
|
PSPProperties |
|
ResourcePool |
|
Resources |
|
Resources.SafeTemplateClassLoader |
|
Resources.TemplateClassLoader |
|
RobustFileWriter |
|
RollupAutoData |
Automatically defines a consolidator capable for rolling up data
definitions in some other process. |
ScheduleEntry |
|
ScriptBrowser |
|
ScriptButton |
|
ScriptID |
|
ScriptNameResolver |
|
SelectableHierarchyTree |
|
Settings |
|
SimpleHelpProvider |
|
SoundClip |
This class provides simple access to sound files, and insulates
other classes from system-dependent problems. |
SplashScreen |
Class SplashScreen displays splash screen that is used when
loading of the program takes some time
Usage:
SplashScreen ss = new SplashScreen("c:/images/image.jpg");
ss.setVisible(true);
or if you want load an image from jar file using getClass().getResource(String)
SplashScreen ss = new SplashScreen(url);
ss.setVisible(true);
to kill the splash screen use dispose() command:
ss.dispose(); |
StringUtils |
Just some utility methods for working with Strings. |
SwingWorker |
This is the 3rd version of SwingWorker (also known as
SwingWorker 3), an abstract class that you subclass to
perform GUI-related work in a dedicated thread. |
SwingWorker.ThreadVar |
Class to maintain reference to current worker thread
under separate synchronization control. |
TaskEntry |
|
TaskScheduleChart |
|
TaskScheduleChooser |
|
TaskScheduleCollaborationWizard |
Collaboration is only available for local task lists. |
TaskScheduleDialog |
|
TaskScheduleDialog.BufferedIcon |
|
TaskScheduleDialog.PhantomFilter |
|
TaskScheduleDialog.SepiaFilter |
|
TaskTemplate |
|
TemplateAutoData |
Automatically defines data for a process, based on its XML template. |
TemplateLoader |
|
TimeCardDialog |
|
TimeLog |
|
TimeLogEditor |
|
TimeLogEntry |
|
Timer |
|
TinyCGIBase |
|
TinyWebServer |
|
ToolTipCellRenderer |
|
ToolTipTableCellRendererProxy |
Wraps a TableCellRenderer, and adds column-based tool tips. |
Translator |
|
Translator.DefaultEngine |
Default simple translation engine
This engine translates verbatim words and phrases based upon
mappings found in a resource bundle. |
TreeTableModelAdapter |
This is a wrapper class takes a TreeTableModel and implements
the table model interface. |
ValidatingTable |
|
VectorQSort |
class VectorQSort
This class performs a quicksort of the supplied vector, using a
comparator implementing the ILessThan interface. |
VTableModel |
|
XMLDepthFirstIterator |
|
XMLUtils |
|
XYDataSourceLineWrapper |
Add a line to an XYDataSource. |
XYDataSourceLineWrapper.AverageLine |
|
XYDataSourceLineWrapper.RegressionLine |
|