• 大小: 39.96M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-10
  • 语言: 其他
  • 标签: 其他  

资源简介

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.4\bin\
     文件       28792  2014-11-18 10:40  jdk1.4\bin\appletviewer.exe
     文件       32870  2014-11-18 10:40  jdk1.4\bin\beanreg.dll
     文件       28790  2014-11-18 10:40  jdk1.4\bin\extcheck.exe
     文件       16384  2014-11-18 10:40  jdk1.4\bin\HtmlConverter.exe
     文件       28792  2014-11-18 10:40  jdk1.4\bin\idlj.exe
     文件       28773  2014-11-18 10:40  jdk1.4\bin\jar.exe
     文件       28794  2014-11-18 10:40  jdk1.4\bin\jarsigner.exe
     文件       24670  2014-11-18 10:40  jdk1.4\bin\java.exe
     文件       28787  2014-11-18 10:40  jdk1.4\bin\javac.exe
     文件       28793  2014-11-18 10:40  jdk1.4\bin\javadoc.exe
     文件       28787  2014-11-18 10:40  jdk1.4\bin\javah.exe
     文件       28783  2014-11-18 10:40  jdk1.4\bin\javap.exe
     文件       28768  2014-11-18 10:40  jdk1.4\bin\javaw.exe
     文件       28796  2014-11-18 10:40  jdk1.4\bin\jdb.exe
     文件       28790  2014-11-18 10:40  jdk1.4\bin\keytool.exe
     文件       28786  2014-11-18 10:40  jdk1.4\bin\kinit.exe
     文件       28786  2014-11-18 10:40  jdk1.4\bin\klist.exe
     文件       28784  2014-11-18 10:40  jdk1.4\bin\ktab.exe
     文件       28804  2014-11-18 10:40  jdk1.4\bin\native2ascii.exe
     文件       28809  2014-11-18 10:40  jdk1.4\bin\orbd.exe
     文件       61544  2014-11-18 10:40  jdk1.4\bin\packager.exe
     文件       28796  2014-11-18 10:40  jdk1.4\bin\policytool.exe
     文件       28778  2014-11-18 10:40  jdk1.4\bin\rmic.exe
     文件       28784  2014-11-18 10:40  jdk1.4\bin\rmid.exe
     文件       28796  2014-11-18 10:40  jdk1.4\bin\rmiregistry.exe
     文件       28795  2014-11-18 10:40  jdk1.4\bin\serialver.exe
     文件       28821  2014-11-18 10:40  jdk1.4\bin\servertool.exe
     文件       28811  2014-11-18 10:40  jdk1.4\bin\tnameserv.exe
     文件        4519  2003-06-20 07:00  jdk1.4\COPYRIGHT
............此处省略1630个文件信息

评论

共有 条评论