/*
 * 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 {
    
    
    String getFileName();
    
    String getID();
    
    void setID(String id);
    
    void setFileName(String s);
    
}
