/*
* Apollo - Motion capture and animation system
* Copyright (c) 2005 Apollo
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*
* @author Giovane.Kuhn - brain@netuno.com.br
*
*/
package org.apollo.view;
import org.apollo.datamodel.Video;
/**
* Common interface for classe that handle video
*
* @author Giovane.Kuhn on 03/05/2005
*/
public interface IVideoHandler {
/**
* Close it resources
*/
void close();
/**
* Change video showed
* @param v Video to be showed, could be <code>null</code>
*/
void changeVideo(Video v);
/**
* Refresh it own display
*/
void refresh();
// TODO improve this, GAMBI
/** Get selected object at video handler */
Object getSelectedObject();
}
|