source: tmcsimulator-scriptbuilder/trunk/src/scriptbuilder/structures/events/WitnessEvent.java @ 1

Revision 1, 752 bytes checked in by bmcguffin, 9 years ago (diff)

2017/07/18: Uploaded entire prototype to SVN repo.

Line 
1/*
2 * To change this license header, choose License Headers in Project Properties.
3 * To change this template file, choose Tools | Templates
4 * and open the template in the editor.
5 */
6package scriptbuilder.structures.events;
7
8import scriptbuilder.structures.ScriptEvent;
9
10/**
11 * Data model for a witness event. A witness has a name, a phone number, and a
12 * street address.
13 *
14 * @author Bryan McGuffin
15 */
16public class WitnessEvent extends ScriptEvent
17{
18
19    /**
20     * Constructor. Generate a new script event that has a witness event icon.
21     */
22    public WitnessEvent()
23    {
24        super(ScriptEventType.WITNESS_EVENT);
25    }
26
27    public String witnessAddress = "";
28
29    public String witnessName = "";
30
31    public String witnessNum = "";
32
33}
Note: See TracBrowser for help on using the repository browser.