/* * Created on 04-abr-2005 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ package gui; import java.awt.Dimension; import java.awt.Point; import java.io.File; /** * @author Juan Ignacio * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public interface AtomicAnimateIf { /** * @param point */ void setLocation(Point point); /** * @param dimension */ void setSize(Dimension dimension); /** * @param b */ void setVisible(boolean b); /** * */ void startAnimation() throws Exception; /** * @param file * @param file2 * @param i */ void init(File file, File file2, int i) throws Exception; }