home *** CD-ROM | disk | FTP | other *** search
Java Source | 1999-10-02 | 1.1 KB | 32 lines |
- /*
- * @(#)Animation.java 1999/09/28
- *
- * Written by David Griffiths, 1999.
- *
- * The parts of this software that were specifically written by David Griffiths
- * are released into the Public Domain. However, you should note that some parts are
- * based on other libraries and you should read and be aware of the additional
- * conditions that are specified in some of the attached files
- * (notably GIFImage.java and LZWCompressor.java). The GIF format is the copyright
- * of CompuServe Incorporated.
- *
- * THE AUTHOR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY
- * OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
- * THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
- * PURPOSE, OR NON-INFRINGEMENT. THE AUTHOR SHALL NOT BE LIABLE FOR ANY DAMAGES
- * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
- * THIS SOFTWARE OR ITS DERIVATIVES.
- */
-
- /**
- * Animation is the public interface for an animation.
- * @version 1.0 1999/09/28
- * @author David Griffiths
- */
-
- import java.io.*;
-
- public interface Animation {
- public void serializeTo(PrintStream out);
- }
-