See: Description
Package | Description |
---|---|
edu.rutgers.md.engine |
Missed Detections computations; the only package needed for the command-line application.
|
edu.rutgers.md.format |
Object formatting (pretty printing).
|
edu.rutgers.md.sql |
Data stored in persistent storage (MySQL database + OpenJPA).
|
edu.rutgers.md.sqltools |
Auxiliary classes for handling persistent data using OpenJPA.
|
edu.rutgers.md.test |
Sample command-line applications for the Missed Detections tool kit, illustrating the use of the
edu.rutgers.md.engine API. |
edu.rutgers.md.web |
Generating JSP pages for the Missed Detections web application.
|
The Java code for the web application and the command-line application can be used in your own Java applications. See the top of this document for the list of packages.
If you only need the functionality of our command-line tool, only the package edu.rutgers.md.engine
is needed. To develop your own application, you can take the sample application in edu.rutgers.md.test
as an example.
The rest of the packages are needed if you want to build your own web application, with the data stored in the MySQL server.
To use the edu.rutgers.md.engine
API in your application, you need to download the JAR file (md.jar), and to include this JAR file in your classpath when compiling and running your code.
As a model for using our API in your application, you can take a look at the source code of Test1
. To obtain the source code, download md.zip.