source: tmcsimulator-scriptbuilder/trunk/src/scriptbuilder/structures/events/I_AudioEvent.java @ 159

Revision 159, 705 bytes checked in by sdanthin, 6 years ago (diff)

I_AudioEvent.java created a new interface to determine if an event requires a parallel audio event.

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
8/**
9 * Events that implement this require an audioEvent to be created in parallel. They will have a corresponding filename that should not be set by the user.
10 * @author sdanthinne
11 */
12public interface I_AudioEvent {
13    /**
14     * allows for the AudioEvent type to return if it is an audio event. Could be replaced by just using instanceOf I think
15     * @return
16     */
17   
18   
19    String getFileName();
20   
21    String getID();
22   
23    void setFileName(String s);
24   
25}
Note: See TracBrowser for help on using the repository browser.