资源简介
下载后解压,配置好java_home即可用
代码片段和文件信息
/*
* @(#)Animator.java 1.5 99/07/12
*
* Copyright (c) 1997 Sun Microsystems Inc. All Rights Reserved.
*
* Sun grants you (“Licensee“) a non-exclusive royalty free license to use
* modify and redistribute this software in source and binary code form
* provided that i) this copyright notice and license appear on all copies of
* the software; and ii) Licensee does not utilize the software in a manner
* which is disparaging to Sun.
*
* This software is provided “AS IS“ without a warranty of any kind. ALL
* EXPRESS OR IMPLIED CONDITIONS REPRESENTATIONS AND WARRANTIES INCLUDING ANY
* IMPLIED WARRANTY OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE OR
* NON-INFRINGEMENT ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
* LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING MODIFYING
* OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
* LICENSORS BE LIABLE FOR ANY LOST REVENUE PROFIT OR DATA OR FOR DIRECT
* INDIRECT SPECIAL CONSEQUENTIAL INCIDENTAL OR PUNITIVE DAMAGES HOWEVER
* CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY ARISING OUT OF THE USE OF
* OR INABILITY TO USE SOFTWARE EVEN IF SUN HAS BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*
* This software is not designed or intended for use in on-line control of
* aircraft air traffic aircraft navigation or aircraft communications; or in
* the design construction operation or maintenance of any nuclear
* facility. Licensee represents and warrants that it will not use or
* redistribute the Software for such purposes.
*/
import java.awt.*;
import java.awt.event.*;
import java.applet.applet;
import java.applet.AudioClip;
import java.util.Vector;
import java.util.Hashtable;
import java.util.Enumeration;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.List;
import java.util.ArrayList;
import java.util.Iterator;
/**
* An applet that plays a sequence of images as a loop or a one-shot.
* Can have a soundtrack and/or sound effects tied to individual frames.
* See the plets/applets/Animator/“>Animator
* home page for details and updates.
*
* @author Herb Jellinek
* @version 1.5 07/12/99
*/
public class Animator extends applet implements Runnable MouseListener {
int appWidth = 0; // Animator width
int appHeight = 0; // Animator height
Thread engine = null; // Thread animating the images
boolean userPause = false; // True if thread currently paused by user
boolean loaded = false; // Can we paint yet?
boolean error = false; // Was there an initialization error?
Animation animation = null; // Animation this animator contains
String hrefTarget = null; // frame target of reference URL if any
URL hrefURL = null; // URL link for information if any
static final String sourceLocation =
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20573 2001-08-08 14:13 jdk1.3.1_01\bin\ap
文件 24651 2001-08-08 14:13 jdk1.3.1_01\bin\dt_shmem.dll
文件 20557 2001-08-08 14:13 jdk1.3.1_01\bin\dt_socket.dll
文件 20571 2001-08-08 14:13 jdk1.3.1_01\bin\extcheck.exe
文件 214 2001-08-08 14:13 jdk1.3.1_01\bin\HtmlConverter.bat
文件 20573 2001-08-08 14:13 jdk1.3.1_01\bin\idlj.exe
文件 20554 2001-08-08 14:13 jdk1.3.1_01\bin\jar.exe
文件 20575 2001-08-08 14:13 jdk1.3.1_01\bin\jarsigner.exe
文件 20547 2001-08-08 14:13 jdk1.3.1_01\bin\java.exe
文件 20568 2001-08-08 14:13 jdk1.3.1_01\bin\javac.exe
文件 20568 2001-08-08 14:13 jdk1.3.1_01\bin\javadoc.exe
文件 20568 2001-08-08 14:13 jdk1.3.1_01\bin\javah.exe
文件 20564 2001-08-08 14:13 jdk1.3.1_01\bin\javap.exe
文件 20549 2001-08-08 14:13 jdk1.3.1_01\bin\javaw.exe
文件 20577 2001-08-08 14:13 jdk1.3.1_01\bin\jdb.exe
文件 94275 2001-08-08 14:13 jdk1.3.1_01\bin\jdwp.dll
文件 20571 2001-08-08 14:13 jdk1.3.1_01\bin\keytool.exe
文件 20585 2001-08-08 14:13 jdk1.3.1_01\bin\native2ascii.exe
文件 20553 2001-08-08 14:13 jdk1.3.1_01\bin\oldjava.exe
文件 20570 2001-08-08 14:13 jdk1.3.1_01\bin\oldjavac.exe
文件 20555 2001-08-08 14:13 jdk1.3.1_01\bin\oldjavaw.exe
文件 20569 2001-08-08 14:13 jdk1.3.1_01\bin\oldjdb.exe
文件 20577 2001-08-08 14:13 jdk1.3.1_01\bin\policytool.exe
文件 20559 2001-08-08 14:13 jdk1.3.1_01\bin\rmic.exe
文件 20565 2001-08-08 14:13 jdk1.3.1_01\bin\rmid.exe
文件 20577 2001-08-08 14:13 jdk1.3.1_01\bin\rmiregistry.exe
文件 20576 2001-08-08 14:13 jdk1.3.1_01\bin\serialver.exe
文件 20592 2001-08-08 14:13 jdk1.3.1_01\bin\tnameserv.exe
文件 20563 2001-08-08 14:13 jdk1.3.1_01\bin\unregbean.exe
文件 4078 2001-08-08 14:13 jdk1.3.1_01\COPYRIGHT
............此处省略2757个文件信息
评论
共有 条评论