
interface BoilerDrawListener{

    public void mouseDragged( int x, int y );

    public void mousePressed( int x, int y );

    public void mouseReleased( int x, int y );

    public void menuOption( String option );

    public void openFile( String fileName );

    public void saveFile( String fileName );

    public void addText( String text );
};

