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

Revision 1, 711 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 Tow event. A tow truck has a beat and a company, and two
12 * phone numbers: one public, and one for confirmation.
13 *
14 * @author Bryan McGuffin
15 */
16public class TowEvent extends ScriptEvent
17{
18
19    public TowEvent()
20    {
21        super(ScriptEventType.TOW_EVENT);
22    }
23
24    public String towBeat = "";
25
26    public String towCompany = "";
27
28    public String towConfNum = "";
29
30    public String towPubNum = "";
31
32}
Note: See TracBrowser for help on using the repository browser.