jdk1.4.zip


jdk1.4.zip
资源截图
代码片段和文件信息
/*
 * Copyright (c) 2003 Sun Microsystems Inc. All  Rights Reserved.
 * 
 * Redistribution and use in source and binary forms with or without
 * modification are permitted provided that the following conditions
 * are met:
 * 
 * -Redistributions of source code must retain the above copyright
 *  notice this list of conditions and the following disclaimer.
 * 
 * -Redistribution in binary form must reproduct the above copyright
 *  notice this list of conditions and the following disclaimer in
 *  the documentation and/or other materials provided with the distribution.
 * 
 * Neither the name of Sun Microsystems Inc. or the names of contributors
 * may be used to endorse or promote products derived from this software
 * without specific prior written permission.
 * 
 * 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 OR LIABILITIES SUFFERED BY LICENSEE AS A RESULT
 * OF OR RELATING TO USE MODIFICATION OR DISTRIBUTION OF 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.
 * 
 * You acknowledge that Software is not designed licensed or intended for
 * use in the design construction operation or maintenance of any nuclear
 * facility.
 */

/*
 * @(#)Animator.java 1.9 03/01/23
 */

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.9 01/23/03
 */
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 a

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-20 16:33  jdk1.4
     目录           0  2015-03-20 16:33  jdk1.4in
     文件       28792  2014-11-18 10:40  jdk1.4inappletviewer.exe
     文件       32870  2014-11-18 10:40  jdk1.4ineanreg.dll
     文件       28790  2014-11-18 10:40  jdk1.4inextcheck.exe
     文件       16384  2014-11-18 10:40  jdk1.4inHtmlConverter.exe
     文件       28792  2014-11-18 10:40  jdk1.4inidlj.exe
     文件       28773  2014-11-18 10:40  jdk1.4injar.exe
     文件       28794  2014-11-18 10:40  jdk1.4injarsigner.exe
     文件       24670  2014-11-18 10:40  jdk1.4injava.exe
     文件       28787  2014-11-18 10:40  jdk1.4injavac.exe
     文件       28793  2014-11-18 10:40  jdk1.4injavadoc.exe
     文件       28787  2014-11-18 10:40  jdk1.4injavah.exe
     文件       28783  2014-11-18 10:40  jdk1.4injavap.exe
     文件       28768  2014-11-18 10:40  jdk1.4injavaw.exe
     文件       28796  2014-11-18 10:40  jdk1.4injdb.exe
     文件       28790  2014-11-18 10:40  jdk1.4inkeytool.exe
     文件       28786  2014-11-18 10:40  jdk1.4inkinit.exe
     文件       28786  2014-11-18 10:40  jdk1.4inklist.exe
     文件       28784  2014-11-18 10:40  jdk1.4inktab.exe
     文件       28804  2014-11-18 10:40  jdk1.4in
ative2ascii.exe
     文件       28809  2014-11-18 10:40  jdk1.4inorbd.exe
     文件       61544  2014-11-18 10:40  jdk1.4inpackager.exe
     文件       28796  2014-11-18 10:40  jdk1.4inpolicytool.exe
     文件       28778  2014-11-18 10:40  jdk1.4in
mic.exe
     文件       28784  2014-11-18 10:40  jdk1.4in
mid.exe
     文件       28796  2014-11-18 10:40  jdk1.4in
miregistry.exe
     文件       28795  2014-11-18 10:40  jdk1.4inserialver.exe
     文件       28821  2014-11-18 10:40  jdk1.4inservertool.exe
     文件       28811  2014-11-18 10:40  jdk1.4in nameserv.exe
     文件        4519  2003-06-20 07:00  jdk1.4COPYRIGHT
............此处省略1630个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)