| Revision 1,
798 bytes
checked in by bmcguffin, 9 years ago
(diff) |
|
2017/07/18: Uploaded entire prototype to SVN repo.
|
| Rev | 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 | */ |
|---|
| 6 | package scriptbuilder.structures.events; |
|---|
| 7 | |
|---|
| 8 | import java.util.ArrayList; |
|---|
| 9 | import scriptbuilder.structures.ScriptEvent; |
|---|
| 10 | |
|---|
| 11 | /** |
|---|
| 12 | * Data model for a telephone conversation. A conversation is made up of lines |
|---|
| 13 | * of dialog; each line of dialog in the conversation has some text to be |
|---|
| 14 | * spoken, and a role for the speaker. |
|---|
| 15 | * |
|---|
| 16 | * @author Bryan McGuffin |
|---|
| 17 | */ |
|---|
| 18 | public class TelephoneEvent extends ScriptEvent |
|---|
| 19 | { |
|---|
| 20 | |
|---|
| 21 | public TelephoneEvent() |
|---|
| 22 | { |
|---|
| 23 | super(ScriptEventType.TELEPHONE_EVENT); |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | public ArrayList<String> lines = new ArrayList<String>(); |
|---|
| 27 | |
|---|
| 28 | public ArrayList<String> roles = new ArrayList<String>(); |
|---|
| 29 | |
|---|
| 30 | } |
|---|
Note: See
TracBrowser
for help on using the repository browser.