| Revision 2,
811 bytes
checked in by jdalbey, 10 years ago
(diff) |
|
Initial Import of project files
|
| Line | |
|---|
| 1 | package tmcsim.cadsimulator.stillimagecontrol; |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * ImageIncident is a container class used within still image control. This |
|---|
| 6 | * class is used by the ImageController to determine which DVD title is to be |
|---|
| 7 | * played when an incident is toggled. |
|---|
| 8 | * |
|---|
| 9 | * @author Matthew Cechini |
|---|
| 10 | * @version |
|---|
| 11 | */ |
|---|
| 12 | public class ImageIncident { |
|---|
| 13 | |
|---|
| 14 | /** The incident log number. */ |
|---|
| 15 | public int incidentNumber; |
|---|
| 16 | |
|---|
| 17 | /** Filename of the image to be shown for this range. */ |
|---|
| 18 | public String fileName; |
|---|
| 19 | |
|---|
| 20 | /** |
|---|
| 21 | * Construct. Initialize member data with parameter values. |
|---|
| 22 | * |
|---|
| 23 | * @param incident Incident number. |
|---|
| 24 | * @param file Filename if associated image file. |
|---|
| 25 | */ |
|---|
| 26 | public ImageIncident(int incident, String file) { |
|---|
| 27 | incidentNumber = incident; |
|---|
| 28 | fileName = file; |
|---|
| 29 | } |
|---|
| 30 | |
|---|
| 31 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.