summaryrefslogtreecommitdiff
path: root/java/jdk15
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-10-13 12:41:25 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-10-13 12:41:25 +0000
commita09d414989cbc0d50fb539c5516ea46baef44a9a (patch)
tree0ca17fefbc57653786d69921c0c98645caac0997 /java/jdk15
parentSet PORTREVISION=3 (patch-l) (diff)
Add jdk12-beta - a "glue" to build a native JDK1.2.2 using source code from
Sun and patchset from FreeBSD Java Project.
Notes
Notes: svn path=/head/; revision=33771
Diffstat (limited to 'java/jdk15')
-rw-r--r--java/jdk15/Makefile121
-rw-r--r--java/jdk15/distinfo2
-rw-r--r--java/jdk15/files/patch-aa36
-rw-r--r--java/jdk15/pkg-comment1
-rw-r--r--java/jdk15/pkg-descr11
-rw-r--r--java/jdk15/pkg-message157
-rw-r--r--java/jdk15/pkg-plist878
7 files changed, 1206 insertions, 0 deletions
diff --git a/java/jdk15/Makefile b/java/jdk15/Makefile
new file mode 100644
index 000000000000..a58858e9f4d8
--- /dev/null
+++ b/java/jdk15/Makefile
@@ -0,0 +1,121 @@
+# New ports collection makefile for: jdk12
+# Date created: 10 October 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= jdk
+PORTVERSION= ${JDK_VERSION}b${JDK_BETALEVEL}
+CATEGORIES= java devel
+MASTER_SITES= # http://www.sun.com/software/communitysource/java2/
+ # http://www.eyesbeyond.com/freebsddom/java/jdk.html
+DISTFILES= ${PORTNAME}${JDK_VERSION:S/./_/g}-src${EXTRACT_SUFX} \
+ freebsd-jdk122-patches-${JDK_BETALEVEL}.tar.gz
+
+MAINTAINER= sobomax@FreeBSD.org
+
+BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 \
+ zip:${PORTSDIR}/archivers/zip \
+ ${JDK11DIR}/bin/javac:${PORTSDIR}/java/jdk \
+ ${JDK12DIR}/bin/javac:${PORTSDIR}/java/linux-jdk \
+ ${X11BASE}/lib/libMrm.a:${PORTSDIR}/x11-toolkits/open-motif-devel \
+ ${NONEXISTENT}:${PORTSDIR}/java/jfc:extract
+LIB_DEPENDS= odbc.1:${PORTSDIR}/databases/unixODBC
+RUN_DEPENDS= ${X11BASE}/lib/X11/fonts/URW/fonts.dir:${PORTSDIR}/x11-fonts/urwfonts \
+ javavm:${PORTSDIR}/java/javavmwrapper
+
+WRKSRC= ${WRKDIR}/build/freebsd
+
+JDK_VERSION= 1.2.2
+JDK_BETALEVEL= 10
+
+JDK11DIR?= ${LOCALBASE}/jdk1.1.8
+JFC11DIR?= ${WRKDIRPREFIX}${.CURDIR}/../../java/jfc/work/swing-1.1.1fcs
+JDK12DIR?= ${LOCALBASE}/linux-jdk${JDK_VERSION}
+
+USE_GMAKE= yes
+RESTRICTED= "Redistribution of pre-compiled binaries isn't permitted"
+MAKEFILE= GNUmakefile
+MAKE_ENV= HAVE_DPS="no" \
+ ALT_BOOTDIR="${JDK12DIR}" \
+ ALT_ODBCDIR="${LOCALBASE}" \
+ ALT_MOTIF_DIR="${X11BASE}" \
+ OPENWINHOME="${X11BASE}" \
+ _JDK11DIR="${JDK11DIR}" \
+ SYS_CFLAGS="${CFLAGS}"
+ALL_TARGET= release-images
+PATCH_CMD= ${PATCH} -p1 -s <
+PLIST_SUB+= JDK_VERSION=${JDK_VERSION}
+
+JDKIMAGEDIR= ${WRKSRC}/jdk-image-i386
+JDKIMAGEDIR_G= ${WRKSRC}/jdk-debug-image-i386
+JREIMAGEDIR= ${WRKSRC}/jre-image-i386
+
+.if defined(NODEBUG)
+PLIST_SUB+= DEBUG:="@comment "
+PKGNAMESUFFIX= -nodebug
+.else
+PLIST_SUB+= DEBUG:=""
+.endif
+
+.if defined(BATCH) || defined(PACKAGE_BUILDING)
+IGNORE= "You can not legally distribute pre-compiled binaries"
+.endif
+
+.include <bsd.port.pre.mk>
+
+.for file in ${DISTFILES}
+.if !exists(${DISTDIR}/${file})
+IGNORE=You must manually fetch the source distribution and FreeBSD patches (${DISTFILES}) from http://www.sun.com/software/communitysource/java2/ and http://www.eyesbeyond.com/freebsddom/java/jdk.html, place it in ${DISTDIR} and then run make again
+.endif
+.endfor
+
+pre-patch:
+ @${MKDIR} ${WRKSRC}
+.for dir in build src ext/i18n/build ext/i18n/src ext/iiimp/build
+ @cd ${WRKDIR}/${dir} && ${RM} -rf freebsd && ${CP} -R solaris freebsd
+.endfor
+ @cd ${WRKSRC} && ${PATCH_CMD} ${WRKDIR}/build.patches && \
+ cd ../share && ${PATCH_CMD} ${WRKDIR}/buildshare.patches && \
+ cd ../../src/freebsd && ${PATCH_CMD} ${WRKDIR}/src.patches && \
+ cd ../share && ${PATCH_CMD} ${WRKDIR}/srcshare.patches && \
+ cd ../../ext && ${PATCH_CMD} ${WRKDIR}/ext.patches
+ @${MKDIR} ${WRKSRC}/1.1_libs
+ @${CP} ${JFC11DIR}/*.jar ${WRKSRC}/1.1_libs
+
+post-build:
+ for dir in ${JDKIMAGEDIR} ${JDKIMAGEDIR_G} ${JREIMAGEDIR}; do \
+ for file in `find $${dir} -type f -name "*.so"`; do \
+ if [ -f $${file}.${JDK_VERSION} ]; then \
+ ${RM} $${file}.${JDK_VERSION}; \
+ ${LN} -sf `${BASENAME} $${file}` $${file}.${JDK_VERSION}; \
+ fi; \
+ done; \
+ done
+ for dir in ${JDKIMAGEDIR} ${JREIMAGEDIR}; do \
+ find $${dir} -type f | xargs file | ${GREP} 'not stripped$$' | \
+ ${SED} 's|:.*$$||' | xargs strip; \
+ done
+
+.if !defined(NODEBUG)
+pre-install:
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Please use \`make -DNODEBUG' if you don't want to install libraries and binaries"
+ @${ECHO_MSG} "with debugging support."
+ @${ECHO_MSG}
+.endif
+
+do-install:
+ ${MKDIR} ${PREFIX}/jdk${JDK_VERSION}
+ (cd ${JDKIMAGEDIR} && ${TAR} -c -f - .) \
+ | (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -)
+.if !defined(NODEBUG)
+ (cd ${JDKIMAGEDIR_G} && ${TAR} -c -f - .) \
+ | (cd ${PREFIX}/jdk${JDK_VERSION} && ${TAR} --unlink -x -f -)
+.endif
+
+post-install:
+ ${LOCALBASE}/bin/registervm "${PREFIX}/jdk${JDK_VERSION}/bin/java # JDK${JDK_VERSION}"
+
+.include <bsd.port.post.mk>
diff --git a/java/jdk15/distinfo b/java/jdk15/distinfo
new file mode 100644
index 000000000000..17199dffaa9d
--- /dev/null
+++ b/java/jdk15/distinfo
@@ -0,0 +1,2 @@
+MD5 (jdk1_2_2-src.tar.gz) = 84a81b3e5f56f73bd4cbee57f895dba7
+MD5 (freebsd-jdk122-patches-10.tar.gz) = 7c01d281b3ac9d5f5f3036749f79492e
diff --git a/java/jdk15/files/patch-aa b/java/jdk15/files/patch-aa
new file mode 100644
index 000000000000..c593e910c5f2
--- /dev/null
+++ b/java/jdk15/files/patch-aa
@@ -0,0 +1,36 @@
+--- build/freebsd/makefiles/Defs-freebsd.gmk 2000/10/13 00:16:56 1.1
++++ build/freebsd/makefiles/Defs-freebsd.gmk 2000/10/13 00:20:36
+@@ -59,11 +59,11 @@
+ GCC_STYLE = -Wmissing-prototypes -Wmissing-declarations -Wnested-externs
+ GCC_WARNINGS = -W -Wall $(GCC_STYLE) $(GCC_INHIBIT)
+ CFLAGS_COMMON = $(GCC_WARNINGS) -pipe
+-CFLAGS_OPT = $(POPT) -fomit-frame-pointer # -mcpu=i686
+-CFLAGS_DBG = -g
++CFLAGS_OPT = $(POPT) $(SYS_CFLAGS) #-fomit-frame-pointer # -mcpu=i686
++CFLAGS_DBG = -g3
+ CXXFLAGS_COMMON = $(GCC_WARNINGS) -pipe -DFD_SETSIZE=2048
+-CXXFLAGS_OPT = $(POPT) -fomit-frame-pointer # -mcpu=i686
+-CXXFLAGS_DBG = -g
++CXXFLAGS_OPT = $(POPT) $(SYS_CFLAGS) #-fomit-frame-pointer # -mcpu=i686
++CXXFLAGS_DBG = -g3
+ endif
+
+ ifneq ($(CC_VERSION), gcc)
+@@ -232,7 +232,7 @@
+ _OPT = -xO4
+ else
+ ifneq ($(ARCH), alpha)
+- _OPT = -O2
++ _OPT = #-O2
+ endif
+ endif
+ CPPFLAGS_DBG += -DLOGGING
+@@ -248,7 +248,7 @@
+ _OPT = -xO2
+ else
+ ifneq ($(ARCH), alpha)
+- _OPT = -O2
++ _OPT = #-O2
+ endif
+ endif
+ endif
diff --git a/java/jdk15/pkg-comment b/java/jdk15/pkg-comment
new file mode 100644
index 000000000000..ac319a654e79
--- /dev/null
+++ b/java/jdk15/pkg-comment
@@ -0,0 +1 @@
+Sun's Java Developers Kit
diff --git a/java/jdk15/pkg-descr b/java/jdk15/pkg-descr
new file mode 100644
index 000000000000..e403d4ee0edd
--- /dev/null
+++ b/java/jdk15/pkg-descr
@@ -0,0 +1,11 @@
+This is the latest patchset from the Java 2 FreeBSD porting project. This port
+allows you to easily build native JDK1.2.2 for FreeBSD.
+
+Please note that due to the current Sun licensing policy, the resulting binaries
+couln't be distributed and you are only permitted to use/hack it personally.
+Due to the same reasons you have to manually fetch source code and patchset for
+FreeBSD.
+
+WWW: http://www.freebsd.org/java/
+ http://www.eyesbeyond.com/freebsddom/java/index.html
+ http://www.sun.com/software/communitysource/java2/
diff --git a/java/jdk15/pkg-message b/java/jdk15/pkg-message
new file mode 100644
index 000000000000..f3ce3f9dba1b
--- /dev/null
+++ b/java/jdk15/pkg-message
@@ -0,0 +1,157 @@
+ Sun Microsystems, Inc.
+ Binary Code License Agreement
+
+READ THE TERMS OF THIS AGREEMENT AND ANY PROVIDED SUPPLEMENTAL
+LICENSE TERMS (COLLECTIVELY "AGREEMENT") CAREFULLY BEFORE
+OPENING THE SOFTWARE MEDIA PACKAGE. BY OPENING THE SOFTWARE
+MEDIA PACKAGE, YOU AGREE TO THE TERMS OF THIS AGREEMENT. IF
+YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY, INDICATE YOUR
+ACCEPTANCE OF THESE TERMS BY SELECTING THE "ACCEPT" BUTTON AT
+THE END OF THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL THESE
+TERMS, PROMPTLY RETURN THE UNUSED SOFTWARE TO YOUR PLACE OF
+PURCHASE FOR A REFUND OR, IF THE SOFTWARE IS ACCESSED
+ELECTRONICALLY, SELECT THE "DECLINE" BUTTON AT THE END OF THIS
+AGREEMENT.
+
+1. LICENSE TO USE. Sun grants you a non-exclusive and
+non-transferable license for the internal use only of the accompanying
+software and documentation and any error corrections provided by Sun
+(collectively "Software"), by the number of users and the class of
+computer hardware for which the corresponding fee has been paid.
+
+2. RESTRICTIONS Software is confidential and copyrighted. Title to
+Software and all associated intellectual property rights is retained
+by Sun and/or its licensors. Except as specifically authorized in any
+Supplemental License Terms, you may not make copies of Software, other
+than a single copy of Software for archival purposes. Unless
+enforcement is prohibited by applicable law, you may not modify,
+decompile, reverse engineer Software. Software is not designed or
+licensed 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. You warrant that
+you will not use Software for these purposes. No right, title or
+interest in or to any trademark, service mark, logo or trade name of
+Sun or its licensors is granted under this Agreement.
+
+3. LIMITED WARRANTY. Sun warrants to you that for a period of ninety
+(90) days from the date of purchase, as evidenced by a copy of the
+receipt, the media on which Software is furnished (if any) will be
+free of defects in materials and workmanship under normal use. Except
+for the foregoing, Software is provided "AS IS". Your exclusive
+remedy and Sun's entire liability under this limited warranty will be
+at Sun's option to replace Software media or refund the fee paid for
+Software.
+
+4. DISCLAIMER OF WARRANTY. UNLESS SPECIFIED IN THIS AGREEMENT,
+ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
+INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
+PARTICULAR PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO
+THE EXTENT THAT THESE DISCLAIMERS ARE HELD TO BE LEGALLY INVALID.
+
+5. LIMITATION OF LIABILITY. TO THE EXTENT NOT PROHIBITED BY LAW,
+IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE,
+PROFIT OR DATA, OR FOR SPECIAL, INDIRECT, CONSEQUENTIAL, INCIDENTAL
+OR PUNITIVE DAMAGES, HOWEVER CAUSED REGARDLESS OF THE THEORY OF
+LIABILITY, ARISING OUT OF OR RELATED TO THE USE OF OR INABILITY TO
+USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES. In no event will Sun's liability to you, whether in
+contract, tort (including negligence), or otherwise, exceed the amount
+paid by you for Software under this Agreement. The foregoing
+limitations will apply even if the above stated warranty fails of its
+essential purpose.
+
+6. Termination. This Agreement is effective until terminated. You
+may terminate this Agreement at any time by destroying all copies of
+Software. This Agreement will terminate immediately without notice
+from Sun if you fail to comply with any provision of this Agreement.
+Upon Termination, you must destroy all copies of Software.
+
+7. Export Regulations. All Software and technical data delivered
+under this Agreement are subject to US export control laws and may be
+subject to export or import regulations in other countries. You agree
+to comply strictly with all such laws and regulations and acknowledge
+that you have the responsibility to obtain such licenses to export,
+re-export, or import as may be required after delivery to you.
+
+8. U.S. Government Restricted Rights. Use, duplication, or
+disclosure by the U.S. Government is subject to restrictions set forth
+in this Agreement and as provided in DFARS 227.7202-1 (a) and
+227.7202-3(a) (1995), DFARS 252.227-7013 (c)(1)(ii)(Oct 1988), FAR
+12.212 (a) (1995), FAR 52.227-19 (June 1987), or FAR 52.227-14(ALT
+III) (June 1987), as applicable.
+
+9. Governing Law. Any action related to this Agreement will be
+governed by California law and controlling U.S. federal law. No
+choice of law rules of any jurisdiction will apply.
+
+10. Severability. If any provision of this Agreement is held to be
+unenforceable, This Agreement will remain in effect with the provision
+omitted, unless omission would frustrate the intent of the parties, in
+which case this Agreement will immediately terminate.
+
+11. Integration. This Agreement is the entire agreement between you
+and Sun relating to its subject matter. It supersedes all prior or
+contemporaneous oral or written communications, proposals,
+representations and warranties and prevails over any conflicting or
+additional terms of any quote, order, acknowledgment, or other
+communication between the parties relating to its subject matter
+during the term of this Agreement. No modification of this Agreement
+will be binding, unless in writing and signed by an authorized
+representative of each party.
+
+For inquiries please contact: Sun Microsystems, Inc. 901 San Antonio
+Road, Palo Alto, California 94303
+
+ JAVA(TM) 2 SDK, STANDARD EDITION, VERSION 1.2.2
+ SUPPLEMENTAL LICENSE TERMS
+
+These supplemental terms ("Supplement") add to the terms of the Binary
+Code License Agreement ("Agreement"). Capitalized terms not defined
+herein shall have the same meanings ascribed to them in the Agreement.
+The Supplement terms shall supersede any inconsistent or conflicting
+terms in the Agreement.
+
+1. Limited License Grant. Sun grants to you a non-exclusive,
+non-transferable limited license to use the Software without fee for
+evaluation of the Software and for development of Java(TM) applets and
+applications provided that you: (i) may not re-distribute the Software
+in whole or in part, either separately or included with a
+product. (ii) may not create, or authorize your licensees to create
+additional classes, interfaces, or subpackages that are contained in
+the "java" or "sun" packages or similar as specified by Sun in any
+class file naming convention; and (iii) agree to the extent Programs
+are developed which utilize the Windows 95/98 style graphical user
+interface or components contained therein, such applets or
+applications may only be developed to run on a Windows 95/98 or
+Windows NT platform. Refer to the Java 2 Runtime Environment Version
+1.2.2 binary code license
+(http://java.sun.com/products/jdk/1.2/jre/LICENSE) for the availability
+of runtime code which may be distributed with Java applets and
+applications.
+
+2. Java Platform Interface. In the event that Licensee creates an
+additional API(s) which: (i) extends the functionality of a
+Java Environment; and, (ii) is exposed to third party software
+developers for the purpose of developing additional software which
+invokes such additional API, Licensee must promptly publish broadly an
+accurate specification for such API for free use by all developers.
+
+3. Trademarks and Logos. This Agreement does not authorize Licensee to
+use any Sun name, trademark or logo. Licensee acknowledges as between
+it and Sun that Sun owns the Java trademark and all Java-related
+trademarks, logos and icons including the Coffee Cup and Duke ("Java
+Marks") and agrees to comply with the Java Trademark Guidelines at
+http://java.sun.com/trademarks.html.
+
+4. High Risk Activities. Notwithstanding Section 2, with respect to
+high risk activities, the following language shall apply: the 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. Sun disclaims any express or implied warranty of fitness for
+such uses.
+
+5. Source Code. Software may contain source code that is provided
+solely for reference purposes pursuant to the terms of this Agreement.
+
+
diff --git a/java/jdk15/pkg-plist b/java/jdk15/pkg-plist
new file mode 100644
index 000000000000..06bd85b853ae
--- /dev/null
+++ b/java/jdk15/pkg-plist
@@ -0,0 +1,878 @@
+jdk%%JDK_VERSION%%/COPYRIGHT
+jdk%%JDK_VERSION%%/LICENSE
+jdk%%JDK_VERSION%%/README
+jdk%%JDK_VERSION%%/README.html
+jdk%%JDK_VERSION%%/bin/.java_wrapper
+jdk%%JDK_VERSION%%/bin/appletviewer
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/appletviewer_g
+jdk%%JDK_VERSION%%/bin/extcheck
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/extcheck_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/appletviewer
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/appletviewer_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/extcheck
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/extcheck_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/jar
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/jar_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/jarsigner
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/jarsigner_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/java
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/java_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/javac
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/javac_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/javadoc
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/javadoc_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/javah
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/javah_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/javap
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/javap_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/jdb
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/jdb_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/keytool
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/keytool_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/native2ascii
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/native2ascii_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/oldjava
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/oldjava_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/policytool
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/policytool_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/rmic
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/rmic_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/rmid
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/rmid_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/rmiregistry
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/rmiregistry_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/serialver
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/serialver_g
+jdk%%JDK_VERSION%%/bin/i386/green_threads/tnameserv
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/i386/green_threads/tnameserv_g
+jdk%%JDK_VERSION%%/bin/jar
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/jar_g
+jdk%%JDK_VERSION%%/bin/jarsigner
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/jarsigner_g
+jdk%%JDK_VERSION%%/bin/java
+jdk%%JDK_VERSION%%/bin/java-rmi.cgi
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/java_g
+jdk%%JDK_VERSION%%/bin/javac
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/javac_g
+jdk%%JDK_VERSION%%/bin/javadoc
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/javadoc_g
+jdk%%JDK_VERSION%%/bin/javah
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/javah_g
+jdk%%JDK_VERSION%%/bin/javap
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/javap_g
+jdk%%JDK_VERSION%%/bin/jdb
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/jdb_g
+jdk%%JDK_VERSION%%/bin/keytool
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/keytool_g
+jdk%%JDK_VERSION%%/bin/native2ascii
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/native2ascii_g
+jdk%%JDK_VERSION%%/bin/oldjava
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/oldjava_g
+jdk%%JDK_VERSION%%/bin/policytool
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/policytool_g
+jdk%%JDK_VERSION%%/bin/rmic
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/rmic_g
+jdk%%JDK_VERSION%%/bin/rmid
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/rmid_g
+jdk%%JDK_VERSION%%/bin/rmiregistry
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/rmiregistry_g
+jdk%%JDK_VERSION%%/bin/serialver
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/serialver_g
+jdk%%JDK_VERSION%%/bin/tnameserv
+%%DEBUG:%%jdk%%JDK_VERSION%%/bin/tnameserv_g
+jdk%%JDK_VERSION%%/demo/applets/Animator/Animation.class
+jdk%%JDK_VERSION%%/demo/applets/Animator/AnimationFrame.class
+jdk%%JDK_VERSION%%/demo/applets/Animator/Animator.class
+jdk%%JDK_VERSION%%/demo/applets/Animator/Animator.java
+jdk%%JDK_VERSION%%/demo/applets/Animator/DescriptionFrame.class
+jdk%%JDK_VERSION%%/demo/applets/Animator/ParseException.class
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/0.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/1.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/2.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/3.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/4.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/5.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/6.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/7.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/8.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/9.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/audio/spacemusic.au
+jdk%%JDK_VERSION%%/demo/applets/Animator/example1.html
+jdk%%JDK_VERSION%%/demo/applets/Animator/example2.html
+jdk%%JDK_VERSION%%/demo/applets/Animator/example3.html
+jdk%%JDK_VERSION%%/demo/applets/Animator/example4.html
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T1.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T10.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T2.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T3.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T4.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T5.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T6.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T7.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T8.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans/T9.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/SimpleAnimation/T1.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/SimpleAnimation/T2.gif
+jdk%%JDK_VERSION%%/demo/applets/Animator/images/loading-msg.gif
+jdk%%JDK_VERSION%%/demo/applets/ArcTest/ArcCanvas.class
+jdk%%JDK_VERSION%%/demo/applets/ArcTest/ArcControls.class
+jdk%%JDK_VERSION%%/demo/applets/ArcTest/ArcTest.class
+jdk%%JDK_VERSION%%/demo/applets/ArcTest/ArcTest.java
+jdk%%JDK_VERSION%%/demo/applets/ArcTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/BarChart/Chart.class
+jdk%%JDK_VERSION%%/demo/applets/BarChart/Chart.java
+jdk%%JDK_VERSION%%/demo/applets/BarChart/example1.html
+jdk%%JDK_VERSION%%/demo/applets/Blink/Blink.class
+jdk%%JDK_VERSION%%/demo/applets/Blink/Blink.java
+jdk%%JDK_VERSION%%/demo/applets/Blink/example1.html
+jdk%%JDK_VERSION%%/demo/applets/CardTest/CardPanel.class
+jdk%%JDK_VERSION%%/demo/applets/CardTest/CardTest.class
+jdk%%JDK_VERSION%%/demo/applets/CardTest/CardTest.java
+jdk%%JDK_VERSION%%/demo/applets/CardTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/Clock/Clock2.class
+jdk%%JDK_VERSION%%/demo/applets/Clock/Clock2.java
+jdk%%JDK_VERSION%%/demo/applets/Clock/example1.html
+jdk%%JDK_VERSION%%/demo/applets/DitherTest/DitherCanvas.class
+jdk%%JDK_VERSION%%/demo/applets/DitherTest/DitherControls.class
+jdk%%JDK_VERSION%%/demo/applets/DitherTest/DitherTest.class
+jdk%%JDK_VERSION%%/demo/applets/DitherTest/DitherTest.java
+jdk%%JDK_VERSION%%/demo/applets/DitherTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/DrawTest/DrawControls.class
+jdk%%JDK_VERSION%%/demo/applets/DrawTest/DrawPanel.class
+jdk%%JDK_VERSION%%/demo/applets/DrawTest/DrawTest.class
+jdk%%JDK_VERSION%%/demo/applets/DrawTest/DrawTest.java
+jdk%%JDK_VERSION%%/demo/applets/DrawTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/Fractal/CLSFractal.class
+jdk%%JDK_VERSION%%/demo/applets/Fractal/CLSFractal.java
+jdk%%JDK_VERSION%%/demo/applets/Fractal/CLSRule.class
+jdk%%JDK_VERSION%%/demo/applets/Fractal/CLSTurtle.class
+jdk%%JDK_VERSION%%/demo/applets/Fractal/ContextLSystem.class
+jdk%%JDK_VERSION%%/demo/applets/Fractal/example1.html
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/Edge.class
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/Graph.class
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/Graph.java
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/GraphPanel.class
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/Node.class
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio/computer.au
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio/drip.au
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio/gong.au
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/example1.html
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/example2.html
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/example3.html
+jdk%%JDK_VERSION%%/demo/applets/GraphLayout/example4.html
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/AppletFrame.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/AppletFrame.java
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/ArcCard.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/ArcDegreePanel.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/ArcPanel.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/ColorUtils.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/GraphicsCards.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/GraphicsPanel.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/GraphicsTest.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/GraphicsTest.java
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/OvalShape.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/PolygonShape.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/RectShape.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/RoundRectShape.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/Shape.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/ShapeTest.class
+jdk%%JDK_VERSION%%/demo/applets/GraphicsTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/AniArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/AniArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ButtonFilter.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ButtonFilter.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ClickArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ClickArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/DelayedSoundArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/DelayedSoundArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HighlightArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HighlightArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HighlightFilter.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HighlightFilter.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HrefButtonArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/HrefButtonArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ImageMap.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ImageMap.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ImageMapArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/ImageMapArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/LinkArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/LinkArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/NameArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/NameArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/RoundButtonFilter.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/RoundButtonFilter.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/RoundHrefButtonArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/RoundHrefButtonArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/SoundArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/SoundArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/TickerArea.class
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/TickerArea.java
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/audio/chirp1.au
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/audio/hi.au
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/example1.html
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/imagemapcheat.html
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/images/jim.graham.gif
+jdk%%JDK_VERSION%%/demo/applets/ImageMap/sources.html
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/MouseTrack.class
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/MouseTrack.java
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/example1.html
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/adapt-or-die.au
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/cannot.be.completed.au
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/ip.au
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/that.hurts.au
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/thin.bell.au
+jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds/tiptoe.thru.the.tulips.au
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/Atom.class
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/Matrix3D.class
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/Matrix3D.java
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/XYZApp.class
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/XYZApp.java
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/XYZChemModel.class
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/example1.html
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/example2.html
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/example3.html
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/HyaluronicAcid.xyz
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/benzene.xyz
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/buckminsterfullerine.xyz
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/cyclohexane.xyz
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/ethane.xyz
+jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models/water.xyz
+jdk%%JDK_VERSION%%/demo/applets/NervousText/NervousText.class
+jdk%%JDK_VERSION%%/demo/applets/NervousText/NervousText.java
+jdk%%JDK_VERSION%%/demo/applets/NervousText/example1.html
+jdk%%JDK_VERSION%%/demo/applets/SimpleGraph/GraphApplet.class
+jdk%%JDK_VERSION%%/demo/applets/SimpleGraph/GraphApplet.java
+jdk%%JDK_VERSION%%/demo/applets/SimpleGraph/example1.html
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/BidirBubbleSortAlgorithm.class
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/BidirBubbleSortAlgorithm.java
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/BubbleSortAlgorithm.class
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/BubbleSortAlgorithm.java
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/QSortAlgorithm.class
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/QSortAlgorithm.java
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/SortAlgorithm.class
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/SortAlgorithm.java
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/SortItem.class
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/SortItem.java
+jdk%%JDK_VERSION%%/demo/applets/SortDemo/example1.html
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/Cell.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/CellUpdater.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/InputField.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/Node.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/SpreadSheet.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/SpreadSheet.java
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/SpreadSheetInput.class
+jdk%%JDK_VERSION%%/demo/applets/SpreadSheet/example1.html
+jdk%%JDK_VERSION%%/demo/applets/SymbolTest/SymbolCanvas.class
+jdk%%JDK_VERSION%%/demo/applets/SymbolTest/SymbolTest$MyAdapter.class
+jdk%%JDK_VERSION%%/demo/applets/SymbolTest/SymbolTest.class
+jdk%%JDK_VERSION%%/demo/applets/SymbolTest/SymbolTest.java
+jdk%%JDK_VERSION%%/demo/applets/SymbolTest/example1.html
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/TicTacToe.class
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/TicTacToe.java
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio/beep.au
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio/ding.au
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio/return.au
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio/yahoo1.au
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio/yahoo2.au
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/example1.html
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/images/cross.gif
+jdk%%JDK_VERSION%%/demo/applets/TicTacToe/images/not.gif
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/FileFormatException.class
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/Matrix3D.class
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/Matrix3D.java
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/Model3D.class
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/ThreeD.class
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/ThreeD.java
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/example1.html
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/example2.html
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/example3.html
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/example4.html
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/models/cube.obj
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/models/dinasaur.obj
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/models/hughes_500.obj
+jdk%%JDK_VERSION%%/demo/applets/WireFrame/models/knoxS.obj
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/MSAccess/CreateCoffees.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/MSAccess/CreateCoffees.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/MSAccess/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/Sybase/CreateCoffees.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/Sybase/CreateCoffees.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/Sybase/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/MSAccess/CreateSuppliers.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/MSAccess/CreateSuppliers.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/MSAccess/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/Sybase/CreateSuppliers.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/Sybase/CreateSuppliers.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/Sybase/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/SQLSrvr/InsertCoffees.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/SQLSrvr/InsertCoffees.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/SQLSrvr/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/Sybase/InsertCoffees.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/Sybase/InsertCoffees.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/Sybase/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/MSAccess/InsertSuppliers.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/MSAccess/InsertSuppliers.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/MSAccess/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/Sybase/InsertSuppliers.class
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/Sybase/InsertSuppliers.java
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/Sybase/runnit.bat
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/JavaDB/CAFEJAVA.MDB
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/JavaDB/CAFEJAVA.ldb
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/DBDemos/private.fls
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/FileChooserDemo.jar
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/images/gifIcon.gif
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/images/jpgIcon.jpg
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src/ExampleFileFilter.java
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src/ExampleFileView.java
+jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src/FileChooserDemo.java
+jdk%%JDK_VERSION%%/demo/jfc/Java2D/Java2Demo.html
+jdk%%JDK_VERSION%%/demo/jfc/Java2D/Java2Demo.jar
+jdk%%JDK_VERSION%%/demo/jfc/Java2D/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/back.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/credits.html
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/duke.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/javalogo.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/metal.html
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/metalworks.html
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/swing.html
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles/toc.html
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/Metalworks.jar
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/MyTheme.theme
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_crop.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_draw.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_hand.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_select.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_text.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images/palette_zoom.gif
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/AquaMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/BigContrastMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/ContrastMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/DemoMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/GreenMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/KhakiMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalThemeMenu.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/Metalworks.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalworksDocumentFrame.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalworksFrame.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalworksHelp.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalworksInBox.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/MetalworksPrefs.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/PropertiesMetalTheme.java
+jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src/UISwitchListener.java
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/Notepad.jar
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/Notepad.properties
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/Notepad_fr.properties
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/Notepad_sv.properties
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/copy.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/cut.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/new.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/open.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/paste.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources/save.gif
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/src/ElementTreePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/Notepad/src/Notepad.java
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/SampleTree.jar
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/images/collapsed.gif
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/images/expanded.gif
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src/DynamicTreeNode.java
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src/SampleData.java
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src/SampleTree.java
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src/SampleTreeCellRenderer.java
+jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src/SampleTreeModel.java
+jdk%%JDK_VERSION%%/demo/jfc/SimpleExample/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/SimpleExample/SimpleExample.jar
+jdk%%JDK_VERSION%%/demo/jfc/SimpleExample/src/SimpleExample.java
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/Stylepad.jar
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/Notepad.properties
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/Notepad_fr.properties
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/Notepad_sv.properties
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/Stylepad.properties
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/Stylepad_sv.properties
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/alice.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/bold.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/bullets.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/caterpillar.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/center.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/copy.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/cut.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/fg.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/hatter.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/italic.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/left.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/new.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/open.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/paste.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/rabbit.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/rabbit2.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/right.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/save.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources/underline.gif
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src/ElementTreePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src/HelloWorld.java
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src/Notepad.java
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src/Stylepad.java
+jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src/Wonderland.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/SwingApplet.html
+jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/SwingApplet.jar
+jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/src/SwingApplet.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/Constitution.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/README12.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/SwingSet.jar
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/SwingSetApplet.html
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/SwingSetApplet2.html
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/ToolBar.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/Wonderland.txt
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/bugfixers.html
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/example.html
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/AboutBorder.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/AboutSwing.jpg
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/BigTiger.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/Copyright.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/COPYRIGHT
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/banana.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/broccoli.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/burger.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/cake.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/cantaloupe.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/carrot.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/corn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/donut.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/fries.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/grapes.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/hotdog.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/icecream.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/peach.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/peas.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/pie.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/pizza.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/radish.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/softdrink.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/treat.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food/watermelon.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc/cab.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc/fish.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc/horn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc/moon.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc/sun.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/SmallTiger.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/COPYRIGHT
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/bulb1.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/bulb2.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/bulb3.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/left.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/leftDown.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/leftRollover.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/radio.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/radioPressed.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/radioSelected.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/right.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/rightDown.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice/rightRollover.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/buttonImage2.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/buttonImage3.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/buttonImage4.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/copy.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/cow.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/cowSmall.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/cut.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/document.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/dot.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/duke2.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/dukeMagnify.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/dukeSnooze.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/dukeWave.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/dukeWaveRed.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/folder.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/gifIcon.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/jpgIcon.jpg
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/bl.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/bldn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/bm.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/bmdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/br.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/brdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/c.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/cdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/ml.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/mldn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/mr.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/mrdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/tl.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/tldn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/tm.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/tmdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/toggle.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/toggledn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/tr.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout/trdn.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a1.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a1d.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a2.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a2d.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a3.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a3d.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a4.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a4d.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a5.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list/a5d.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/new.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/noDot.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/open.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/paste.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/amy.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/ges.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/jag.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/jeff.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/mathew.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/nathan.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/phil.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/pl.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/rich.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/rick.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/tim.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people/tom.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/redDot.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/save.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/scrollpane/column.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/scrollpane/corner.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/scrollpane/header.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/swing-64.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/swing.small.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/swingLabelSmall.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/swirl.gif
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/BorderPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/BorderedPanePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ButtonPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/CheckboxPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ComboBoxPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ComponentOrientationChanger.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/DebugGraphicsPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/DirectionPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ExampleFileFilter.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ExampleFileView.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/HtmlPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/InternalWindowPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/LabelPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/LayoutControlPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ListPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ProgressPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/RadioButtonPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ScrollPanePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/SliderPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/SplitPanePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/SwingSet.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/SwingSetApplet.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/TablePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/TextPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ToggleButtonPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/ToolTipPanel.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/TreeCombo.java
+jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src/TreePanel.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/README.txt
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/TableExample.jar
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/JDBCAdapter.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/OldJTable.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableExample.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableExample2.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableExample3.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableExample4.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableMap.java
+jdk%%JDK_VERSION%%/demo/jfc/TableExample/src/TableSorter.java
+jdk%%JDK_VERSION%%/include-old/StubPreamble.h
+jdk%%JDK_VERSION%%/include-old/alloc_cache.h
+jdk%%JDK_VERSION%%/include-old/bag.h
+jdk%%JDK_VERSION%%/include-old/bool.h
+jdk%%JDK_VERSION%%/include-old/breakpoints.h
+jdk%%JDK_VERSION%%/include-old/byteorder.h
+jdk%%JDK_VERSION%%/include-old/common_exceptions.h
+jdk%%JDK_VERSION%%/include-old/debug.h
+jdk%%JDK_VERSION%%/include-old/dll.h
+jdk%%JDK_VERSION%%/include-old/exceptions.h
+jdk%%JDK_VERSION%%/include-old/freebsd/byteorder_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/gc_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/hpi_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/io_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/jmath_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/jni_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/jvm_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/miscdefs_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/path_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/sysmacros_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/timeval_md.h
+jdk%%JDK_VERSION%%/include-old/freebsd/typedefs_md.h
+jdk%%JDK_VERSION%%/include-old/gc.h
+jdk%%JDK_VERSION%%/include-old/hpi.h
+jdk%%JDK_VERSION%%/include-old/interpreter.h
+jdk%%JDK_VERSION%%/include-old/javaString.h
+jdk%%JDK_VERSION%%/include-old/java_lang_ClassLoader.h
+jdk%%JDK_VERSION%%/include-old/java_lang_String.h
+jdk%%JDK_VERSION%%/include-old/java_lang_Thread.h
+jdk%%JDK_VERSION%%/include-old/java_lang_ThreadGroup.h
+jdk%%JDK_VERSION%%/include-old/jcov.h
+jdk%%JDK_VERSION%%/include-old/jit.h
+jdk%%JDK_VERSION%%/include-old/jmath.h
+jdk%%JDK_VERSION%%/include-old/jni.h
+jdk%%JDK_VERSION%%/include-old/jvm.h
+jdk%%JDK_VERSION%%/include-old/jvmdi.h
+jdk%%JDK_VERSION%%/include-old/jvmpi.h
+jdk%%JDK_VERSION%%/include-old/log.h
+jdk%%JDK_VERSION%%/include-old/monitor.h
+jdk%%JDK_VERSION%%/include-old/monitor_cache.h
+jdk%%JDK_VERSION%%/include-old/native.h
+jdk%%JDK_VERSION%%/include-old/oldnmi.h
+jdk%%JDK_VERSION%%/include-old/oobj.h
+jdk%%JDK_VERSION%%/include-old/opcodes.h
+jdk%%JDK_VERSION%%/include-old/path.h
+jdk%%JDK_VERSION%%/include-old/reflect.h
+jdk%%JDK_VERSION%%/include-old/signature.h
+jdk%%JDK_VERSION%%/include-old/sys_api.h
+jdk%%JDK_VERSION%%/include-old/threads.h
+jdk%%JDK_VERSION%%/include-old/tree.h
+jdk%%JDK_VERSION%%/include-old/typecodes.h
+jdk%%JDK_VERSION%%/include-old/typedefs.h
+jdk%%JDK_VERSION%%/include-old/utf.h
+jdk%%JDK_VERSION%%/include-old/util.h
+jdk%%JDK_VERSION%%/include-old/vmprofiler.h
+jdk%%JDK_VERSION%%/include-old/wrap.h
+jdk%%JDK_VERSION%%/include/freebsd/jni_md.h
+jdk%%JDK_VERSION%%/include/jni.h
+jdk%%JDK_VERSION%%/include/jvmdi.h
+jdk%%JDK_VERSION%%/include/jvmpi.h
+jdk%%JDK_VERSION%%/jre/bin/.java_wrapper
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/java
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/keytool
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/policytool
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/rmid
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/rmiregistry
+jdk%%JDK_VERSION%%/jre/bin/i386/green_threads/tnameserv
+jdk%%JDK_VERSION%%/jre/bin/java
+jdk%%JDK_VERSION%%/jre/bin/keytool
+jdk%%JDK_VERSION%%/jre/bin/policytool
+jdk%%JDK_VERSION%%/jre/bin/rmid
+jdk%%JDK_VERSION%%/jre/bin/rmiregistry
+jdk%%JDK_VERSION%%/jre/bin/tnameserv
+jdk%%JDK_VERSION%%/jre/lib/audio/soundbank.gm
+jdk%%JDK_VERSION%%/jre/lib/cmm/CIEXYZ.pf
+jdk%%JDK_VERSION%%/jre/lib/cmm/GRAY.pf
+jdk%%JDK_VERSION%%/jre/lib/cmm/LINEAR_RGB.pf
+jdk%%JDK_VERSION%%/jre/lib/cmm/PYCC.pf
+jdk%%JDK_VERSION%%/jre/lib/cmm/sRGB.pf
+jdk%%JDK_VERSION%%/jre/lib/content-types.properties
+jdk%%JDK_VERSION%%/jre/lib/ext/iiimp.jar
+jdk%%JDK_VERSION%%/jre/lib/flavormap.properties
+jdk%%JDK_VERSION%%/jre/lib/font.properties
+jdk%%JDK_VERSION%%/jre/lib/font.properties.ja
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaBrightDemiBold.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaBrightDemiItalic.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaBrightItalic.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaBrightRegular.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaSansDemiBold.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaSansDemiOblique.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaSansOblique.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaSansRegular.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaTypewriterBold.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaTypewriterBoldOblique.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaTypewriterOblique.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/LucidaTypewriterRegular.ttf
+jdk%%JDK_VERSION%%/jre/lib/fonts/fonts.dir
+jdk%%JDK_VERSION%%/jre/lib/i18n.jar
+jdk%%JDK_VERSION%%/jre/lib/i386/classic/Xusage.txt
+jdk%%JDK_VERSION%%/jre/lib/i386/classic/libjvm.so
+jdk%%JDK_VERSION%%/jre/lib/i386/classic/libjvm.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/classic/libjvm_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/green_threads/libhpi.so
+jdk%%JDK_VERSION%%/jre/lib/i386/green_threads/libhpi.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/green_threads/libhpi_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libJdbcOdbc.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libJdbcOdbc.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libJdbcOdbc_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libagent.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libagent.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libagent_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libaudio.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libaudio.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libaudio_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libawt.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libawt.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libawt_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libcmm.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libcmm.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libcmm_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libdcpr.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libdcpr.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libdcpr_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libfontmanager.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libfontmanager.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libfontmanager_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libhprof.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libhprof.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libhprof_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libjava.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libjava.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libjava_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libjpeg.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libjpeg.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libjpeg_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libmath.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libmath.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libmath_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libmlib_image.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libmlib_image.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libmlib_image_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libnet.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libnet.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libnet_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libsunwjdga.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libsunwjdga.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libsunwjdga_g.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libzip.so
+jdk%%JDK_VERSION%%/jre/lib/i386/libzip.so.1.2.2
+%%DEBUG:%%jdk%%JDK_VERSION%%/jre/lib/i386/libzip_g.so
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/cursors.properties
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/invalid32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_CopyDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_CopyNoDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_LinkDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_LinkNoDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_MoveDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/images/cursors/motif_MoveNoDrop32x32.gif
+jdk%%JDK_VERSION%%/jre/lib/jvm.hprof.txt
+jdk%%JDK_VERSION%%/jre/lib/locale/ja/app-defaults/XApplication
+jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.PCK/app-defaults/XApplication
+jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.UTF-8/app-defaults/XApplication
+jdk%%JDK_VERSION%%/jre/lib/rt.jar
+jdk%%JDK_VERSION%%/jre/lib/security/cacerts
+jdk%%JDK_VERSION%%/jre/lib/security/java.policy
+jdk%%JDK_VERSION%%/jre/lib/security/java.security
+jdk%%JDK_VERSION%%/lib/dt.jar
+jdk%%JDK_VERSION%%/lib/tools.jar
+jdk%%JDK_VERSION%%/src.jar
+@exec mkdir -p %D/share/java/classes
+@exec mkdir -p %D/share/doc/java
+@unexec rmdir %D/share/java/classes 2>/dev/null || true
+@unexec rmdir %D/share/java 2>/dev/null || true
+@unexec rmdir %D/share/doc/java 2>/dev/null || true
+@exec %D/bin/registervm "%D/jdk%%JDK_VERSION%%/bin/java # JDK%%JDK_VERSION%%"
+@unexec %D/bin/unregistervm JDK%%JDK_VERSION%%
+@dirrm jdk%%JDK_VERSION%%/lib
+@dirrm jdk%%JDK_VERSION%%/jre/lib/security
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.UTF-8/app-defaults
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.UTF-8
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.PCK/app-defaults
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja_JP.PCK
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja/app-defaults
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale/ja
+@dirrm jdk%%JDK_VERSION%%/jre/lib/locale
+@dirrm jdk%%JDK_VERSION%%/jre/lib/images/cursors
+@dirrm jdk%%JDK_VERSION%%/jre/lib/images
+@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/green_threads
+@dirrm jdk%%JDK_VERSION%%/jre/lib/i386/classic
+@dirrm jdk%%JDK_VERSION%%/jre/lib/i386
+@dirrm jdk%%JDK_VERSION%%/jre/lib/fonts
+@dirrm jdk%%JDK_VERSION%%/jre/lib/ext
+@dirrm jdk%%JDK_VERSION%%/jre/lib/cmm
+@dirrm jdk%%JDK_VERSION%%/jre/lib/audio
+@dirrm jdk%%JDK_VERSION%%/jre/lib
+@dirrm jdk%%JDK_VERSION%%/jre/bin/i386/green_threads
+@dirrm jdk%%JDK_VERSION%%/jre/bin/i386
+@dirrm jdk%%JDK_VERSION%%/jre/bin
+@dirrm jdk%%JDK_VERSION%%/jre
+@dirrm jdk%%JDK_VERSION%%/include/freebsd
+@dirrm jdk%%JDK_VERSION%%/include-old/freebsd
+@dirrm jdk%%JDK_VERSION%%/include-old
+@dirrm jdk%%JDK_VERSION%%/include
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/TableExample
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/scrollpane
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/people
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/list
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/layout
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/WebSpice
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/misc
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub/food
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images/ImageClub
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet/images
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingSet
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SwingApplet
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad/resources
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Stylepad
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SimpleExample/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SimpleExample
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree/images
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/SampleTree
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad/resources
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Notepad
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/images
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks/HelpFiles
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Metalworks
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/Java2D
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/src
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo/images
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/FileChooserDemo
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/JavaDB
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/Sybase
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers/MSAccess
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertSuppliers
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/Sybase
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees/SQLSrvr
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/InsertCoffees
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/Sybase
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers/MSAccess
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateSuppliers
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/Sybase
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees/MSAccess
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos/CreateCoffees
+@dirrm jdk%%JDK_VERSION%%/demo/jfc/DBDemos
+@dirrm jdk%%JDK_VERSION%%/demo/jfc
+@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame/models
+@dirrm jdk%%JDK_VERSION%%/demo/applets/WireFrame
+@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/images
+@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe/audio
+@dirrm jdk%%JDK_VERSION%%/demo/applets/TicTacToe
+@dirrm jdk%%JDK_VERSION%%/demo/applets/SymbolTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/SpreadSheet
+@dirrm jdk%%JDK_VERSION%%/demo/applets/SortDemo
+@dirrm jdk%%JDK_VERSION%%/demo/applets/SimpleGraph
+@dirrm jdk%%JDK_VERSION%%/demo/applets/NervousText
+@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer/models
+@dirrm jdk%%JDK_VERSION%%/demo/applets/MoleculeViewer
+@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox/sounds
+@dirrm jdk%%JDK_VERSION%%/demo/applets/JumpingBox
+@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/images
+@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap/audio
+@dirrm jdk%%JDK_VERSION%%/demo/applets/ImageMap
+@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphicsTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout/audio
+@dirrm jdk%%JDK_VERSION%%/demo/applets/GraphLayout
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Fractal
+@dirrm jdk%%JDK_VERSION%%/demo/applets/DrawTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/DitherTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Clock
+@dirrm jdk%%JDK_VERSION%%/demo/applets/CardTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Blink
+@dirrm jdk%%JDK_VERSION%%/demo/applets/BarChart
+@dirrm jdk%%JDK_VERSION%%/demo/applets/ArcTest
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/SimpleAnimation
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images/Beans
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/images
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator/audio
+@dirrm jdk%%JDK_VERSION%%/demo/applets/Animator
+@dirrm jdk%%JDK_VERSION%%/demo/applets
+@dirrm jdk%%JDK_VERSION%%/demo
+@dirrm jdk%%JDK_VERSION%%/bin/i386/green_threads
+@dirrm jdk%%JDK_VERSION%%/bin/i386
+@dirrm jdk%%JDK_VERSION%%/bin
+@dirrm jdk%%JDK_VERSION%%