/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package scriptbuilder.structures.events;

/**
 * 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.
 * @author sdanthinne
 */
public interface I_AudioEvent {
    /**
     * allows for the AudioEvent type to return if it is an audio event. Could be replaced by just using instanceOf I think
     * @return 
     */
    
    
    String getFileName();
    
    String getID();
    
    void setFileName(String s);
    
}
