aboutsummaryrefslogtreecommitdiff
path: root/java/openjdk7
diff options
context:
space:
mode:
authorGreg Lewis <glewis@FreeBSD.org>2013-03-10 01:41:07 +0000
committerGreg Lewis <glewis@FreeBSD.org>2013-03-10 01:41:07 +0000
commit3429746801775577ad6e0af85463f25e716435d3 (patch)
treeb62330c31f18f60d77a1e52137e3805efb8571ee /java/openjdk7
parent435587a24f21d6528a876aacbd4855e0b6be9bae (diff)
downloadports-3429746801775577ad6e0af85463f25e716435d3.tar.gz
ports-3429746801775577ad6e0af85463f25e716435d3.zip
Notes
Diffstat (limited to 'java/openjdk7')
-rw-r--r--java/openjdk7/Makefile7
-rw-r--r--java/openjdk7/files/patch-PlainDatagramSocketImpl.c47
-rw-r--r--java/openjdk7/files/patch-bsd_close.c85
-rw-r--r--java/openjdk7/files/patch-set52224
-rw-r--r--java/openjdk7/files/patch-zzz-7u1185
5 files changed, 51789 insertions, 659 deletions
diff --git a/java/openjdk7/Makefile b/java/openjdk7/Makefile
index d244934e32b7..5a2939daa4fe 100644
--- a/java/openjdk7/Makefile
+++ b/java/openjdk7/Makefile
@@ -7,7 +7,6 @@
PORTNAME= openjdk
PORTVERSION= ${JDK_MAJOR_VERSION}.${PORT_MINOR_VERSION}.${PORT_BUILD_NUMBER}
-PORTREVISION= 2
CATEGORIES= java devel
MASTER_SITES= http://download.java.net/openjdk/jdk${JDK_MAJOR_VERSION}u${JDK_MINOR_VERSION}/promoted/b${JDK_BUILD_NUMBER}/ \
http://download.java.net/jaxp/1.4.5/:jaxp \
@@ -41,8 +40,8 @@ DEBUG_DESC= Enable extra debugging info
POLICY_DESC= Install the Unlimited Strength Policy Files
TZUPDATE_DESC= Update the time zone data
-PORT_MINOR_VERSION= 11
-PORT_BUILD_NUMBER= 21
+PORT_MINOR_VERSION= 17
+PORT_BUILD_NUMBER= 02
JDK_MAJOR_VERSION= 7
JDK_MINOR_VERSION= 6
JDK_BUILD_NUMBER= 24
@@ -96,7 +95,7 @@ MAKE_ENV+= LANG="C" \
ENABLE_FULL_DEBUG_SYMBOLS=0 \
PTHREAD_LIBS="${PTHREAD_LIBS}" \
MILESTONE="fcs" \
- JDK_MICRO_VERSION="0_0${PORT_MINOR_VERSION}" \
+ JDK_MICRO_VERSION="0_${PORT_MINOR_VERSION}" \
BUILD_NUMBER="b${PORT_BUILD_NUMBER}"
.if !defined(DISABLE_MAKE_JOBS)
diff --git a/java/openjdk7/files/patch-PlainDatagramSocketImpl.c b/java/openjdk7/files/patch-PlainDatagramSocketImpl.c
deleted file mode 100644
index d0e74cd80a07..000000000000
--- a/java/openjdk7/files/patch-PlainDatagramSocketImpl.c
+++ /dev/null
@@ -1,47 +0,0 @@
-
-# HG changeset patch
-# User kurt
-# Date 1359762569 18000
-# Node ID bfa676f5b5db6a9c1c0e158eb40856c1b7f5f258
-# Parent c721254e908da6aea0879f3d0e715003ff675525
-- Fix MulticastSocket.setInterface() for BSD. Report and fix from Oliver
- Lehmann on bsd-port list.
-
---- jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c Fri Jan 25 11:40:12 2013 -0500
-+++ jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c Fri Feb 01 18:49:29 2013 -0500
-@@ -1358,7 +1358,7 @@ static void setMulticastInterface(JNIEnv
- * value is an InetAddress.
- */
- #ifdef AF_INET6
--#if defined(__solaris__) || defined(MACOSX)
-+#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
- if (ipv6_available()) {
- mcast_set_if_by_addr_v6(env, this, fd, value);
- } else {
-@@ -1381,7 +1381,7 @@ static void setMulticastInterface(JNIEnv
- * value is a NetworkInterface.
- */
- #ifdef AF_INET6
--#if defined(__solaris__) || defined(MACOSX)
-+#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
- if (ipv6_available()) {
- mcast_set_if_by_if_v6(env, this, fd, value);
- } else {
-@@ -1464,7 +1464,7 @@ static void setMulticastLoopbackMode(JNI
- static void setMulticastLoopbackMode(JNIEnv *env, jobject this, int fd,
- jint opt, jobject value) {
- #ifdef AF_INET6
--#if defined(__solaris__) || defined(MACOSX)
-+#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
- if (ipv6_available()) {
- mcast_set_loop_v6(env, this, fd, value);
- } else {
-@@ -2038,7 +2038,7 @@ Java_java_net_PlainDatagramSocketImpl_se
- }
- /* setsockopt to be correct ttl */
- #ifdef AF_INET6
--#if defined(__solaris__) || defined(MACOSX)
-+#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
- if (ipv6_available()) {
- setHopLimit(env, fd, ttl);
- } else {
diff --git a/java/openjdk7/files/patch-bsd_close.c b/java/openjdk7/files/patch-bsd_close.c
deleted file mode 100644
index 8edb10f6d2f8..000000000000
--- a/java/openjdk7/files/patch-bsd_close.c
+++ /dev/null
@@ -1,85 +0,0 @@
---- jdk/src/solaris/native/java/net/bsd_close.c Wed Jan 16 16:04:50 2013 -0800
-+++ jdk/src/solaris/native/java/net/bsd_close.c Thu Jan 17 22:14:02 2013 -0800
-@@ -345,6 +345,76 @@
- * signal other than our wakeup signal.
- */
- int NET_Timeout(int s, long timeout) {
-+/*
-+ * On MacOS X, poll(2) is not working correctly, so a select(2) based
-+ * implementation is preferred. See
-+ *
-+ * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7131399
-+ *
-+ * However, on FreeBSD, the select(2) based implementation can cause
-+ * crashes under load and poll(2) is preferred. See
-+ *
-+ * http://docs.freebsd.org/cgi/getmsg.cgi?fetch=215525+0+current/freebsd-java
-+ *
-+ * Other *BSD should adjust as appropriate.
-+ */
-+#ifdef __FreeBSD__
-+ long prevtime = 0, newtime;
-+ struct timeval t;
-+ fdEntry_t *fdEntry = getFdEntry(s);
-+
-+ /*
-+ * Check that fd hasn't been closed.
-+ */
-+ if (fdEntry == NULL) {
-+ errno = EBADF;
-+ return -1;
-+ }
-+
-+ /*
-+ * Pick up current time as may need to adjust timeout
-+ */
-+ if (timeout > 0) {
-+ gettimeofday(&t, NULL);
-+ prevtime = t.tv_sec * 1000 + t.tv_usec / 1000;
-+ }
-+
-+ for(;;) {
-+ struct pollfd pfd;
-+ int rv;
-+ threadEntry_t self;
-+
-+ /*
-+ * Poll the fd. If interrupted by our wakeup signal
-+ * errno will be set to EBADF.
-+ */
-+ pfd.fd = s;
-+ pfd.events = POLLIN | POLLERR;
-+
-+ startOp(fdEntry, &self);
-+ rv = poll(&pfd, 1, timeout);
-+ endOp(fdEntry, &self);
-+
-+ /*
-+ * If interrupted then adjust timeout. If timeout
-+ * has expired return 0 (indicating timeout expired).
-+ */
-+ if (rv < 0 && errno == EINTR) {
-+ if (timeout > 0) {
-+ gettimeofday(&t, NULL);
-+ newtime = t.tv_sec * 1000 + t.tv_usec / 1000;
-+ timeout -= newtime - prevtime;
-+ if (timeout <= 0) {
-+ return 0;
-+ }
-+ prevtime = newtime;
-+ }
-+ } else {
-+ return rv;
-+ }
-+
-+ }
-+#else
- long prevtime = 0, newtime;
- struct timeval t, *tp = &t;
- fdEntry_t *fdEntry = getFdEntry(s);
-@@ -414,4 +484,5 @@
- }
-
- }
-+#endif
- }
diff --git a/java/openjdk7/files/patch-set b/java/openjdk7/files/patch-set
index 4395cff3629d..d3b9d130c8ed 100644
--- a/java/openjdk7/files/patch-set
+++ b/java/openjdk7/files/patch-set
@@ -1,5 +1,5 @@
--- .hgtags 2012-08-10 09:07:00.000000000 -0700
-+++ .hgtags 2013-01-16 08:57:46.000000000 -0800
++++ .hgtags 2013-03-09 08:44:35.000000000 -0800
@@ -123,6 +123,7 @@
2d38c2a79c144c30cd04d143d83ee7ec6af40771 jdk7-b146
3ac30b3852876ccad6bd61697b5f9efa91ca7bc6 jdk7u1-b01
@@ -8,7 +8,7 @@
34451dc0580d5c95d97b95a564e6198f36545d68 jdk7u1-b02
bf735d852f79bdbb3373c777eec3ff27e035e7ba jdk7u1-b03
f66a2bada589f4157789e6f66472954d2f1c114e jdk7u1-b04
-@@ -197,5 +198,27 @@
+@@ -197,5 +198,46 @@
29f6fb1833eb2a696b95e8985126f2d70f511a82 jdk7u6-b21
31cdab09d719fe60876c7f3a472386c1455d93e2 jdk7u6-b22
d1c709f1196a73d1df10d04a221b10e30fd2eb48 jdk7u6-b23
@@ -38,8 +38,27 @@
+c8a37a49fc90ae31b864544d6d4a9f6137d4995d jdk7u10-b16
+494e838439db7f0f4e36f7dcfeba06d2bef78c8d jdk7u10-b17
+dce9058d2151e6b5c84898c13cfd1521a627a296 jdk7u10-b18
++b5fb925394331313dbe3859fdc408bfd37193476 jdk7u10-b30
++c2d5141baeda6c9b5bbc83c21eff9c3940fefae4 jdk7u11-b20
++168aa0f1417b3651a955ae66068dc148b660f829 jdk7u11-b21
++c8a37a49fc90ae31b864544d6d4a9f6137d4995d jdk7u11-b03
++0b418e2ccf9093718609144689d1a8b316ad951f jdk7u11-b04
++e127e6c94b56f7348df67d9672c16a7dc9c5ec5e jdk7u11-b05
++f6abff072aabfee866342d9f7f4aac7d13450ddf jdk7u11-b06
++80a3d0bcd3d4c9e83b75416178bdd60a2d23ebbc jdk7u11-b07
++e7c55def6796d3c426631b5717084ef122908847 jdk7u11-b08
++2412f7b8551ede5296cb6e1d6189f40aad9eeffe jdk7u13-b09
++3b7815df113f8044039739276237b964ee8fa015 jdk7u13-b10
++527d3cf769ec073d7348e4c31f97c47c943c96b6 jdk7u13-b30
++3b7815df113f8044039739276237b964ee8fa015 jdk7u13-b20
++0e52db2d9bb8bc789f6c66f2cfb7cd2d3b0b16c6 jdk7u15-b01
++0324fca94d073b3aad77658224f17679f25c18b1 jdk7u15-b02
++25a9d44cebf2a7ac6dd1748c94e00b242403acb1 jdk7u15-b30
++f37a75bd39595ba38bdc53ee957c63bbb3cbb12d jdk7u15-b03
++2412f7b8551ede5296cb6e1d6189f40aad9eeffe jdk7u15-b32
++0c2b2dae93e7a720bbcc2e13a1913a2264335554 jdk7u17-b01
--- corba/.hgtags 2012-08-10 09:09:50.000000000 -0700
-+++ corba/.hgtags 2013-01-16 08:57:47.000000000 -0800
++++ corba/.hgtags 2013-03-09 08:44:37.000000000 -0800
@@ -123,6 +123,7 @@
770227a4087e4e401fe87ccd19738440111c3948 jdk7-b146
36f0efbc66ef8ace3cca8aa8d0c88f3334080f8a jdk7u1-b01
@@ -48,7 +67,7 @@
9515a2d034b4727c11aeea36354a549fbc469c4f jdk7u1-b02
dd71cb354c573c1addcda269a7dd9144bfce9587 jdk7u1-b03
eaee830124aa453627591d8f9eccb39d7e040876 jdk7u1-b04
-@@ -197,5 +198,27 @@
+@@ -197,5 +198,46 @@
353c15c4bc371f2f8258344c988d1403477cc140 jdk7u6-b21
793b80c0316fcafa18668bced26acb41af3be07d jdk7u6-b22
2a8376123fbb81bc4b2f643ff7cfaf7f87b21c35 jdk7u6-b23
@@ -78,6 +97,4261 @@
+64f09d7549d304fbfd3c29b4f148bf44e8e3e979 jdk7u10-b16
+57c3355153d1624fd98618097c1a82ab3ffc66f8 jdk7u10-b17
+f2a347637a55fa4de9542a8dcab72ad6fac44d2b jdk7u10-b18
++22cf8bc2ec47498fe548b308a81be0486dd7e3d0 jdk7u10-b30
++e7952daece16b27d69cb78f6912407c3bbaf8e83 jdk7u11-b20
++dff0f0272891b1d53497d9525567959b73476ff9 jdk7u11-b21
++96a3c68e5741dc9ab5cb0da426511eb15fd29ede jdk7u11-b03
++1413b173730f4796fca42c89eeb804a5935b0264 jdk7u11-b04
++5c49a17bc15f4fd4722746788f5130df132cd038 jdk7u11-b05
++30057c20fbb3caa61857656d05421e56731184f2 jdk7u11-b06
++9d9440d1fa2dd872c2a2b564fc5fa4d3555afab6 jdk7u11-b07
++983fac5b27376839142ac5a8770461e4e48c2dc8 jdk7u11-b08
++b192d148731916e4b1b47b7a3e6b0a1d7ddf3f14 jdk7u13-b09
++b9ab9b203a41469a274419d26be2c04558b57ce8 jdk7u13-b10
++f5ef46204dba19679edd7492b221110fd1a0bd33 jdk7u13-b30
++b9ab9b203a41469a274419d26be2c04558b57ce8 jdk7u13-b20
++622e370c2d1e8c5f48d8f520f486dc6fcc1239c5 jdk7u15-b01
++30188388048333e213a839363329ac2cb0cf0e0d jdk7u15-b02
++7f0e7ce088ff554f64e2c102ae3718ae4d580c34 jdk7u15-b30
++e5b996dabec6ac6aa12705ce678642605ea9d476 jdk7u15-b03
++b192d148731916e4b1b47b7a3e6b0a1d7ddf3f14 jdk7u15-b32
++94e8b9b0e0ef1685e2f2fcc886e08a42a85c8e03 jdk7u17-b01
+--- corba/make/com/sun/corba/minclude/com_sun_corba_se_impl_orbutil.jmk 2012-08-10 09:09:53.000000000 -0700
++++ corba/make/com/sun/corba/minclude/com_sun_corba_se_impl_orbutil.jmk 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ #
+-# Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
++# Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ #
+ # This code is free software; you can redistribute it and/or modify it
+@@ -29,10 +29,6 @@
+ com/sun/corba/se/impl/orbutil/DenseIntMapImpl.java \
+ com/sun/corba/se/impl/orbutil/GetPropertyAction.java \
+ com/sun/corba/se/impl/orbutil/HexOutputStream.java \
+- com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3.java \
+- com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3_1.java \
+- com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3.java \
+- com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3_1.java \
+ com/sun/corba/se/impl/orbutil/LegacyHookGetFields.java \
+ com/sun/corba/se/impl/orbutil/LegacyHookPutFields.java \
+ com/sun/corba/se/impl/orbutil/LogKeywords.java \
+@@ -45,19 +41,11 @@
+ com/sun/corba/se/impl/orbutil/ORBUtility.java \
+ com/sun/corba/se/impl/orbutil/ORBClassLoader.java \
+ com/sun/corba/se/impl/orbutil/RepIdDelegator.java \
+- com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3.java \
+- com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3_1.java \
+- com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3.java \
+- com/sun/corba/se/impl/orbutil/RepositoryId_1_3.java \
+ com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java \
+ com/sun/corba/se/impl/orbutil/RepositoryIdStrings.java \
+ com/sun/corba/se/impl/orbutil/RepositoryIdUtility.java \
+ com/sun/corba/se/impl/orbutil/RepositoryIdInterface.java \
+- com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3_1.java \
+- com/sun/corba/se/impl/orbutil/RepositoryId_1_3_1.java \
+ com/sun/corba/se/impl/orbutil/StackImpl.java \
+- com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3_1.java \
+- com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3.java \
+ com/sun/corba/se/impl/orbutil/closure/Future.java \
+ com/sun/corba/se/impl/orbutil/closure/Constant.java \
+ com/sun/corba/se/impl/orbutil/concurrent/Sync.java \
+--- corba/src/share/classes/com/sun/corba/se/impl/activation/ServerMain.java 2012-08-10 09:10:11.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/activation/ServerMain.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1997, 2002, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -322,9 +322,9 @@
+ com.sun.corba.se.spi.activation._ServerImplBase
+ {
+ private ORB orb;
+- private Method installMethod ;
+- private Method uninstallMethod ;
+- private Method shutdownMethod ;
++ private transient Method installMethod ;
++ private transient Method uninstallMethod ;
++ private transient Method shutdownMethod ;
+ private Object methodArgs[] ;
+
+ ServerCallback(ORB orb, Method installMethod, Method uninstallMethod,
+--- corba/src/share/classes/com/sun/corba/se/impl/corba/AnyImpl.java 2012-08-10 09:10:12.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/corba/AnyImpl.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -1218,7 +1218,7 @@
+ // See bug 4391648 for more info about the tcORB in this
+ // case.
+ RepositoryIdStrings repStrs
+- = RepositoryIdFactory.getRepIdStringsFactory(tcORB);
++ = RepositoryIdFactory.getRepIdStringsFactory();
+
+
+ // Assertion: c instanceof Serializable?
+@@ -1251,7 +1251,7 @@
+ // Anything else
+ // We know that this is a TypeCodeImpl since it is our ORB
+ classTC = (TypeCodeImpl)ValueUtility.createTypeCodeForClass(
+- tcORB, c, ORBUtility.createValueHandler(tcORB));
++ tcORB, c, ORBUtility.createValueHandler());
+ // Intruct classTC to store its buffer
+ classTC.setCaching(true);
+ // Update the cache
+--- corba/src/share/classes/com/sun/corba/se/impl/encoding/CDRInputStream_1_0.java 2012-08-10 09:10:15.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/encoding/CDRInputStream_1_0.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -269,8 +269,8 @@
+
+ private final void createRepositoryIdHandlers()
+ {
+- repIdUtil = RepositoryIdFactory.getRepIdUtility(orb);
+- repIdStrs = RepositoryIdFactory.getRepIdStringsFactory(orb);
++ repIdUtil = RepositoryIdFactory.getRepIdUtility();
++ repIdStrs = RepositoryIdFactory.getRepIdStringsFactory();
+ }
+
+ public GIOPVersion getGIOPVersion() {
+@@ -564,10 +564,7 @@
+
+ checkForNegativeLength(len);
+
+- if (orb != null && ORBUtility.isLegacyORB((ORB)orb))
+- return legacyReadString(len);
+- else
+- return internalReadString(len);
++ return internalReadString(len);
+ }
+
+ private final String internalReadString(int len) {
+@@ -588,54 +585,6 @@
+ return new String(result, 0, getCharConverter().getNumChars());
+ }
+
+- private final String legacyReadString(int len) {
+-
+- //
+- // Workaround for ORBs which send string lengths of
+- // zero to mean empty string.
+- //
+- //
+- // IMPORTANT: Do not replace 'new String("")' with "", it may result
+- // in a Serialization bug (See serialization.zerolengthstring) and
+- // bug id: 4728756 for details
+- if (len == 0)
+- return new String("");
+-
+- len--;
+- char[] c = new char[len];
+-
+- int n = 0;
+- while (n < len) {
+- int avail;
+- int bytes;
+- int wanted;
+-
+- avail = bbwi.buflen - bbwi.position();
+- if (avail <= 0) {
+- grow(1, 1);
+- avail = bbwi.buflen - bbwi.position();
+- }
+- wanted = len - n;
+- bytes = (wanted < avail) ? wanted : avail;
+- // Microbenchmarks are showing a loop of ByteBuffer.get(int) being
+- // faster than ByteBuffer.get(byte[], int, int).
+- for (int i=0; i<bytes; i++) {
+- c[n+i] = (char) (bbwi.byteBuffer.get(bbwi.position()+i) & 0xFF);
+- }
+- bbwi.position(bbwi.position() + bytes);
+- n += bytes;
+- }
+-
+- //
+- // Skip past terminating null byte
+- //
+- if (bbwi.position() + 1 > bbwi.buflen)
+- alignAndCheck(1, 1);
+- bbwi.position(bbwi.position() + 1);
+-
+- return new String(c);
+- }
+-
+ public final String read_string() {
+ return readStringOrIndirection(false);
+ }
+@@ -1045,7 +994,7 @@
+
+ try {
+ if (valueHandler == null)
+- valueHandler = ORBUtility.createValueHandler(orb);
++ valueHandler = ORBUtility.createValueHandler();
+
+ value = valueHandler.readValue(parent,
+ indirection,
+--- corba/src/share/classes/com/sun/corba/se/impl/encoding/CDROutputStream_1_0.java 2012-08-10 09:10:15.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/encoding/CDROutputStream_1_0.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -189,18 +189,8 @@
+
+ private final void createRepositoryIdHandlers()
+ {
+- if (orb != null) {
+- // Get the appropriate versions based on the ORB version. The
+- // ORB versioning info is only in the core ORB.
+- repIdUtil
+- = RepositoryIdFactory.getRepIdUtility(orb);
+- repIdStrs
+- = RepositoryIdFactory.getRepIdStringsFactory(orb);
+- } else {
+- // Get the latest versions
+- repIdUtil = RepositoryIdFactory.getRepIdUtility();
+- repIdStrs = RepositoryIdFactory.getRepIdStringsFactory();
+- }
++ repIdUtil = RepositoryIdFactory.getRepIdUtility();
++ repIdStrs = RepositoryIdFactory.getRepIdStringsFactory();
+ }
+
+ public BufferManagerWrite getBufferManager()
+@@ -705,7 +695,7 @@
+ private void writeArray(Serializable array, Class clazz) {
+
+ if (valueHandler == null)
+- valueHandler = ORBUtility.createValueHandler(orb); //d11638
++ valueHandler = ORBUtility.createValueHandler(); //d11638
+
+ // Write value_tag
+ int indirection = writeValueTag(mustChunk, true,
+@@ -768,7 +758,7 @@
+
+ private void writeRMIIIOPValueType(Serializable object, Class clazz) {
+ if (valueHandler == null)
+- valueHandler = ORBUtility.createValueHandler(orb); //d11638
++ valueHandler = ORBUtility.createValueHandler(); //d11638
+
+ Serializable key = object;
+
+--- corba/src/share/classes/com/sun/corba/se/impl/io/FVDCodeBaseImpl.java 2012-08-10 09:10:18.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/io/FVDCodeBaseImpl.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -86,7 +86,7 @@
+ // default to using the current ORB version in case the
+ // vhandler is not set
+ if (vhandler == null) {
+- vhandler = new ValueHandlerImpl(false);
++ vhandler = ValueHandlerImpl.getInstance(false);
+ }
+
+ // Util.getCodebase may return null which would
+@@ -120,7 +120,7 @@
+ // default to using the current ORB version in case the
+ // vhandler is not set
+ if (vhandler == null) {
+- vhandler = new ValueHandlerImpl(false);
++ vhandler = ValueHandlerImpl.getInstance(false);
+ }
+
+ try{
+@@ -161,7 +161,7 @@
+ // default to using the current ORB version in case the
+ // vhandler is not set
+ if (vhandler == null) {
+- vhandler = new ValueHandlerImpl(false);
++ vhandler = ValueHandlerImpl.getInstance(false);
+ }
+
+ Stack repIds = new Stack();
+--- corba/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java 2012-08-10 09:10:18.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/io/ObjectStreamClass.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -25,7 +25,7 @@
+ /*
+ * Licensed Materials - Property of IBM
+ * RMI-IIOP v1.0
+- * Copyright IBM Corp. 1998 1999 All Rights Reserved
++ * Copyright IBM Corp. 1998 2012 All Rights Reserved
+ *
+ */
+
+@@ -56,7 +56,8 @@
+
+ import java.util.Arrays;
+ import java.util.Comparator;
+-import java.util.Hashtable;
++import java.util.concurrent.ConcurrentHashMap;
++import java.util.concurrent.ConcurrentMap;
+
+ import com.sun.corba.se.impl.util.RepositoryId;
+
+@@ -83,8 +84,6 @@
+ private static Object noArgsList[] = {};
+ private static Class noTypesList[] = {};
+
+- private static Hashtable translatedFields;
+-
+ /** true if represents enum type */
+ private boolean isEnum;
+
+@@ -384,6 +383,55 @@
+ */
+ }
+
++ private static final class PersistentFieldsValue {
++ private final ConcurrentMap map = new ConcurrentHashMap();
++ private static final Object NULL_VALUE =
++ (PersistentFieldsValue.class.getName() + ".NULL_VALUE");
++
++ PersistentFieldsValue() { }
++
++ ObjectStreamField[] get(Class type) {
++ Object value = map.get(type);
++ if (value == null) {
++ value = computeValue(type);
++ map.putIfAbsent(type, value);
++ }
++ return ((value == NULL_VALUE) ? null : (ObjectStreamField[])value);
++ }
++
++ private static Object computeValue(Class<?> type) {
++ try {
++ Field pf = type.getDeclaredField("serialPersistentFields");
++ int mods = pf.getModifiers();
++ if (Modifier.isPrivate(mods) && Modifier.isStatic(mods) &&
++ Modifier.isFinal(mods)) {
++ pf.setAccessible(true);
++ java.io.ObjectStreamField[] fields =
++ (java.io.ObjectStreamField[])pf.get(type);
++ return translateFields(fields);
++ }
++ } catch (NoSuchFieldException e1) {
++ } catch (IllegalAccessException e2) {
++ } catch (IllegalArgumentException e3) {
++ } catch (ClassCastException e4) { }
++ return NULL_VALUE;
++ }
++
++ private static ObjectStreamField[] translateFields(
++ java.io.ObjectStreamField[] fields) {
++ ObjectStreamField[] translation =
++ new ObjectStreamField[fields.length];
++ for (int i = 0; i < fields.length; i++) {
++ translation[i] = new ObjectStreamField(fields[i].getName(),
++ fields[i].getType());
++ }
++ return translation;
++ }
++ }
++
++ private static final PersistentFieldsValue persistentFieldsValue =
++ new PersistentFieldsValue();
++
+ /*
+ * Initialize class descriptor. This method is only invoked on class
+ * descriptors created via calls to lookupInternal(). This method is kept
+@@ -416,35 +464,7 @@
+ * If it is declared, use the declared serialPersistentFields.
+ * Otherwise, extract the fields from the class itself.
+ */
+- try {
+- Field pf = cl.getDeclaredField("serialPersistentFields");
+- // serial bug 7; the serialPersistentFields were not
+- // being read and stored as Accessible bit was not set
+- pf.setAccessible(true);
+- // serial bug 7; need to find if the field is of type
+- // java.io.ObjectStreamField
+- java.io.ObjectStreamField[] f =
+- (java.io.ObjectStreamField[])pf.get(cl);
+- int mods = pf.getModifiers();
+- if ((Modifier.isPrivate(mods)) &&
+- (Modifier.isStatic(mods)) &&
+- (Modifier.isFinal(mods)))
+- {
+- fields = (ObjectStreamField[])translateFields((Object[])pf.get(cl));
+- }
+- } catch (NoSuchFieldException e) {
+- fields = null;
+- } catch (IllegalAccessException e) {
+- fields = null;
+- } catch (IllegalArgumentException e) {
+- fields = null;
+- } catch (ClassCastException e) {
+- /* Thrown if a field serialPersistentField exists
+- * but it is not of type ObjectStreamField.
+- */
+- fields = null;
+- }
+-
++ fields = persistentFieldsValue.get(cl);
+
+ if (fields == null) {
+ /* Get all of the declared fields for this
+@@ -641,44 +661,6 @@
+ superclass = null;
+ }
+
+- private static Object[] translateFields(Object objs[])
+- throws NoSuchFieldException {
+- try{
+- java.io.ObjectStreamField fields[] = (java.io.ObjectStreamField[])objs;
+- Object translation[] = null;
+-
+- if (translatedFields == null)
+- translatedFields = new Hashtable();
+-
+- translation = (Object[])translatedFields.get(fields);
+-
+- if (translation != null)
+- return translation;
+- else {
+- Class osfClass = Class.forName("com.sun.corba.se.impl.io.ObjectStreamField");
+- translation = (Object[])java.lang.reflect.Array.newInstance(osfClass, objs.length);
+- Object arg[] = new Object[2];
+- Class types[] = {String.class, Class.class};
+- Constructor constructor = osfClass.getDeclaredConstructor(types);
+- for (int i = fields.length -1; i >= 0; i--){
+- arg[0] = fields[i].getName();
+- arg[1] = fields[i].getType();
+-
+- translation[i] = constructor.newInstance(arg);
+- }
+- translatedFields.put(fields, translation);
+-
+- }
+-
+- return (Object[])translation;
+- }
+- catch(Throwable t){
+- NoSuchFieldException nsfe = new NoSuchFieldException();
+- nsfe.initCause( t ) ;
+- throw nsfe ;
+- }
+- }
+-
+ /*
+ * Set the class this version descriptor matches.
+ * The base class name and serializable hash must match.
+@@ -1555,8 +1537,8 @@
+ private boolean hasExternalizableBlockData;
+ Method writeObjectMethod;
+ Method readObjectMethod;
+- private Method writeReplaceObjectMethod;
+- private Method readResolveObjectMethod;
++ private transient Method writeReplaceObjectMethod;
++ private transient Method readResolveObjectMethod;
+ private Constructor cons ;
+
+ /**
+--- corba/src/share/classes/com/sun/corba/se/impl/io/ValueHandlerImpl.java 2012-08-10 09:10:19.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/io/ValueHandlerImpl.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1998, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -53,7 +53,7 @@
+ import com.sun.corba.se.impl.logging.OMGSystemException;
+ import com.sun.corba.se.impl.logging.UtilSystemException;
+
+-public class ValueHandlerImpl implements javax.rmi.CORBA.ValueHandlerMultiFormat {
++public final class ValueHandlerImpl implements javax.rmi.CORBA.ValueHandlerMultiFormat {
+
+ // Property to override our maximum stream format version
+ public static final String FORMAT_VERSION_PROPERTY
+@@ -150,14 +150,22 @@
+ writeValueWithVersion(out, value, streamFormatVersion);
+ }
+
+- public ValueHandlerImpl(){}
++ private ValueHandlerImpl(){}
+
+- public ValueHandlerImpl(boolean isInputStream) {
++ private ValueHandlerImpl(boolean isInputStream) {
+ this();
+ useHashtables = false;
+ this.isInputStream = isInputStream;
+ }
+
++ static ValueHandlerImpl getInstance() {
++ return new ValueHandlerImpl();
++ }
++
++ static ValueHandlerImpl getInstance(boolean isInputStream) {
++ return new ValueHandlerImpl(isInputStream);
++ }
++
+ /**
+ * Writes the value to the stream using java semantics.
+ * @param out The stream to write the value to
+@@ -458,12 +466,7 @@
+ return ObjectStreamClass.lookup(value.getClass()).writeReplace(value);
+ }
+
+- /**
+- * Encapsulates writing of Java char arrays so that the 1.3 subclass
+- * can override it without exposing internals across packages. This
+- * is a fix for bug 4367783.
+- */
+- protected void writeCharArray(org.omg.CORBA_2_3.portable.OutputStream out,
++ private void writeCharArray(org.omg.CORBA_2_3.portable.OutputStream out,
+ char[] array,
+ int offset,
+ int length)
+@@ -576,12 +579,7 @@
+ }
+ }
+
+- /**
+- * Encapsulates reading of Java char arrays so that the 1.3 subclass
+- * can override it without exposing internals across packages. This
+- * is a fix for bug 4367783.
+- */
+- protected void readCharArray(org.omg.CORBA_2_3.portable.InputStream in,
++ private void readCharArray(org.omg.CORBA_2_3.portable.InputStream in,
+ char[] array,
+ int offset,
+ int length)
+@@ -795,7 +793,7 @@
+ return RepositoryId.cache.getId(repId).isSequence();
+ }
+
+- protected String getOutputStreamClassName() {
++ private String getOutputStreamClassName() {
+ return "com.sun.corba.se.impl.io.IIOPOutputStream";
+ }
+
+@@ -843,29 +841,11 @@
+ private IIOPOutputStream createOutputStreamBuiltInNoPriv(
+ final String name
+ ) throws IOException {
+- return
+- name.equals(
+- IIOPOutputStream
+- .class.getName()
+- ) ?
+- new IIOPOutputStream() :
+-
+- name.equals(
+- com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3
+- .class.getName()
+- ) ?
+- new com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3() :
+-
+- name.equals(
+- com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3_1
+- .class.getName()
+- ) ?
+- new com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3_1() :
+-
+- null;
++ return name.equals(IIOPOutputStream.class.getName()) ?
++ new IIOPOutputStream() : null;
+ }
+
+- protected String getInputStreamClassName() {
++ private String getInputStreamClassName() {
+ return "com.sun.corba.se.impl.io.IIOPInputStream";
+ }
+
+@@ -913,26 +893,8 @@
+ private IIOPInputStream createInputStreamBuiltInNoPriv(
+ final String name
+ ) throws IOException {
+- return
+- name.equals(
+- IIOPInputStream
+- .class.getName()
+- ) ?
+- new IIOPInputStream() :
+-
+- name.equals(
+- com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3
+- .class.getName()
+- ) ?
+- new com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3() :
+-
+- name.equals(
+- com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3_1
+- .class.getName()
+- ) ?
+- new com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3_1() :
+-
+- null;
++ return name.equals(IIOPInputStream.class.getName()) ?
++ new IIOPInputStream() : null;
+ }
+
+ /**
+@@ -958,12 +920,7 @@
+
+ }
+
+- /**
+- * Our JDK 1.3 and JDK 1.3.1 behavior subclasses override this.
+- * The correct behavior is for a Java char to map to a CORBA wchar,
+- * but our older code mapped it to a CORBA char.
+- */
+- protected TCKind getJavaCharTCKind() {
++ TCKind getJavaCharTCKind() {
+ return TCKind.tk_wchar;
+ }
+ }
+--- corba/src/share/classes/com/sun/corba/se/impl/io/ValueUtility.java 2012-08-10 09:10:19.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/io/ValueUtility.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -93,6 +93,14 @@
+ null, // tk_abstract_interface 32
+ };
+
++ static {
++ sun.corba.SharedSecrets.setJavaCorbaAccess(new sun.corba.JavaCorbaAccess() {
++ public ValueHandlerImpl newValueHandlerImpl() {
++ return ValueHandlerImpl.getInstance();
++ }
++ });
++ }
++
+ public static String getSignature(ValueMember member)
+ throws ClassNotFoundException {
+
+--- corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/Util.java 2012-08-10 09:10:23.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/Util.java 2013-03-09 08:44:36.000000000 -0800
+@@ -112,6 +112,9 @@
+ import com.sun.corba.se.impl.orbutil.ORBClassLoader;
+ import com.sun.corba.se.impl.logging.UtilSystemException;
+ import com.sun.corba.se.spi.logging.CORBALogDomains;
++import sun.corba.SharedSecrets;
++import sun.corba.JavaCorbaAccess;
++
+
+ /**
+ * Provides utility methods that can be used by stubs and ties to
+@@ -125,7 +128,8 @@
+ // Maps targets to ties.
+ private static IdentityHashtable exportedServants = new IdentityHashtable();
+
+- private static ValueHandlerImpl valueHandlerSingleton = new ValueHandlerImpl();
++ private static final ValueHandlerImpl valueHandlerSingleton =
++ SharedSecrets.getJavaCorbaAccess().newValueHandlerImpl();
+
+ private UtilSystemException utilWrapper = UtilSystemException.get(
+ CORBALogDomains.RPC_ENCODING);
+--- corba/src/share/classes/com/sun/corba/se/impl/orb/ORBImpl.java 2012-08-10 09:10:31.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orb/ORBImpl.java 2013-03-09 08:44:36.000000000 -0800
+@@ -840,7 +840,7 @@
+ // backward compatability 4365188
+ CodeBase cb;
+
+- ValueHandler vh = ORBUtility.createValueHandler(this);
++ ValueHandler vh = ORBUtility.createValueHandler();
+
+ cb = (CodeBase)vh.getRunTimeCodeBase();
+ return ORBUtility.connectAndGetIOR( this, cb ) ;
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3.java 2012-08-10 09:10:32.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,57 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.io.*;
+-import java.util.Hashtable;
+-
+-/**
+- * Implements legacy behavior from before Ladybird to maintain
+- * backwards compatibility.
+- */
+-public class IIOPInputStream_1_3 extends com.sun.corba.se.impl.io.IIOPInputStream
+-{
+- // The newer version in the io package correctly reads a wstring instead.
+- // This concerns bug 4379597.
+- protected String internalReadUTF(org.omg.CORBA.portable.InputStream stream)
+- {
+- return stream.read_string();
+- }
+-
+- /**
+- * Before JDK 1.3.1_01, the PutField/GetField implementation
+- * actually sent a Hashtable.
+- */
+- public ObjectInputStream.GetField readFields()
+- throws IOException, ClassNotFoundException, NotActiveException {
+- Hashtable fields = (Hashtable)readObject();
+- return new LegacyHookGetFields(fields);
+- }
+-
+- public IIOPInputStream_1_3()
+- throws java.io.IOException {
+- super();
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3_1.java 2012-08-10 09:10:32.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPInputStream_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,54 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-/*
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.io.*;
+-import java.util.Hashtable;
+-
+-/**
+- * Implements legacy behavior from Ladybird to maintain
+- * backwards compatibility.
+- */
+-public class IIOPInputStream_1_3_1 extends com.sun.corba.se.impl.io.IIOPInputStream
+-{
+- public IIOPInputStream_1_3_1()
+- throws java.io.IOException {
+- super();
+- }
+-
+- /**
+- * Before JDK 1.3.1_01, the PutField/GetField implementation
+- * actually sent a Hashtable.
+- */
+- public ObjectInputStream.GetField readFields()
+- throws IOException, ClassNotFoundException, NotActiveException {
+-
+- Hashtable fields = (Hashtable)readObject();
+- return new LegacyHookGetFields(fields);
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3.java 2012-08-10 09:10:32.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,68 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.io.*;
+-
+-/**
+- * Implements legacy behavior from before Ladybird to maintain
+- * backwards compatibility.
+- */
+-public class IIOPOutputStream_1_3 extends com.sun.corba.se.impl.io.IIOPOutputStream
+-{
+- // We can't assume that the superclass's putFields
+- // member will be non-private. We must allow
+- // the RI to run on JDK 1.3.1 FCS as well as
+- // the JDK 1.3.1_01 patch.
+- private ObjectOutputStream.PutField putFields_1_3;
+-
+- // The newer version in the io package correctly writes a wstring instead.
+- // This concerns bug 4379597.
+- protected void internalWriteUTF(org.omg.CORBA.portable.OutputStream stream,
+- String data)
+- {
+- stream.write_string(data);
+- }
+-
+- public IIOPOutputStream_1_3()
+- throws java.io.IOException {
+- super();
+- }
+-
+- /**
+- * Before JDK 1.3.1_01, the PutField/GetField implementation
+- * actually sent a Hashtable.
+- */
+- public ObjectOutputStream.PutField putFields()
+- throws IOException {
+- putFields_1_3 = new LegacyHookPutFields();
+- return putFields_1_3;
+- }
+-
+- public void writeFields()
+- throws IOException {
+- putFields_1_3.write(this);
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3_1.java 2012-08-10 09:10:32.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/IIOPOutputStream_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,66 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-/*
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.io.*;
+-import java.util.Hashtable;
+-
+-/**
+- * Implements legacy behavior from Ladybird to maintain
+- * backwards compatibility.
+- */
+-public class IIOPOutputStream_1_3_1 extends com.sun.corba.se.impl.io.IIOPOutputStream
+-{
+- // We can't assume that the superclass's putFields
+- // member will be non-private. We must allow
+- // the RI to run on JDK 1.3.1 FCS as well as
+- // the JDK 1.3.1_01 patch.
+- private ObjectOutputStream.PutField putFields_1_3_1;
+-
+- public IIOPOutputStream_1_3_1()
+- throws java.io.IOException {
+- super();
+- }
+-
+- /**
+- * Before JDK 1.3.1_01, the PutField/GetField implementation
+- * actually sent a Hashtable.
+- */
+- public ObjectOutputStream.PutField putFields()
+- throws IOException {
+-
+- putFields_1_3_1 = new LegacyHookPutFields();
+- return putFields_1_3_1;
+- }
+-
+- public void writeFields()
+- throws IOException {
+-
+- putFields_1_3_1.write(this);
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/ORBUtility.java 2012-08-10 09:10:33.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/ORBUtility.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2000, 2009, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -160,45 +160,13 @@
+ }
+
+ /**
+- * Creates the correct ValueHandler for the given ORB,
+- * querying ORBVersion information. If the ORB or
+- * ORBVersion is null, gets the ValueHandler from
+- * Util.createValueHandler.
++ * Return default ValueHandler
+ */
+- public static ValueHandler createValueHandler(ORB orb) {
+-
+- if (orb == null)
+- return Util.createValueHandler();
+-
+- ORBVersion version = orb.getORBVersion();
+-
+- if (version == null)
+- return Util.createValueHandler();
+-
+- if (version.equals(ORBVersionFactory.getOLD()))
+- return new ValueHandlerImpl_1_3();
+- if (version.equals(ORBVersionFactory.getNEW()))
+- return new ValueHandlerImpl_1_3_1();
+-
++ public static ValueHandler createValueHandler() {
+ return Util.createValueHandler();
+ }
+
+ /**
+- * Returns true if the given ORB could accurately be determined to be a
+- * Kestrel or earlier ORB. Note: If passed the ORBSingleton, this will return
+- * false.
+- */
+- public static boolean isLegacyORB(ORB orb)
+- {
+- try {
+- ORBVersion currentORB = orb.getORBVersion();
+- return currentORB.equals( ORBVersionFactory.getOLD() ) ;
+- } catch (SecurityException se) {
+- return false;
+- }
+- }
+-
+- /**
+ * Returns true if it was accurately determined that the remote ORB is
+ * a foreign (non-JavaSoft) ORB. Note: If passed the ORBSingleton, this
+ * will return false.
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java 2012-08-10 09:10:33.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/ObjectStreamClass_1_3_1.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -1119,8 +1119,8 @@
+ private boolean hasExternalizableBlockData;
+ Method writeObjectMethod;
+ Method readObjectMethod;
+- private Method writeReplaceObjectMethod;
+- private Method readResolveObjectMethod;
++ private transient Method writeReplaceObjectMethod;
++ private transient Method readResolveObjectMethod;
+
+ /*
+ * ObjectStreamClass_1_3_1 that this one was built from.
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3.java 2012-08-10 09:10:33.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,177 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2004, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import org.omg.CORBA.ORB;
+-import java.io.Serializable;
+-import java.util.Hashtable;
+-import java.net.MalformedURLException;
+-import com.sun.corba.se.impl.io.TypeMismatchException;
+-import com.sun.corba.se.impl.util.RepositoryId;
+-
+-/**
+- * Delegates to the RepositoryId_1_3 implementation in
+- * com.sun.corba.se.impl.orbutil. This is necessary to
+- * overcome the fact that many of RepositoryId's methods
+- * are static.
+- */
+-public final class RepIdDelegator_1_3
+- implements RepositoryIdStrings,
+- RepositoryIdUtility,
+- RepositoryIdInterface
+-{
+- // RepositoryIdFactory methods
+-
+- public String createForAnyType(Class type) {
+- return RepositoryId_1_3.createForAnyType(type);
+- }
+-
+- public String createForJavaType(Serializable ser)
+- throws TypeMismatchException
+- {
+- return RepositoryId_1_3.createForJavaType(ser);
+- }
+-
+- public String createForJavaType(Class clz)
+- throws TypeMismatchException
+- {
+- return RepositoryId_1_3.createForJavaType(clz);
+- }
+-
+- public String createSequenceRepID(java.lang.Object ser) {
+- return RepositoryId_1_3.createSequenceRepID(ser);
+- }
+-
+- public String createSequenceRepID(Class clazz) {
+- return RepositoryId_1_3.createSequenceRepID(clazz);
+- }
+-
+- public RepositoryIdInterface getFromString(String repIdString) {
+- return new RepIdDelegator_1_3(RepositoryId_1_3.cache.getId(repIdString));
+- }
+-
+- // RepositoryIdUtility methods
+-
+- public boolean isChunkedEncoding(int valueTag) {
+- return RepositoryId.isChunkedEncoding(valueTag);
+- }
+-
+- public boolean isCodeBasePresent(int valueTag) {
+- return RepositoryId.isCodeBasePresent(valueTag);
+- }
+-
+- public String getClassDescValueRepId() {
+- return RepositoryId_1_3.kClassDescValueRepID;
+- }
+-
+- public String getWStringValueRepId() {
+- return RepositoryId_1_3.kWStringValueRepID;
+- }
+-
+- public int getTypeInfo(int valueTag) {
+- return RepositoryId.getTypeInfo(valueTag);
+- }
+-
+- public int getStandardRMIChunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_StandardRMIChunked_NoRep;
+- }
+-
+- public int getCodeBaseRMIChunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIChunked_NoRep;
+- }
+-
+- public int getStandardRMIChunkedId() {
+- return RepositoryId.kPreComputed_StandardRMIChunked;
+- }
+-
+- public int getCodeBaseRMIChunkedId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIChunked;
+- }
+-
+- public int getStandardRMIUnchunkedId() {
+- return RepositoryId.kPreComputed_StandardRMIUnchunked;
+- }
+-
+- public int getCodeBaseRMIUnchunkedId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIUnchunked;
+- }
+-
+- public int getStandardRMIUnchunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_StandardRMIUnchunked_NoRep;
+- }
+-
+- public int getCodeBaseRMIUnchunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIUnchunked_NoRep;
+- }
+-
+- // RepositoryIdInterface methods
+-
+- public Class getClassFromType() throws ClassNotFoundException {
+- return delegate.getClassFromType();
+- }
+-
+- public Class getClassFromType(String codebaseURL)
+- throws ClassNotFoundException, MalformedURLException
+- {
+- return delegate.getClassFromType(codebaseURL);
+- }
+-
+- public Class getClassFromType(Class expectedType,
+- String codebaseURL)
+- throws ClassNotFoundException, MalformedURLException
+- {
+- return delegate.getClassFromType(expectedType, codebaseURL);
+- }
+-
+- public String getClassName() {
+- return delegate.getClassName();
+- }
+-
+- // Constructor used for factory/utility cases
+- public RepIdDelegator_1_3() {}
+-
+- // Constructor used by getIdFromString. All non-static
+- // RepositoryId methods will use the provided delegate.
+- private RepIdDelegator_1_3(RepositoryId_1_3 _delegate) {
+- this.delegate = _delegate;
+- }
+-
+- private RepositoryId_1_3 delegate = null;
+-
+- public String toString() {
+- if (delegate != null)
+- return delegate.toString();
+- else
+- return this.getClass().getName();
+- }
+-
+- public boolean equals(Object obj) {
+- if (delegate != null)
+- return delegate.equals(obj);
+- else
+- return super.equals(obj);
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3_1.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepIdDelegator_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,177 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2004, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import org.omg.CORBA.ORB;
+-import java.io.Serializable;
+-import java.util.Hashtable;
+-import java.net.MalformedURLException;
+-import com.sun.corba.se.impl.io.TypeMismatchException;
+-import com.sun.corba.se.impl.util.RepositoryId;
+-
+-/**
+- * Delegates to the RepositoryId_1_3_1 implementation in
+- * com.sun.corba.se.impl.orbutil. This is necessary to
+- * overcome the fact that many of RepositoryId's methods
+- * are static.
+- */
+-public final class RepIdDelegator_1_3_1
+- implements RepositoryIdStrings,
+- RepositoryIdUtility,
+- RepositoryIdInterface
+-{
+- // RepositoryIdFactory methods
+-
+- public String createForAnyType(Class type) {
+- return RepositoryId_1_3_1.createForAnyType(type);
+- }
+-
+- public String createForJavaType(Serializable ser)
+- throws TypeMismatchException
+- {
+- return RepositoryId_1_3_1.createForJavaType(ser);
+- }
+-
+- public String createForJavaType(Class clz)
+- throws TypeMismatchException
+- {
+- return RepositoryId_1_3_1.createForJavaType(clz);
+- }
+-
+- public String createSequenceRepID(java.lang.Object ser) {
+- return RepositoryId_1_3_1.createSequenceRepID(ser);
+- }
+-
+- public String createSequenceRepID(Class clazz) {
+- return RepositoryId_1_3_1.createSequenceRepID(clazz);
+- }
+-
+- public RepositoryIdInterface getFromString(String repIdString) {
+- return new RepIdDelegator_1_3_1(RepositoryId_1_3_1.cache.getId(repIdString));
+- }
+-
+- // RepositoryIdUtility methods
+-
+- public boolean isChunkedEncoding(int valueTag) {
+- return RepositoryId.isChunkedEncoding(valueTag);
+- }
+-
+- public boolean isCodeBasePresent(int valueTag) {
+- return RepositoryId.isCodeBasePresent(valueTag);
+- }
+-
+- public String getClassDescValueRepId() {
+- return RepositoryId_1_3_1.kClassDescValueRepID;
+- }
+-
+- public String getWStringValueRepId() {
+- return RepositoryId_1_3_1.kWStringValueRepID;
+- }
+-
+- public int getTypeInfo(int valueTag) {
+- return RepositoryId.getTypeInfo(valueTag);
+- }
+-
+- public int getStandardRMIChunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_StandardRMIChunked_NoRep;
+- }
+-
+- public int getCodeBaseRMIChunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIChunked_NoRep;
+- }
+-
+- public int getStandardRMIChunkedId() {
+- return RepositoryId.kPreComputed_StandardRMIChunked;
+- }
+-
+- public int getCodeBaseRMIChunkedId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIChunked;
+- }
+-
+- public int getStandardRMIUnchunkedId() {
+- return RepositoryId.kPreComputed_StandardRMIUnchunked;
+- }
+-
+- public int getCodeBaseRMIUnchunkedId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIUnchunked;
+- }
+-
+- public int getStandardRMIUnchunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_StandardRMIUnchunked_NoRep;
+- }
+-
+- public int getCodeBaseRMIUnchunkedNoRepStrId() {
+- return RepositoryId.kPreComputed_CodeBaseRMIUnchunked_NoRep;
+- }
+-
+- // RepositoryIdInterface methods
+-
+- public Class getClassFromType() throws ClassNotFoundException {
+- return delegate.getClassFromType();
+- }
+-
+- public Class getClassFromType(String codebaseURL)
+- throws ClassNotFoundException, MalformedURLException
+- {
+- return delegate.getClassFromType(codebaseURL);
+- }
+-
+- public Class getClassFromType(Class expectedType,
+- String codebaseURL)
+- throws ClassNotFoundException, MalformedURLException
+- {
+- return delegate.getClassFromType(expectedType, codebaseURL);
+- }
+-
+- public String getClassName() {
+- return delegate.getClassName();
+- }
+-
+- // Constructor used for factory/utility cases
+- public RepIdDelegator_1_3_1() {}
+-
+- // Constructor used by getIdFromString. All non-static
+- // RepositoryId methods will use the provided delegate.
+- private RepIdDelegator_1_3_1(RepositoryId_1_3_1 _delegate) {
+- this.delegate = _delegate;
+- }
+-
+- private RepositoryId_1_3_1 delegate = null;
+-
+- public String toString() {
+- if (delegate != null)
+- return delegate.toString();
+- else
+- return this.getClass().getName();
+- }
+-
+- public boolean equals(Object obj) {
+- if (delegate != null)
+- return delegate.equals(obj);
+- else
+- return super.equals(obj);
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,108 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-/*
+- * Licensed Materials - Property of IBM
+- * RMI-IIOP v1.0
+- * Copyright IBM Corp. 1998 1999 All Rights Reserved
+- *
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.util.Stack;
+-import java.util.Hashtable;
+-import java.util.EmptyStackException;
+-import java.util.Enumeration;
+-
+-// Really limited pool - in this case just creating several at a time...
+-class RepositoryIdPool_1_3 extends Stack {
+-
+- private static int MAX_CACHE_SIZE = 4;
+- private RepositoryIdCache_1_3 cache;
+-
+- public final synchronized RepositoryId_1_3 popId() {
+-
+- try {
+- return (RepositoryId_1_3)super.pop();
+- }
+- catch(EmptyStackException e) {
+- increasePool(5);
+- return (RepositoryId_1_3)super.pop();
+- }
+-
+- }
+-
+- // Pool management
+- final void increasePool(int size) {
+- //if (cache.size() <= MAX_CACHE_SIZE)
+- for (int i = size; i > 0; i--)
+- push(new RepositoryId_1_3());
+- /*
+- // _REVISIT_ This will not work w/out either thread tracing or weak references. I am
+- // betting that thread tracing almost completely negates benefit of reuse. Until either
+- // 1.2 only inclusion or proof to the contrary, I'll leave it this way...
+- else {
+- int numToReclaim = cache.size() / 2;
+- Enumeration keys = cache.keys();
+- Enumeration elements = cache.elements();
+- for (int i = numToReclaim; i > 0; i--) {
+- Object key = keys.nextElement();
+- Object element = elements.nextElement();
+-
+- push(element);
+- cache.remove(key);
+- }
+- }
+- */
+- }
+-
+- final void setCaches(RepositoryIdCache_1_3 cache) {
+- this.cache = cache;
+- }
+-
+-}
+-
+-public class RepositoryIdCache_1_3 extends Hashtable {
+-
+- private RepositoryIdPool_1_3 pool = new RepositoryIdPool_1_3();
+-
+- public RepositoryIdCache_1_3() {
+- pool.setCaches(this);
+- }
+-
+- public final synchronized RepositoryId_1_3 getId(String key) {
+- RepositoryId_1_3 repId = (RepositoryId_1_3)super.get(key);
+-
+- if (repId != null)
+- return repId;
+- else {
+- //repId = pool.popId().init(key);
+- repId = new RepositoryId_1_3(key);
+- put(key, repId);
+- return repId;
+- }
+-
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3_1.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdCache_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,102 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.util.Stack;
+-import java.util.Hashtable;
+-import java.util.EmptyStackException;
+-import java.util.Enumeration;
+-
+-// Really limited pool - in this case just creating several at a time...
+-class RepositoryIdPool_1_3_1 extends Stack {
+-
+- private static int MAX_CACHE_SIZE = 4;
+- private RepositoryIdCache_1_3_1 cache;
+-
+- public final synchronized RepositoryId_1_3_1 popId() {
+-
+- try {
+- return (RepositoryId_1_3_1)super.pop();
+- }
+- catch(EmptyStackException e) {
+- increasePool(5);
+- return (RepositoryId_1_3_1)super.pop();
+- }
+-
+- }
+-
+- // Pool management
+- final void increasePool(int size) {
+- //if (cache.size() <= MAX_CACHE_SIZE)
+- for (int i = size; i > 0; i--)
+- push(new RepositoryId_1_3_1());
+- /*
+- // _REVISIT_ This will not work w/out either thread tracing or weak references. I am
+- // betting that thread tracing almost completely negates benefit of reuse. Until either
+- // 1.2 only inclusion or proof to the contrary, I'll leave it this way...
+- else {
+- int numToReclaim = cache.size() / 2;
+- Enumeration keys = cache.keys();
+- Enumeration elements = cache.elements();
+- for (int i = numToReclaim; i > 0; i--) {
+- Object key = keys.nextElement();
+- Object element = elements.nextElement();
+-
+- push(element);
+- cache.remove(key);
+- }
+- }
+- */
+- }
+-
+- final void setCaches(RepositoryIdCache_1_3_1 cache) {
+- this.cache = cache;
+- }
+-
+-}
+-
+-public class RepositoryIdCache_1_3_1 extends Hashtable {
+-
+- private RepositoryIdPool_1_3_1 pool = new RepositoryIdPool_1_3_1();
+-
+- public RepositoryIdCache_1_3_1() {
+- pool.setCaches(this);
+- }
+-
+- public final synchronized RepositoryId_1_3_1 getId(String key) {
+- RepositoryId_1_3_1 repId = (RepositoryId_1_3_1)super.get(key);
+-
+- if (repId != null)
+- return repId;
+- else {
+- //repId = pool.popId().init(key);
+- repId = new RepositoryId_1_3_1(key);
+- put(key, repId);
+- return repId;
+- }
+-
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryIdFactory.java 2013-03-09 08:44:36.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -30,12 +30,6 @@
+
+ public abstract class RepositoryIdFactory
+ {
+- private static final RepIdDelegator_1_3 legacyDelegator
+- = new RepIdDelegator_1_3();
+-
+- private static final RepIdDelegator_1_3_1 ladybirdDelegator
+- = new RepIdDelegator_1_3_1();
+-
+ private static final RepIdDelegator currentDelegator
+ = new RepIdDelegator();
+
+@@ -48,29 +42,6 @@
+ }
+
+ /**
+- * Checks the version of the ORB and returns the appropriate
+- * RepositoryIdStrings instance.
+- */
+- public static RepositoryIdStrings getRepIdStringsFactory(ORB orb)
+- {
+- if (orb != null) {
+- switch (orb.getORBVersion().getORBType()) {
+- case ORBVersion.NEWER:
+- case ORBVersion.FOREIGN:
+- case ORBVersion.JDK1_3_1_01:
+- return currentDelegator;
+- case ORBVersion.OLD:
+- return legacyDelegator;
+- case ORBVersion.NEW:
+- return ladybirdDelegator;
+- default:
+- return currentDelegator;
+- }
+- } else
+- return currentDelegator;
+- }
+-
+- /**
+ * Returns the latest version RepositoryIdUtility instance
+ */
+ public static RepositoryIdUtility getRepIdUtility()
+@@ -78,26 +49,4 @@
+ return currentDelegator;
+ }
+
+- /**
+- * Checks the version of the ORB and returns the appropriate
+- * RepositoryIdUtility instance.
+- */
+- public static RepositoryIdUtility getRepIdUtility(ORB orb)
+- {
+- if (orb != null) {
+- switch (orb.getORBVersion().getORBType()) {
+- case ORBVersion.NEWER:
+- case ORBVersion.FOREIGN:
+- case ORBVersion.JDK1_3_1_01:
+- return currentDelegator;
+- case ORBVersion.OLD:
+- return legacyDelegator;
+- case ORBVersion.NEW:
+- return ladybirdDelegator;
+- default:
+- return currentDelegator;
+- }
+- } else
+- return currentDelegator;
+- }
+ }
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryId_1_3.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryId_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,990 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-/*
+- * Licensed Materials - Property of IBM
+- * RMI-IIOP v1.0
+- * Copyright IBM Corp. 1998 1999 All Rights Reserved
+- *
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.util.StringTokenizer;
+-import java.util.Hashtable;
+-import java.io.IOException;
+-import java.lang.reflect.Method;
+-
+-// Imports for using codebase URL to load class
+-import java.net.MalformedURLException;
+-import org.omg.CORBA.portable.ValueBase;
+-import org.omg.CORBA.portable.IDLEntity;
+-
+-import com.sun.corba.se.impl.util.JDKBridge;
+-import com.sun.corba.se.impl.util.Utility;
+-import com.sun.corba.se.impl.util.PackagePrefixChecker;
+-import com.sun.corba.se.impl.util.IdentityHashtable;
+-import com.sun.corba.se.impl.io.ObjectStreamClass;
+-
+-import javax.rmi.CORBA.Util;
+-
+-// keeping the original RepositoryId class that was shipped in
+-// JDK 1.3. It has interoperability bugs
+-
+-public class RepositoryId_1_3 {
+-
+- // Legal IDL Identifier characters (1 = legal). Note
+- // that '.' (2E) is marked as legal even though it is
+- // not legal in IDL. This allows us to treat a fully
+- // qualified Java name with '.' package separators
+- // uniformly, and is safe because that is the only
+- // legal use of '.' in a Java name.
+-
+- public static final RepositoryIdCache_1_3 cache = new RepositoryIdCache_1_3();
+- private static final byte[] IDL_IDENTIFIER_CHARS = {
+-
+- // 0 1 2 3 4 5 6 7 8 9 a b c d e f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 00-0f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 10-1f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,1,0, // 20-2f
+- 1,1,1,1, 1,1,1,1, 1,1,0,0, 0,0,0,0, // 30-3f
+- 0,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // 40-4f
+- 1,1,1,1, 1,1,1,1, 1,1,1,0, 0,0,0,1, // 50-5f
+- 0,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // 60-6f
+- 1,1,1,1, 1,1,1,1, 1,1,1,0, 0,0,0,0, // 70-7f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 80-8f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 90-9f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // a0-af
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // b0-bf
+- 1,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // c0-cf
+- 0,1,1,1, 1,1,1,0, 1,1,1,1, 1,0,0,1, // d0-df
+- 1,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // e0-ef
+- 0,1,1,1, 1,1,1,0, 1,1,1,1, 1,0,0,1, // f0-ff
+- };
+-
+- private static String defaultServerURL = null;
+- private static boolean useCodebaseOnly = false;
+-
+- static {
+- if (defaultServerURL == null)
+- defaultServerURL = (String)JDKBridge.getLocalCodebase();
+- useCodebaseOnly = JDKBridge.useCodebaseOnly();
+-
+- }
+-
+- private static IdentityHashtable classToRepStr = new IdentityHashtable();
+- private static IdentityHashtable classIDLToRepStr = new IdentityHashtable();
+- private static IdentityHashtable classSeqToRepStr = new IdentityHashtable();
+-
+- private static IdentityHashtable repStrToByteArray = new IdentityHashtable();
+- private static Hashtable repStrToClass = new Hashtable();
+-
+- private String repId = null;
+- private boolean isSupportedFormat = true;
+- private String typeString = null;
+- private String versionString = null;
+- private boolean isSequence = false;
+- private boolean isRMIValueType = false;
+- private boolean isIDLType = false;
+- private String completeClassName = null;
+- private String unqualifiedName = null;
+- private String definedInId = null;
+- private Class clazz = null;
+- private String suid = null, actualSuid = null;
+- private long suidLong = ObjectStreamClass.kDefaultUID, actualSuidLong = ObjectStreamClass.kDefaultUID;
+-
+- // Repository ID fragments
+- private static final String kValuePrefix = "RMI:";
+- private static final String kIDLPrefix = "IDL:";
+- private static final String kIDLNamePrefix = "omg.org/";
+- private static final String kIDLClassnamePrefix = "org.omg.";
+- private static final String kSequencePrefix = "[";
+- private static final String kCORBAPrefix = "CORBA/";
+- private static final String kArrayPrefix = kValuePrefix + kSequencePrefix + kCORBAPrefix;
+- private static final int kValuePrefixLength = kValuePrefix.length();
+- private static final int kIDLPrefixLength = kIDLPrefix.length();
+- private static final int kSequencePrefixLength = kSequencePrefix.length();
+- private static final String kInterfaceHashCode = ":0000000000000000";
+- private static final String kInterfaceOnlyHashStr = "0000000000000000";
+- private static final String kExternalizableHashStr = "0000000000000001";
+-
+- // Value tag utility methods and constants
+- public static final int kInitialValueTag= 0x7fffff00;
+- public static final int kNoTypeInfo = 0;
+- public static final int kSingleRepTypeInfo = 0x02;
+- public static final int kPartialListTypeInfo = 0x06;
+- public static final int kChunkedMask = 0x08;
+-
+- // Public, well known repository IDs
+-
+- // _REVISIT_ : A table structure with a good search routine for all of this
+- // would be more efficient and easier to maintain...
+-
+- // String
+- public static final String kWStringValueVersion = "1.0";
+- public static final String kWStringValueHash = ":"+kWStringValueVersion;
+- public static final String kWStringStubValue = "WStringValue";
+- public static final String kWStringTypeStr = "omg.org/CORBA/"+kWStringStubValue;
+- public static final String kWStringValueRepID = kIDLPrefix + kWStringTypeStr + kWStringValueHash;
+-
+- // Any
+- public static final String kAnyRepID = kIDLPrefix + "omg.org/CORBA/Any";
+-
+- // Class
+- public static final String kClassDescValueHash = ":" + Long.toHexString(
+- ObjectStreamClass.getSerialVersionUID(javax.rmi.CORBA.ClassDesc.class));
+- public static final String kClassDescStubValue = "ClassDesc";
+- public static final String kClassDescTypeStr = "javax.rmi.CORBA."+kClassDescStubValue;
+- public static final String kClassDescValueRepID = kValuePrefix + kClassDescTypeStr + kClassDescValueHash;
+-
+- // Object
+- public static final String kObjectValueHash = ":1.0";
+- public static final String kObjectStubValue = "Object";
+-
+- // Sequence
+- public static final String kSequenceValueHash = ":1.0";
+- public static final String kPrimitiveSequenceValueHash = ":0000000000000000";
+-
+- // Serializable
+- public static final String kSerializableValueHash = ":1.0";
+- public static final String kSerializableStubValue = "Serializable";
+-
+- // Externalizable
+- public static final String kExternalizableValueHash = ":1.0";
+- public static final String kExternalizableStubValue = "Externalizable";
+-
+- // Remote (The empty string is used for java.rmi.Remote)
+- public static final String kRemoteValueHash = "";
+- public static final String kRemoteStubValue = "";
+- public static final String kRemoteTypeStr = "";
+- public static final String kRemoteValueRepID = "";
+-
+- private static final Hashtable kSpecialArrayTypeStrings = new Hashtable();
+-
+- static {
+- kSpecialArrayTypeStrings.put("CORBA.WStringValue", new StringBuffer(java.lang.String.class.getName()));
+- kSpecialArrayTypeStrings.put("javax.rmi.CORBA.ClassDesc", new StringBuffer(java.lang.Class.class.getName()));
+- kSpecialArrayTypeStrings.put("CORBA.Object", new StringBuffer(java.rmi.Remote.class.getName()));
+-
+- }
+-
+- private static final Hashtable kSpecialCasesRepIDs = new Hashtable();
+-
+- static {
+- kSpecialCasesRepIDs.put(java.lang.String.class, kWStringValueRepID);
+- kSpecialCasesRepIDs.put(java.lang.Class.class, kClassDescValueRepID);
+- kSpecialCasesRepIDs.put(java.rmi.Remote.class, kRemoteValueRepID);
+- }
+-
+- private static final Hashtable kSpecialCasesStubValues = new Hashtable();
+-
+- static {
+- kSpecialCasesStubValues.put(java.lang.String.class, kWStringStubValue);
+- kSpecialCasesStubValues.put(java.lang.Class.class, kClassDescStubValue);
+- kSpecialCasesStubValues.put(java.lang.Object.class, kObjectStubValue);
+- kSpecialCasesStubValues.put(java.io.Serializable.class, kSerializableStubValue);
+- kSpecialCasesStubValues.put(java.io.Externalizable.class, kExternalizableStubValue);
+- kSpecialCasesStubValues.put(java.rmi.Remote.class, kRemoteStubValue);
+- }
+-
+-
+- private static final Hashtable kSpecialCasesVersions = new Hashtable();
+-
+- static {
+- kSpecialCasesVersions.put(java.lang.String.class, kWStringValueHash);
+- kSpecialCasesVersions.put(java.lang.Class.class, kClassDescValueHash);
+- kSpecialCasesVersions.put(java.lang.Object.class, kObjectValueHash);
+- kSpecialCasesVersions.put(java.io.Serializable.class, kSerializableValueHash);
+- kSpecialCasesVersions.put(java.io.Externalizable.class, kExternalizableValueHash);
+- kSpecialCasesVersions.put(java.rmi.Remote.class, kRemoteValueHash);
+- }
+-
+- private static final Hashtable kSpecialCasesClasses = new Hashtable();
+-
+- static {
+- kSpecialCasesClasses.put(kWStringTypeStr, java.lang.String.class);
+- kSpecialCasesClasses.put(kClassDescTypeStr, java.lang.Class.class);
+- kSpecialCasesClasses.put(kRemoteTypeStr, java.rmi.Remote.class);
+-
+- kSpecialCasesClasses.put("org.omg.CORBA.WStringValue", java.lang.String.class);
+- kSpecialCasesClasses.put("javax.rmi.CORBA.ClassDesc", java.lang.Class.class);
+- //kSpecialCasesClasses.put(kRemoteTypeStr, java.rmi.Remote.class);
+- }
+-
+- private static final Hashtable kSpecialCasesArrayPrefix = new Hashtable();
+-
+- static {
+- kSpecialCasesArrayPrefix.put(java.lang.String.class, kValuePrefix + kSequencePrefix + kCORBAPrefix);
+- kSpecialCasesArrayPrefix.put(java.lang.Class.class, kValuePrefix + kSequencePrefix + "javax/rmi/CORBA/");
+- kSpecialCasesArrayPrefix.put(java.lang.Object.class, kValuePrefix + kSequencePrefix + "java/lang/");
+- kSpecialCasesArrayPrefix.put(java.io.Serializable.class, kValuePrefix + kSequencePrefix + "java/io/");
+- kSpecialCasesArrayPrefix.put(java.io.Externalizable.class, kValuePrefix + kSequencePrefix + "java/io/");
+- kSpecialCasesArrayPrefix.put(java.rmi.Remote.class, kValuePrefix + kSequencePrefix + kCORBAPrefix);
+- }
+-
+- private static final Hashtable kSpecialPrimitives = new Hashtable();
+-
+- static {
+- kSpecialPrimitives.put("int","long");
+- kSpecialPrimitives.put("long","longlong");
+- kSpecialPrimitives.put("byte","octet");
+- }
+-
+- /**
+- * Used to convert ascii to hex.
+- */
+- private static final byte ASCII_HEX[] = {
+- (byte)'0',
+- (byte)'1',
+- (byte)'2',
+- (byte)'3',
+- (byte)'4',
+- (byte)'5',
+- (byte)'6',
+- (byte)'7',
+- (byte)'8',
+- (byte)'9',
+- (byte)'A',
+- (byte)'B',
+- (byte)'C',
+- (byte)'D',
+- (byte)'E',
+- (byte)'F',
+- };
+-
+-
+- // Interface Rep ID Strings
+- public static final String kjava_rmi_Remote = createForAnyType(java.rmi.Remote.class);
+- public static final String korg_omg_CORBA_Object = createForAnyType(org.omg.CORBA.Object.class);
+-
+- // Dummy arguments for getIdFromHelper method
+- public static final Class kNoParamTypes[] ={};
+- public static final Object kNoArgs[] = {};
+-
+-
+- RepositoryId_1_3(){}
+-
+- RepositoryId_1_3(String aRepId){
+- init(aRepId);
+- }
+-
+- RepositoryId_1_3 init(String aRepId){
+-
+- this.repId = aRepId;
+-
+- // Special case for remote
+- if (aRepId.length() == 0) {
+- clazz = java.rmi.Remote.class;
+- typeString = "";
+- isRMIValueType = true;
+- suid = kInterfaceOnlyHashStr;
+- return this;
+- }
+- else if (aRepId.equals(kWStringValueRepID)) {
+- clazz = java.lang.String.class;
+- typeString = kWStringTypeStr;
+- isIDLType = true;
+- versionString = kWStringValueVersion;
+- return this;
+- }
+- else {
+-
+- String repId = convertFromISOLatin1(aRepId);
+-
+- versionString = repId.substring(repId.indexOf(':', repId.indexOf(':')+1));
+- if (repId.startsWith(kIDLPrefix)) {
+- typeString =
+- repId.substring(kIDLPrefixLength, repId.indexOf(':', kIDLPrefixLength));
+- isIDLType = true;
+- if (typeString.startsWith(kIDLNamePrefix))
+- completeClassName = kIDLClassnamePrefix +
+- typeString.substring(kIDLNamePrefix.length()).replace('/','.');
+- else completeClassName = typeString.replace('/','.');
+-
+- }
+- else if (repId.startsWith(kValuePrefix)) {
+- typeString =
+- repId.substring(kValuePrefixLength, repId.indexOf(':', kValuePrefixLength));
+- isRMIValueType = true;
+-
+- if (versionString.indexOf('.') == -1) {
+- actualSuid = versionString.substring(1);
+- suid = actualSuid; // default if not explicitly specified
+-
+- if (actualSuid.indexOf(':') != -1){
+- // we have a declared hash also
+- int pos = actualSuid.indexOf(':')+1;
+- // actualSuid = suid.substring(pos);
+- // suid = suid.substring(0, pos-1);
+- suid = actualSuid.substring(pos);
+- actualSuid = actualSuid.substring(0, pos-1);
+- }
+-
+- }
+- else {
+- // _REVISIT_ : Special case version failure ?
+- }
+- }
+- else isSupportedFormat = false;
+-
+- if (typeString.startsWith(kSequencePrefix)) {
+- isSequence = true;
+- }
+-
+-
+- return this;
+- }
+- }
+-
+- public final String getUnqualifiedName() {
+- if (unqualifiedName == null){
+- String className = getClassName();
+- int index = (className != null) ? className.lastIndexOf('.') : -1;
+- if (index == -1){
+- unqualifiedName = className;
+- definedInId = "IDL::1.0";
+- }
+- else {
+- unqualifiedName = className.substring(index);
+- definedInId = "IDL:" + className.substring(0, index).replace('.','/') + ":1.0";
+- }
+- }
+-
+- return unqualifiedName;
+- }
+-
+- public final String getDefinedInId() {
+- if (definedInId == null){
+- getUnqualifiedName();
+- }
+-
+- return definedInId;
+- }
+-
+- public final String getTypeString() {
+- return typeString;
+- }
+-
+- public final String getVersionString() {
+- return versionString;
+- }
+-
+- public final String getSerialVersionUID() {
+- return suid;
+- }
+-
+- public final String getActualSerialVersionUID() {
+- return actualSuid;
+- }
+- public final long getSerialVersionUIDAsLong() {
+- return suidLong;
+- }
+-
+- public final long getActualSerialVersionUIDAsLong() {
+- return actualSuidLong;
+- }
+-
+- public final boolean isRMIValueType() {
+- return isRMIValueType;
+- }
+-
+- public final boolean isIDLType() {
+- return isIDLType;
+- }
+-
+- public final String getRepositoryId() {
+- return repId;
+- }
+-
+- public static byte[] getByteArray(String repStr) {
+- synchronized (repStrToByteArray){
+- return (byte[]) repStrToByteArray.get(repStr);
+- }
+- }
+-
+- public static void setByteArray(String repStr, byte[] repStrBytes) {
+- synchronized (repStrToByteArray){
+- repStrToByteArray.put(repStr, repStrBytes);
+- }
+- }
+-
+- public final boolean isSequence() {
+- return isSequence;
+- }
+-
+- public final boolean isSupportedFormat() {
+- return isSupportedFormat;
+- }
+-
+-
+- // This method will return the classname from the typestring OR if the classname turns out to be
+- // a special class "pseudo" name, then the matching real classname is returned.
+- public final String getClassName() {
+-
+- if (isRMIValueType)
+- return typeString;
+- else if (isIDLType)
+- return completeClassName;
+- else return null;
+-
+- }
+-
+- // This method calls getClazzFromType() and falls back to the repStrToClass
+- // cache if no class was found. It's used where any class matching the
+- // given repid is an acceptable result.
+- public final Class getAnyClassFromType() throws ClassNotFoundException {
+- try {
+- return getClassFromType();
+- } catch (ClassNotFoundException cnfe) {
+- Class clz = (Class)repStrToClass.get(repId);
+- if (clz != null)
+- return clz;
+- else
+- throw cnfe;
+- }
+- }
+-
+- public final Class getClassFromType()
+- throws ClassNotFoundException {
+- if (clazz != null)
+- return clazz;
+-
+- Class specialCase = (Class)kSpecialCasesClasses.get(getClassName());
+-
+- if (specialCase != null){
+- clazz = specialCase;
+- return specialCase;
+- }
+- else
+- {
+- try{
+- return Util.loadClass(getClassName(), null, null);
+- }
+- catch(ClassNotFoundException cnfe){
+- if (defaultServerURL != null) {
+- try{
+- return getClassFromType(defaultServerURL);
+- }
+- catch(MalformedURLException mue){
+- throw cnfe;
+- }
+- }
+- else throw cnfe;
+- }
+- }
+-
+- }
+-
+- public final Class getClassFromType(Class expectedType, String codebase)
+- throws ClassNotFoundException {
+- if (clazz != null)
+- return clazz;
+-
+- Class specialCase = (Class)kSpecialCasesClasses.get(getClassName());
+-
+- if (specialCase != null){
+- clazz = specialCase;
+- return specialCase;
+- } else {
+- ClassLoader expectedTypeClassLoader = (expectedType == null ? null : expectedType.getClassLoader());
+- return loadClassOfType(getClassName(),
+- codebase,
+- expectedTypeClassLoader,
+- expectedType,
+- expectedTypeClassLoader);
+- }
+-
+- }
+-
+- public final Class getClassFromType(String url)
+- throws ClassNotFoundException, MalformedURLException {
+- return Util.loadClass(getClassName(), url, null);
+- }
+-
+- public final String toString() {
+- return repId;
+- }
+-
+- private static String createHashString(java.io.Serializable ser) {
+-
+- return createHashString(ser.getClass());
+- }
+-
+- private static String createHashString(java.lang.Class clazz) {
+-
+- if (clazz.isInterface() || !java.io.Serializable.class.isAssignableFrom(clazz))
+- return kInterfaceHashCode;
+-
+-
+- long actualLong = ObjectStreamClassUtil_1_3.computeStructuralUID(false, clazz);
+- String hash = null;
+- if (actualLong == 0)
+- hash = kInterfaceOnlyHashStr;
+- else if (actualLong == 1)
+- hash = kExternalizableHashStr;
+- else
+- hash = Long.toHexString(actualLong).toUpperCase();
+- while(hash.length() < 16){
+- hash = "0" + hash;
+- }
+-
+- long declaredLong = ObjectStreamClassUtil_1_3.computeSerialVersionUID(clazz);
+- String declared = null;
+- if (declaredLong == 0)
+- declared = kInterfaceOnlyHashStr;
+- else if (declaredLong == 1)
+- declared = kExternalizableHashStr;
+- else
+- declared = Long.toHexString(declaredLong).toUpperCase();
+- while (declared.length() < 16){
+- declared = "0" + declared;
+- }
+- hash = hash + ":" + declared;
+-
+- return ":" + hash;
+- }
+-
+- /**
+- * Creates a repository ID for a sequence. This is for expert users only as
+- * this method assumes the object passed is an array. If passed an object
+- * that is not an array, it will produce a rep id for a sequence of zero
+- * length. This would be an error.
+- * @param ser The Java object to create a repository ID for
+- **/
+- public static String createSequenceRepID(java.lang.Object ser){
+- return createSequenceRepID(ser.getClass());
+- }
+-
+- /**
+- * Creates a repository ID for a sequence. This is for expert users only as
+- * this method assumes the object passed is an array. If passed an object
+- * that is not an array, it will produce a malformed rep id.
+- * @param clazz The Java class to create a repository ID for
+- **/
+- public static String createSequenceRepID(java.lang.Class clazz){
+- synchronized (classSeqToRepStr){
+-
+- String repid = (String)classSeqToRepStr.get(clazz);
+- if (repid != null)
+- return repid;
+-
+- Class originalClazz = clazz;
+-
+- Class type = null;
+- int numOfDims = 0;
+-
+- while ((type = clazz.getComponentType()) != null) {
+- numOfDims++;
+- clazz = type;
+- }
+-
+- if (clazz.isPrimitive())
+- repid = kValuePrefix + originalClazz.getName() + kPrimitiveSequenceValueHash;
+- else {
+- StringBuffer buf = new StringBuffer();
+- buf.append(kValuePrefix);
+- while(numOfDims-- > 0) {
+- buf.append("[");
+- }
+- buf.append("L");
+- buf.append(convertToISOLatin1(clazz.getName()));
+- buf.append(";");
+- buf.append(createHashString(clazz));
+- repid = buf.toString();
+- }
+- classSeqToRepStr.put(originalClazz,repid);
+- return repid;
+- }
+-
+- }
+-
+-
+- public static String createForSpecialCase(java.lang.Class clazz){
+- if (clazz.isArray()){
+- return createSequenceRepID(clazz);
+- }
+- else {
+- return (String)kSpecialCasesRepIDs.get(clazz);
+- }
+- }
+-
+- public static String createForSpecialCase(java.io.Serializable ser){
+- Class clazz = ser.getClass();
+- if (clazz.isArray()){
+- return createSequenceRepID(ser);
+- }
+- else
+- return createForSpecialCase(clazz);
+- }
+-
+- /**
+- * Creates a repository ID for a normal Java Type.
+- * @param ser The Java object to create a repository ID for
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser implements the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForJavaType(java.io.Serializable ser)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classToRepStr) {
+- String repid = createForSpecialCase(ser);
+- if (repid != null)
+- return repid;
+- Class clazz = ser.getClass();
+- repid = (String)classToRepStr.get(clazz);
+-
+- if (repid != null)
+- return repid;
+-
+- repid = kValuePrefix + convertToISOLatin1(clazz.getName()) +
+- createHashString(clazz);
+-
+- classToRepStr.put(clazz, repid);
+- repStrToClass.put(repid, clazz);
+- return repid;
+- }
+- }
+-
+- /**
+- * Creates a repository ID for a normal Java Type.
+- * @param clz The Java class to create a repository ID for
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser implements the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForJavaType(Class clz)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classToRepStr){
+- String repid = createForSpecialCase(clz);
+- if (repid != null)
+- return repid;
+-
+- repid = (String)classToRepStr.get(clz);
+- if (repid != null)
+- return repid;
+-
+- repid = kValuePrefix + convertToISOLatin1(clz.getName()) +
+- createHashString(clz);
+-
+- classToRepStr.put(clz, repid);
+- repStrToClass.put(repid, clz);
+- return repid;
+- }
+- }
+-
+- /**
+- * Creates a repository ID for an IDL Java Type.
+- * @param ser The IDL Value object to create a repository ID for
+- * @param major The major version number
+- * @param minor The minor version number
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser does not implement the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForIDLType(Class ser, int major, int minor)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classIDLToRepStr){
+- String repid = (String)classIDLToRepStr.get(ser);
+- if (repid != null)
+- return repid;
+-
+- repid = kIDLPrefix + convertToISOLatin1(ser.getName()).replace('.','/') +
+- ":" + major + "." + minor;
+- classIDLToRepStr.put(ser, repid);
+- return repid;
+- }
+- }
+-
+- private static String getIdFromHelper(Class clazz){
+- try {
+- Class helperClazz = Utility.loadClassForClass(clazz.getName()+"Helper", null,
+- clazz.getClassLoader(), clazz, clazz.getClassLoader());
+- Method idMethod = helperClazz.getDeclaredMethod("id", kNoParamTypes);
+- return (String)idMethod.invoke(null, kNoArgs);
+- }
+- catch(java.lang.ClassNotFoundException cnfe)
+- {
+- throw new org.omg.CORBA.MARSHAL(cnfe.toString());
+- }
+- catch(java.lang.NoSuchMethodException nsme)
+- {
+- throw new org.omg.CORBA.MARSHAL(nsme.toString());
+- }
+- catch(java.lang.reflect.InvocationTargetException ite)
+- {
+- throw new org.omg.CORBA.MARSHAL(ite.toString());
+- }
+- catch(java.lang.IllegalAccessException iae)
+- {
+- throw new org.omg.CORBA.MARSHAL(iae.toString());
+- }
+- }
+-
+- /**
+- * Createa a repository ID for the type if it is either a java type
+- * or an IDL type.
+- * @param type The type to create rep. id for
+- * @return The rep. id.
+- **/
+- public static String createForAnyType(Class type) {
+- try{
+- if (type.isArray())
+- return createSequenceRepID(type);
+- else if (IDLEntity.class.isAssignableFrom(type))
+- {
+- try{
+- return getIdFromHelper(type);
+- }
+- catch(Throwable t) {
+- return createForIDLType(type, 1, 0);
+- }
+- }
+- else return createForJavaType(type);
+- }
+- catch(com.sun.corba.se.impl.io.TypeMismatchException e){
+- return null;
+- }
+-
+- }
+-
+- public static boolean isAbstractBase(Class clazz) {
+- return (clazz.isInterface() &&
+- IDLEntity.class.isAssignableFrom(clazz) &&
+- (!ValueBase.class.isAssignableFrom(clazz)) &&
+- (!org.omg.CORBA.Object.class.isAssignableFrom(clazz)));
+-
+- }
+-
+- /**
+- * Convert strings with illegal IDL identifier characters.
+- * <p>
+- * Section 5.5.7 of OBV spec.
+- */
+- private static String convertToISOLatin1 (String name) {
+-
+- int length = name.length();
+- if (length == 0) {
+- return name;
+- }
+- StringBuffer buffer = null;
+-
+- for (int i = 0; i < length; i++) {
+-
+- char c = name.charAt(i);
+-
+- if (c > 255 || IDL_IDENTIFIER_CHARS[c] == 0) {
+-
+- // We gotta convert. Have we already started?
+-
+- if (buffer == null) {
+-
+- // No, so get set up...
+-
+- buffer = new StringBuffer(name.substring(0,i));
+- }
+-
+- // Convert the character into the IDL escape syntax...
+- buffer.append(
+- "\\U" +
+- (char)ASCII_HEX[(c & 0xF000) >>> 12] +
+- (char)ASCII_HEX[(c & 0x0F00) >>> 8] +
+- (char)ASCII_HEX[(c & 0x00F0) >>> 4] +
+- (char)ASCII_HEX[(c & 0x000F)]);
+-
+- } else {
+- if (buffer != null) {
+- buffer.append(c);
+- }
+- }
+- }
+-
+- if (buffer != null) {
+- name = buffer.toString();
+- }
+-
+- return name;
+- }
+-
+- /**
+- * Convert strings with ISO Latin 1 escape sequences back to original strings.
+- * <p>
+- * Section 5.5.7 of OBV spec.
+- */
+- private static String convertFromISOLatin1 (String name) {
+-
+- int index = -1;
+- StringBuffer buf = new StringBuffer(name);
+-
+- while ((index = buf.toString().indexOf("\\U")) != -1){
+- String str = "0000" + buf.toString().substring(index+2, index+6);
+-
+- // Convert Hexadecimal
+- byte[] buffer = new byte[(str.length() - 4) / 2];
+- for (int i=4, j=0; i < str.length(); i +=2, j++) {
+- buffer[j] = (byte)((ORBUtility.hexOf(str.charAt(i)) << 4) & 0xF0);
+- buffer[j] |= (byte)((ORBUtility.hexOf(str.charAt(i+1)) << 0) & 0x0F);
+- }
+- buf = new StringBuffer(delete(buf.toString(), index, index+6));
+- buf.insert(index, (char)buffer[1]);
+- }
+-
+- return buf.toString();
+-
+-
+- }
+-
+- private static String delete(String str, int from, int to)
+- {
+- return str.substring(0, from) + str.substring(to, str.length());
+- }
+-
+- private static String replace(String target, String arg, String source)
+- {
+- int i = 0;
+- i = target.indexOf(arg);
+-
+- while(i != -1)
+- {
+- String left = target.substring(0, i);
+- String right = target.substring(i+arg.length());
+- target = new String(left+source+right);
+- i = target.indexOf(arg);
+- }
+- return target;
+- }
+-
+- /*
+- * Load a class and check that it is assignable to a given type.
+- * @param className the class name.
+- * @param remoteCodebase the codebase to use. May be null.
+- * @param loader the class loader of last resort. May be null.
+- * @param expectedType the expected type. May be null.
+- * @return the loaded class.
+- */
+- private Class loadClassOfType (String className,
+- String remoteCodebase,
+- ClassLoader loader,
+- Class expectedType,
+- ClassLoader expectedTypeClassLoader)
+- throws ClassNotFoundException {
+-
+- Class loadedClass = null;
+-
+- try {
+- //Sequence finding of the stubs according to spec
+- try{
+- //If-else is put here for speed up of J2EE.
+- //According to the OMG spec, the if clause is not dead code.
+- //It can occur if some compiler has allowed generation
+- //into org.omg.stub hierarchy for non-offending
+- //classes. This will encourage people to
+- //produce non-offending class stubs in their own hierarchy.
+- if(!PackagePrefixChecker
+- .hasOffendingPrefix(PackagePrefixChecker
+- .withoutPackagePrefix(className))){
+- loadedClass = Util.loadClass
+- (PackagePrefixChecker.withoutPackagePrefix(className),
+- remoteCodebase,
+- loader);
+- } else {
+- loadedClass = Util.loadClass
+- (className,
+- remoteCodebase,
+- loader);
+- }
+- } catch (ClassNotFoundException cnfe) {
+- loadedClass = Util.loadClass
+- (className,
+- remoteCodebase,
+- loader);
+- }
+- if (expectedType == null)
+- return loadedClass;
+- } catch (ClassNotFoundException cnfe) {
+- if (expectedType == null)
+- throw cnfe;
+- }
+-
+- // If no class was not loaded, or if the loaded class is not of the
+- // correct type, make a further attempt to load the correct class
+- // using the classloader of the expected type.
+- // _REVISIT_ Is this step necessary, or should the Util,loadClass
+- // algorithm always produce a valid class if the setup is correct?
+- // Does the OMG standard algorithm need to be changed to include
+- // this step?
+- if (loadedClass == null || !expectedType.isAssignableFrom(loadedClass)) {
+- if (expectedType.getClassLoader() != expectedTypeClassLoader)
+- throw new IllegalArgumentException("expectedTypeClassLoader not class loader of expectedType.");
+-
+- if (expectedTypeClassLoader != null)
+- loadedClass = expectedTypeClassLoader.loadClass(className);
+- else
+- loadedClass = ORBClassLoader.loadClass(className);
+- }
+-
+- return loadedClass;
+- }
+-
+- /**
+- * Checks to see if the FullValueDescription should be retrieved.
+- * @exception Throws IOException if suids do not match or if the repositoryID
+- * is not an RMIValueType
+- */
+- public static boolean useFullValueDescription(Class clazz, String repositoryID)
+- throws IOException{
+-
+- String clazzRepIDStr = createForAnyType(clazz);
+-
+- if (clazzRepIDStr.equals(repositoryID))
+- return false;
+-
+- RepositoryId_1_3 targetRepid;
+- RepositoryId_1_3 clazzRepid;
+-
+- synchronized(cache) {
+- // to avoid race condition where multiple threads could be
+- // accessing this method, and their access to the cache may
+- // be interleaved giving unexpected results
+-
+- targetRepid = cache.getId(repositoryID);
+- clazzRepid = cache.getId(clazzRepIDStr);
+- }
+-
+- if ((targetRepid.isRMIValueType()) && (clazzRepid.isRMIValueType())){
+- if (!targetRepid.getSerialVersionUID().equals(clazzRepid.getSerialVersionUID())) {
+-
+- String mssg = "Mismatched serialization UIDs : Source (Rep. ID" +
+- clazzRepid + ") = " +
+- clazzRepid.getSerialVersionUID() + " whereas Target (Rep. ID " + repositoryID +
+- ") = " + targetRepid.getSerialVersionUID();
+- throw new IOException(mssg);
+- } else {
+- return true;
+- }
+- } else {
+-
+- throw new IOException("The repository ID is not of an RMI value type (Expected ID = " + clazzRepIDStr + "; Received ID = " + repositoryID +")");
+- }
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryId_1_3_1.java 2012-08-10 09:10:34.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/RepositoryId_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,1065 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2012, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-/*
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import java.util.StringTokenizer;
+-import java.util.Hashtable;
+-import java.io.IOException;
+-import java.lang.reflect.Method;
+-import java.net.MalformedURLException;
+-import org.omg.CORBA.portable.ValueBase;
+-import org.omg.CORBA.portable.IDLEntity;
+-
+-//d11638 files in the same package, therefore remove their reference
+-//import com.sun.corba.se.impl.util.JDKBridge;
+-//import com.sun.corba.se.impl.util.IdentityHashtable;
+-import com.sun.corba.se.impl.util.JDKBridge;
+-import com.sun.corba.se.impl.util.Utility;
+-import com.sun.corba.se.impl.util.PackagePrefixChecker;
+-import com.sun.corba.se.impl.util.IdentityHashtable;
+-
+-import javax.rmi.CORBA.Util;
+-
+-/**
+- * Because all methods in RepositoryId are static, we have
+- * to duplicate all of this code, freezing it in its 1.3.1
+- * form for backwards compatibility.
+- *
+- * For security reasons, we can't expose enough of
+- * io/ObjectStreamClass, so it has to be duplicated in
+- * orbutil.
+- */
+-public class RepositoryId_1_3_1 {
+-
+- // Legal IDL Identifier characters (1 = legal). Note
+- // that '.' (2E) is marked as legal even though it is
+- // not legal in IDL. This allows us to treat a fully
+- // qualified Java name with '.' package separators
+- // uniformly, and is safe because that is the only
+- // legal use of '.' in a Java name.
+-
+- private static final byte[] IDL_IDENTIFIER_CHARS = {
+-
+- // 0 1 2 3 4 5 6 7 8 9 a b c d e f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 00-0f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 10-1f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,1,0, // 20-2f
+- 1,1,1,1, 1,1,1,1, 1,1,0,0, 0,0,0,0, // 30-3f
+- 0,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // 40-4f
+- 1,1,1,1, 1,1,1,1, 1,1,1,0, 0,0,0,1, // 50-5f
+- 0,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // 60-6f
+- 1,1,1,1, 1,1,1,1, 1,1,1,0, 0,0,0,0, // 70-7f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 80-8f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // 90-9f
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // a0-af
+- 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, // b0-bf
+- 1,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // c0-cf
+- 0,1,1,1, 1,1,1,0, 1,1,1,1, 1,0,0,1, // d0-df
+- 1,1,1,1, 1,1,1,1, 1,1,1,1, 1,1,1,1, // e0-ef
+- 0,1,1,1, 1,1,1,0, 1,1,1,1, 1,0,0,1, // f0-ff
+- };
+-
+-
+- private static final long serialVersionUID = 123456789L;
+-
+- private static String defaultServerURL = null;
+- private static boolean useCodebaseOnly = false;
+-
+- static {
+- if (defaultServerURL == null)
+- defaultServerURL = (String)JDKBridge.getLocalCodebase();
+- useCodebaseOnly = JDKBridge.useCodebaseOnly();
+-
+- }
+-
+- private static IdentityHashtable classToRepStr = new IdentityHashtable();
+- private static IdentityHashtable classIDLToRepStr = new IdentityHashtable();
+- private static IdentityHashtable classSeqToRepStr = new IdentityHashtable();
+-
+- private static IdentityHashtable repStrToByteArray = new IdentityHashtable();
+- private static Hashtable repStrToClass = new Hashtable();
+-
+- private String repId = null;
+- private boolean isSupportedFormat = true;
+- private String typeString = null;
+- private String versionString = null;
+- private boolean isSequence = false;
+- private boolean isRMIValueType = false;
+- private boolean isIDLType = false;
+- private String completeClassName = null;
+- private String unqualifiedName = null;
+- private String definedInId = null;
+- private Class clazz = null;
+- private String suid = null, actualSuid = null;
+- private long suidLong = ObjectStreamClass_1_3_1.kDefaultUID, actualSuidLong = ObjectStreamClass_1_3_1.kDefaultUID;
+-
+- // Repository ID fragments
+- private static final String kSequenceKeyword = "seq";
+- private static final String kValuePrefix = "RMI:";
+- private static final String kIDLPrefix = "IDL:";
+- private static final String kIDLNamePrefix = "omg.org/";
+- private static final String kIDLClassnamePrefix = "org.omg.";
+- private static final String kSequencePrefix = "[";
+- private static final String kCORBAPrefix = "CORBA/";
+- private static final String kArrayPrefix = kValuePrefix + kSequencePrefix + kCORBAPrefix;
+- private static final int kValuePrefixLength = kValuePrefix.length();
+- private static final int kIDLPrefixLength = kIDLPrefix.length();
+- private static final int kSequencePrefixLength = kSequencePrefix.length();
+- private static final String kInterfaceHashCode = ":0000000000000000";
+- private static final String kInterfaceOnlyHashStr = "0000000000000000";
+- private static final String kExternalizableHashStr = "0000000000000001";
+-
+- // Value tag utility methods and constants
+- public static final int kInitialValueTag= 0x7fffff00;
+- public static final int kNoTypeInfo = 0;
+- public static final int kSingleRepTypeInfo = 0x02;
+- public static final int kPartialListTypeInfo = 0x06;
+- public static final int kChunkedMask = 0x08;
+- public static final int kPreComputed_StandardRMIUnchunked = RepositoryId_1_3_1.computeValueTag(false, RepositoryId_1_3_1.kSingleRepTypeInfo, false);
+- public static final int kPreComputed_CodeBaseRMIUnchunked = RepositoryId_1_3_1.computeValueTag(true, RepositoryId_1_3_1.kSingleRepTypeInfo, false);
+- public static final int kPreComputed_StandardRMIChunked = RepositoryId_1_3_1.computeValueTag(false, RepositoryId_1_3_1.kSingleRepTypeInfo, true);
+- public static final int kPreComputed_CodeBaseRMIChunked = RepositoryId_1_3_1.computeValueTag(true, RepositoryId_1_3_1.kSingleRepTypeInfo, true);
+-
+- public static final int kPreComputed_StandardRMIUnchunked_NoRep = RepositoryId_1_3_1.computeValueTag(false, RepositoryId_1_3_1.kNoTypeInfo, false);
+- public static final int kPreComputed_CodeBaseRMIUnchunked_NoRep = RepositoryId_1_3_1.computeValueTag(true, RepositoryId_1_3_1.kNoTypeInfo, false);
+- public static final int kPreComputed_StandardRMIChunked_NoRep = RepositoryId_1_3_1.computeValueTag(false, RepositoryId_1_3_1.kNoTypeInfo, true);
+- public static final int kPreComputed_CodeBaseRMIChunked_NoRep = RepositoryId_1_3_1.computeValueTag(true, RepositoryId_1_3_1.kNoTypeInfo, true);
+-
+- // Public, well known repository IDs
+-
+- // _REVISIT_ : A table structure with a good search routine for all of this
+- // would be more efficient and easier to maintain...
+-
+- // String
+- public static final String kWStringValueVersion = "1.0";
+- public static final String kWStringValueHash = ":"+kWStringValueVersion;
+- public static final String kWStringStubValue = "WStringValue";
+- public static final String kWStringTypeStr = "omg.org/CORBA/"+kWStringStubValue;
+- public static final String kWStringValueRepID = kIDLPrefix + kWStringTypeStr + kWStringValueHash;
+-
+- // Any
+- public static final String kAnyRepID = kIDLPrefix + "omg.org/CORBA/Any";
+-
+- // Class
+- // Anita4: convert to uppercase
+- public static final String kClassDescValueHash = ":" +
+- Long.toHexString(
+- ObjectStreamClass_1_3_1.getActualSerialVersionUID(javax.rmi.CORBA.ClassDesc.class)).toUpperCase() + ":" +
+- Long.toHexString(
+- ObjectStreamClass_1_3_1.getSerialVersionUID(javax.rmi.CORBA.ClassDesc.class)).toUpperCase();
+- public static final String kClassDescStubValue = "ClassDesc";
+- public static final String kClassDescTypeStr = "javax.rmi.CORBA."+kClassDescStubValue;
+- public static final String kClassDescValueRepID = kValuePrefix + kClassDescTypeStr + kClassDescValueHash;
+-
+- // Object
+- public static final String kObjectValueHash = ":1.0";
+- public static final String kObjectStubValue = "Object";
+-
+- // Sequence
+- public static final String kSequenceValueHash = ":1.0";
+- public static final String kPrimitiveSequenceValueHash = ":0000000000000000";
+-
+- // Serializable
+- public static final String kSerializableValueHash = ":1.0";
+- public static final String kSerializableStubValue = "Serializable";
+-
+- // Externalizable
+- public static final String kExternalizableValueHash = ":1.0";
+- public static final String kExternalizableStubValue = "Externalizable";
+-
+- // Remote (The empty string is used for java.rmi.Remote)
+- public static final String kRemoteValueHash = "";
+- public static final String kRemoteStubValue = "";
+- public static final String kRemoteTypeStr = "";
+- public static final String kRemoteValueRepID = "";
+-
+- private static final Hashtable kSpecialArrayTypeStrings = new Hashtable();
+-
+- static {
+- kSpecialArrayTypeStrings.put("CORBA.WStringValue", new StringBuffer(java.lang.String.class.getName()));
+- kSpecialArrayTypeStrings.put("javax.rmi.CORBA.ClassDesc", new StringBuffer(java.lang.Class.class.getName()));
+- kSpecialArrayTypeStrings.put("CORBA.Object", new StringBuffer(java.rmi.Remote.class.getName()));
+-
+- }
+-
+- private static final Hashtable kSpecialCasesRepIDs = new Hashtable();
+-
+- static {
+- kSpecialCasesRepIDs.put(java.lang.String.class, kWStringValueRepID);
+- kSpecialCasesRepIDs.put(java.lang.Class.class, kClassDescValueRepID);
+- kSpecialCasesRepIDs.put(java.rmi.Remote.class, kRemoteValueRepID);
+- }
+-
+- private static final Hashtable kSpecialCasesStubValues = new Hashtable();
+-
+- static {
+- kSpecialCasesStubValues.put(java.lang.String.class, kWStringStubValue);
+- kSpecialCasesStubValues.put(java.lang.Class.class, kClassDescStubValue);
+- kSpecialCasesStubValues.put(java.lang.Object.class, kObjectStubValue);
+- kSpecialCasesStubValues.put(java.io.Serializable.class, kSerializableStubValue);
+- kSpecialCasesStubValues.put(java.io.Externalizable.class, kExternalizableStubValue);
+- kSpecialCasesStubValues.put(java.rmi.Remote.class, kRemoteStubValue);
+- }
+-
+-
+- private static final Hashtable kSpecialCasesVersions = new Hashtable();
+-
+- static {
+- kSpecialCasesVersions.put(java.lang.String.class, kWStringValueHash);
+- kSpecialCasesVersions.put(java.lang.Class.class, kClassDescValueHash);
+- kSpecialCasesVersions.put(java.lang.Object.class, kObjectValueHash);
+- kSpecialCasesVersions.put(java.io.Serializable.class, kSerializableValueHash);
+- kSpecialCasesVersions.put(java.io.Externalizable.class, kExternalizableValueHash);
+- kSpecialCasesVersions.put(java.rmi.Remote.class, kRemoteValueHash);
+- }
+-
+- private static final Hashtable kSpecialCasesClasses = new Hashtable();
+-
+- static {
+- kSpecialCasesClasses.put(kWStringTypeStr, java.lang.String.class);
+- kSpecialCasesClasses.put(kClassDescTypeStr, java.lang.Class.class);
+- kSpecialCasesClasses.put(kRemoteTypeStr, java.rmi.Remote.class);
+-
+- kSpecialCasesClasses.put("org.omg.CORBA.WStringValue", java.lang.String.class);
+- kSpecialCasesClasses.put("javax.rmi.CORBA.ClassDesc", java.lang.Class.class);
+- //kSpecialCasesClasses.put(kRemoteTypeStr, java.rmi.Remote.class);
+- }
+-
+- private static final Hashtable kSpecialCasesArrayPrefix = new Hashtable();
+-
+- static {
+- kSpecialCasesArrayPrefix.put(java.lang.String.class, kValuePrefix + kSequencePrefix + kCORBAPrefix);
+- kSpecialCasesArrayPrefix.put(java.lang.Class.class, kValuePrefix + kSequencePrefix + "javax/rmi/CORBA/");
+- kSpecialCasesArrayPrefix.put(java.lang.Object.class, kValuePrefix + kSequencePrefix + "java/lang/");
+- kSpecialCasesArrayPrefix.put(java.io.Serializable.class, kValuePrefix + kSequencePrefix + "java/io/");
+- kSpecialCasesArrayPrefix.put(java.io.Externalizable.class, kValuePrefix + kSequencePrefix + "java/io/");
+- kSpecialCasesArrayPrefix.put(java.rmi.Remote.class, kValuePrefix + kSequencePrefix + kCORBAPrefix);
+- }
+-
+- private static final Hashtable kSpecialPrimitives = new Hashtable();
+-
+- static {
+- kSpecialPrimitives.put("int","long");
+- kSpecialPrimitives.put("long","longlong");
+- kSpecialPrimitives.put("byte","octet");
+- }
+-
+- /**
+- * Used to convert ascii to hex.
+- */
+- private static final byte ASCII_HEX[] = {
+- (byte)'0',
+- (byte)'1',
+- (byte)'2',
+- (byte)'3',
+- (byte)'4',
+- (byte)'5',
+- (byte)'6',
+- (byte)'7',
+- (byte)'8',
+- (byte)'9',
+- (byte)'A',
+- (byte)'B',
+- (byte)'C',
+- (byte)'D',
+- (byte)'E',
+- (byte)'F',
+- };
+-
+-
+- // bug fix for 4328952; to eliminate possibility of overriding this
+- // in a subclass.
+- public static final RepositoryIdCache_1_3_1 cache = new RepositoryIdCache_1_3_1();
+-
+- // Interface Rep ID Strings
+- public static final String kjava_rmi_Remote = createForAnyType(java.rmi.Remote.class);
+- public static final String korg_omg_CORBA_Object = createForAnyType(org.omg.CORBA.Object.class);
+-
+- // Dummy arguments for getIdFromHelper method
+- public static final Class kNoParamTypes[] ={};
+- public static final Object kNoArgs[] = {};
+-
+-
+- // To create a RepositoryID, use code similar to the following:
+- // RepositoryId.cache.getId( id );
+-
+- RepositoryId_1_3_1(){}
+-
+- RepositoryId_1_3_1(String aRepId){
+- init(aRepId);
+- }
+-
+- RepositoryId_1_3_1 init(String aRepId){
+-
+- this.repId = aRepId;
+-
+- // Special case for remote
+- if (aRepId.length() == 0) {
+- clazz = java.rmi.Remote.class;
+- typeString = "";
+- isRMIValueType = true;
+- suid = kInterfaceOnlyHashStr;
+- return this;
+- }
+- else if (aRepId.equals(kWStringValueRepID)) {
+- clazz = java.lang.String.class;
+- typeString = kWStringTypeStr;
+- isIDLType = true;
+- // fix where Attempting to obtain a FullValueDescription
+- // for an RMI value type with a String field causes an exception.
+- completeClassName = "java.lang.String";
+- versionString = kWStringValueVersion;
+- return this;
+- }
+- else {
+-
+- String repId = convertFromISOLatin1(aRepId);
+-
+- versionString = repId.substring(repId.indexOf(':', repId.indexOf(':')+1));
+- if (repId.startsWith(kIDLPrefix)) {
+- typeString =
+- repId.substring(kIDLPrefixLength, repId.indexOf(':', kIDLPrefixLength));
+- isIDLType = true;
+- if (typeString.startsWith(kIDLNamePrefix))
+- completeClassName = kIDLClassnamePrefix +
+- typeString.substring(kIDLNamePrefix.length()).replace('/','.');
+- else completeClassName = typeString.replace('/','.');
+-
+- }
+- else if (repId.startsWith(kValuePrefix)) {
+- typeString =
+- repId.substring(kValuePrefixLength, repId.indexOf(':', kValuePrefixLength));
+- isRMIValueType = true;
+-
+- if (versionString.indexOf('.') == -1) {
+- actualSuid = versionString.substring(1);
+- suid = actualSuid; // default if not explicitly specified
+-
+- if (actualSuid.indexOf(':') != -1){
+- // we have a declared hash also
+- int pos = actualSuid.indexOf(':')+1;
+- // actualSuid = suid.substring(pos);
+- // suid = suid.substring(0, pos-1);
+- suid = actualSuid.substring(pos);
+- actualSuid = actualSuid.substring(0, pos-1);
+- }
+-
+- }
+- else {
+- // _REVISIT_ : Special case version failure ?
+- }
+- }
+- else isSupportedFormat = false;
+-
+- if (typeString.startsWith(kSequencePrefix)) {
+- isSequence = true;
+- }
+-
+-
+- return this;
+- }
+- }
+-
+- public final String getUnqualifiedName() {
+- if (unqualifiedName == null){
+- String className = getClassName();
+- int index = className.lastIndexOf('.');
+- if (index == -1){
+- unqualifiedName = className;
+- definedInId = "IDL::1.0";
+- }
+- else {
+- unqualifiedName = className.substring(index);
+- definedInId = "IDL:" + className.substring(0, index).replace('.','/') + ":1.0";
+- }
+- }
+-
+- return unqualifiedName;
+- }
+-
+- public final String getDefinedInId() {
+- if (definedInId == null){
+- getUnqualifiedName();
+- }
+-
+- return definedInId;
+- }
+-
+- public final String getTypeString() {
+- return typeString;
+- }
+-
+- public final String getVersionString() {
+- return versionString;
+- }
+-
+- public final String getSerialVersionUID() {
+- return suid;
+- }
+-
+- public final String getActualSerialVersionUID() {
+- return actualSuid;
+- }
+- public final long getSerialVersionUIDAsLong() {
+- return suidLong;
+- }
+-
+- public final long getActualSerialVersionUIDAsLong() {
+- return actualSuidLong;
+- }
+-
+- public final boolean isRMIValueType() {
+- return isRMIValueType;
+- }
+-
+- public final boolean isIDLType() {
+- return isIDLType;
+- }
+-
+- public final String getRepositoryId() {
+- return repId;
+- }
+-
+- public static byte[] getByteArray(String repStr) {
+- synchronized (repStrToByteArray){
+- return (byte[]) repStrToByteArray.get(repStr);
+- }
+- }
+-
+- public static void setByteArray(String repStr, byte[] repStrBytes) {
+- synchronized (repStrToByteArray){
+- repStrToByteArray.put(repStr, repStrBytes);
+- }
+- }
+-
+- public final boolean isSequence() {
+- return isSequence;
+- }
+-
+- public final boolean isSupportedFormat() {
+- return isSupportedFormat;
+- }
+-
+-
+- // This method will return the classname from the typestring OR if the classname turns out to be
+- // a special class "pseudo" name, then the matching real classname is returned.
+- public final String getClassName() {
+-
+- if (isRMIValueType)
+- return typeString;
+- else if (isIDLType)
+- return completeClassName;
+- else return null;
+-
+- }
+-
+- // This method calls getClazzFromType() and falls back to the repStrToClass
+- // cache if no class was found. It's used where any class matching the
+- // given repid is an acceptable result.
+- public final Class getAnyClassFromType() throws ClassNotFoundException {
+- try {
+- return getClassFromType();
+- } catch (ClassNotFoundException cnfe) {
+- Class clz = (Class)repStrToClass.get(repId);
+- if (clz != null)
+- return clz;
+- else
+- throw cnfe;
+- }
+- }
+-
+- public final Class getClassFromType()
+- throws ClassNotFoundException {
+- if (clazz != null)
+- return clazz;
+-
+- Class specialCase = (Class)kSpecialCasesClasses.get(getClassName());
+-
+- if (specialCase != null){
+- clazz = specialCase;
+- return specialCase;
+- }
+- else
+- {
+- try{
+- return Util.loadClass(getClassName(), null, null);
+- }
+- catch(ClassNotFoundException cnfe){
+- if (defaultServerURL != null) {
+- try{
+- return getClassFromType(defaultServerURL);
+- }
+- catch(MalformedURLException mue){
+- throw cnfe;
+- }
+- }
+- else throw cnfe;
+- }
+- }
+-
+- }
+-
+- public final Class getClassFromType(Class expectedType, String codebase)
+- throws ClassNotFoundException {
+- if (clazz != null)
+- return clazz;
+-
+- Class specialCase = (Class)kSpecialCasesClasses.get(getClassName());
+-
+- if (specialCase != null){
+- clazz = specialCase;
+- return specialCase;
+- } else {
+- ClassLoader expectedTypeClassLoader = (expectedType == null ? null : expectedType.getClassLoader());
+- return loadClassOfType(getClassName(),
+- codebase,
+- expectedTypeClassLoader,
+- expectedType,
+- expectedTypeClassLoader);
+- }
+-
+- }
+-
+- public final Class getClassFromType(String url)
+- throws ClassNotFoundException, MalformedURLException {
+- return Util.loadClass(getClassName(), url, null);
+- }
+-
+- public final String toString() {
+- return repId;
+- }
+-
+- /**
+- * Checks to see if the FullValueDescription should be retrieved.
+- * @exception Throws IOException if suids do not match or if the repositoryID
+- * is not an RMIValueType
+- */
+- public static boolean useFullValueDescription(Class clazz, String repositoryID)
+- throws IOException{
+-
+- String clazzRepIDStr = createForAnyType(clazz);
+-
+- if (clazzRepIDStr.equals(repositoryID))
+- return false;
+-
+- RepositoryId_1_3_1 targetRepid;
+- RepositoryId_1_3_1 clazzRepid;
+-
+- synchronized(cache) {
+- // to avoid race condition where multiple threads could be
+- // accessing this method, and their access to the cache may
+- // be interleaved giving unexpected results
+-
+- targetRepid = cache.getId(repositoryID);
+- clazzRepid = cache.getId(clazzRepIDStr);
+- }
+- //ObjectStreamClass osc = ObjectStreamClass.lookup(clazz);
+-
+- if ((targetRepid.isRMIValueType()) && (clazzRepid.isRMIValueType())){
+- if (!targetRepid.getSerialVersionUID().equals(clazzRepid.getSerialVersionUID())) {
+-
+- String mssg = "Mismatched serialization UIDs : Source (Rep. ID" +
+- clazzRepid + ") = " +
+- clazzRepid.getSerialVersionUID() + " whereas Target (Rep. ID " + repositoryID +
+- ") = " + targetRepid.getSerialVersionUID();
+- //com.sun.corba.se.impl.io.ValueUtility.log("RepositoryId",mssg);
+- throw new IOException(mssg);
+- }
+- else {
+- return true;
+- }
+- }
+- else {
+-
+- throw new IOException("The repository ID is not of an RMI value type (Expected ID = " + clazzRepIDStr + "; Received ID = " + repositoryID +")");
+- }
+- }
+-
+- private static String createHashString(java.io.Serializable ser) {
+-
+- return createHashString(ser.getClass());
+- }
+-
+- private static String createHashString(java.lang.Class clazz) {
+-
+- if (clazz.isInterface() || !java.io.Serializable.class.isAssignableFrom(clazz))
+- return kInterfaceHashCode;
+-
+- //ObjectStreamClass osc = ObjectStreamClass.lookup(clazz);
+-
+- long actualLong = ObjectStreamClass_1_3_1.getActualSerialVersionUID(clazz);
+- String hash = null;
+- if (actualLong == 0)
+- hash = kInterfaceOnlyHashStr;
+- else if (actualLong == 1)
+- hash = kExternalizableHashStr;
+- else
+- hash = Long.toHexString(actualLong).toUpperCase();
+- while(hash.length() < 16){
+- hash = "0" + hash;
+- }
+-
+- long declaredLong = ObjectStreamClass_1_3_1.getSerialVersionUID(clazz);
+- String declared = null;
+- if (declaredLong == 0)
+- declared = kInterfaceOnlyHashStr;
+- else if (declaredLong == 1)
+- declared = kExternalizableHashStr;
+- else
+- declared = Long.toHexString(declaredLong).toUpperCase();
+- while (declared.length() < 16){
+- declared = "0" + declared;
+- }
+- hash = hash + ":" + declared;
+-
+- return ":" + hash;
+- }
+-
+- /**
+- * Creates a repository ID for a sequence. This is for expert users only as
+- * this method assumes the object passed is an array. If passed an object
+- * that is not an array, it will produce a rep id for a sequence of zero
+- * length. This would be an error.
+- * @param ser The Java object to create a repository ID for
+- **/
+- public static String createSequenceRepID(java.lang.Object ser){
+- return createSequenceRepID(ser.getClass());
+- }
+-
+- /**
+- * Creates a repository ID for a sequence. This is for expert users only as
+- * this method assumes the object passed is an array. If passed an object
+- * that is not an array, it will produce a malformed rep id.
+- * @param clazz The Java class to create a repository ID for
+- **/
+- public static String createSequenceRepID(java.lang.Class clazz){
+- synchronized (classSeqToRepStr){
+-
+- String repid = (String)classSeqToRepStr.get(clazz);
+- if (repid != null)
+- return repid;
+-
+- Class originalClazz = clazz;
+-
+- Class type = null;
+- int numOfDims = 0;
+-
+- while ((type = clazz.getComponentType()) != null) {
+- numOfDims++;
+- clazz = type;
+- }
+-
+- if (clazz.isPrimitive())
+- repid = kValuePrefix + originalClazz.getName() + kPrimitiveSequenceValueHash;
+- else {
+- StringBuffer buf = new StringBuffer();
+- buf.append(kValuePrefix);
+- while(numOfDims-- > 0) {
+- buf.append("[");
+- }
+- buf.append("L");
+- buf.append(convertToISOLatin1(clazz.getName()));
+- buf.append(";");
+- buf.append(createHashString(clazz));
+- repid = buf.toString();
+- }
+- classSeqToRepStr.put(originalClazz,repid);
+- return repid;
+- }
+-
+- }
+-
+-
+- public static String createForSpecialCase(java.lang.Class clazz){
+- if (clazz.isArray()){
+- return createSequenceRepID(clazz);
+- }
+- else {
+- return (String)kSpecialCasesRepIDs.get(clazz);
+- }
+- }
+-
+- public static String createForSpecialCase(java.io.Serializable ser){
+- Class clazz = ser.getClass();
+- if (clazz.isArray()){
+- return createSequenceRepID(ser);
+- }
+- else
+- return createForSpecialCase(clazz);
+- }
+-
+- /**
+- * Creates a repository ID for a normal Java Type.
+- * @param ser The Java object to create a repository ID for
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser implements the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForJavaType(java.io.Serializable ser)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classToRepStr) {
+- String repid = createForSpecialCase(ser);
+- if (repid != null)
+- return repid;
+- Class clazz = ser.getClass();
+- repid = (String)classToRepStr.get(clazz);
+-
+- if (repid != null)
+- return repid;
+-
+- repid = kValuePrefix + convertToISOLatin1(clazz.getName()) +
+- createHashString(clazz);
+-
+- classToRepStr.put(clazz, repid);
+- repStrToClass.put(repid, clazz);
+- return repid;
+- }
+- }
+-
+- /**
+- * Creates a repository ID for a normal Java Type.
+- * @param clz The Java class to create a repository ID for
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser implements the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForJavaType(Class clz)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classToRepStr){
+- String repid = createForSpecialCase(clz);
+- if (repid != null)
+- return repid;
+-
+- repid = (String)classToRepStr.get(clz);
+- if (repid != null)
+- return repid;
+-
+- repid = kValuePrefix + convertToISOLatin1(clz.getName()) +
+- createHashString(clz);
+-
+- classToRepStr.put(clz, repid);
+- repStrToClass.put(repid, clz);
+- return repid;
+- }
+- }
+-
+- /**
+- * Creates a repository ID for an IDL Java Type.
+- * @param ser The IDL Value object to create a repository ID for
+- * @param major The major version number
+- * @param minor The minor version number
+- * @exception com.sun.corba.se.impl.io.TypeMismatchException if ser does not implement the
+- * org.omg.CORBA.portable.IDLEntity interface which indicates it is an IDL Value type.
+- **/
+- public static String createForIDLType(Class ser, int major, int minor)
+- throws com.sun.corba.se.impl.io.TypeMismatchException
+- {
+- synchronized (classIDLToRepStr){
+- String repid = (String)classIDLToRepStr.get(ser);
+- if (repid != null)
+- return repid;
+-
+- repid = kIDLPrefix + convertToISOLatin1(ser.getName()).replace('.','/') +
+- ":" + major + "." + minor;
+- classIDLToRepStr.put(ser, repid);
+- return repid;
+- }
+- }
+-
+- private static String getIdFromHelper(Class clazz){
+- try {
+- Class helperClazz = Utility.loadClassForClass(clazz.getName()+"Helper", null,
+- clazz.getClassLoader(), clazz, clazz.getClassLoader());
+- Method idMethod = helperClazz.getDeclaredMethod("id", kNoParamTypes);
+- return (String)idMethod.invoke(null, kNoArgs);
+- }
+- catch(java.lang.ClassNotFoundException cnfe)
+- {
+- throw new org.omg.CORBA.MARSHAL(cnfe.toString());
+- }
+- catch(java.lang.NoSuchMethodException nsme)
+- {
+- throw new org.omg.CORBA.MARSHAL(nsme.toString());
+- }
+- catch(java.lang.reflect.InvocationTargetException ite)
+- {
+- throw new org.omg.CORBA.MARSHAL(ite.toString());
+- }
+- catch(java.lang.IllegalAccessException iae)
+- {
+- throw new org.omg.CORBA.MARSHAL(iae.toString());
+- }
+- }
+-
+- /**
+- * Createa a repository ID for the type if it is either a java type
+- * or an IDL type.
+- * @param type The type to create rep. id for
+- * @return The rep. id.
+- **/
+- public static String createForAnyType(Class type) {
+- try{
+- if (type.isArray())
+- return createSequenceRepID(type);
+- else if (IDLEntity.class.isAssignableFrom(type))
+- {
+- try{
+- return getIdFromHelper(type);
+- }
+- catch(Throwable t) {
+- return createForIDLType(type, 1, 0);
+- }
+- }
+- else return createForJavaType(type);
+- }
+- catch(com.sun.corba.se.impl.io.TypeMismatchException e){
+- return null;
+- }
+-
+- }
+-
+- public static boolean isAbstractBase(Class clazz) {
+- return (clazz.isInterface() &&
+- IDLEntity.class.isAssignableFrom(clazz) &&
+- (!ValueBase.class.isAssignableFrom(clazz)) &&
+- (!org.omg.CORBA.Object.class.isAssignableFrom(clazz)));
+-
+- }
+-
+- public static boolean isAnyRequired(Class clazz) {
+- return ((clazz == java.lang.Object.class) ||
+- (clazz == java.io.Serializable.class) ||
+- (clazz == java.io.Externalizable.class));
+- }
+-
+- public static long fromHex(String hexNumber) {
+- if (hexNumber.startsWith("0x"))
+- return Long.valueOf(hexNumber.substring(2), 16).longValue();
+- else return Long.valueOf(hexNumber, 16).longValue();
+- }
+-
+- /**
+- * Convert strings with illegal IDL identifier characters.
+- * <p>
+- * Section 5.5.7 of OBV spec.
+- */
+- private static String convertToISOLatin1 (String name) {
+-
+- int length = name.length();
+- if (length == 0) {
+- return name;
+- }
+- StringBuffer buffer = null;
+-
+- for (int i = 0; i < length; i++) {
+-
+- char c = name.charAt(i);
+-
+- if (c > 255 || IDL_IDENTIFIER_CHARS[c] == 0) {
+-
+- // We gotta convert. Have we already started?
+-
+- if (buffer == null) {
+-
+- // No, so get set up...
+-
+- buffer = new StringBuffer(name.substring(0,i));
+- }
+-
+- // Convert the character into the IDL escape syntax...
+- buffer.append(
+- "\\U" +
+- (char)ASCII_HEX[(c & 0xF000) >>> 12] +
+- (char)ASCII_HEX[(c & 0x0F00) >>> 8] +
+- (char)ASCII_HEX[(c & 0x00F0) >>> 4] +
+- (char)ASCII_HEX[(c & 0x000F)]);
+-
+- } else {
+- if (buffer != null) {
+- buffer.append(c);
+- }
+- }
+- }
+-
+- if (buffer != null) {
+- name = buffer.toString();
+- }
+-
+- return name;
+- }
+-
+- /**
+- * Convert strings with ISO Latin 1 escape sequences back to original strings.
+- * <p>
+- * Section 5.5.7 of OBV spec.
+- */
+- private static String convertFromISOLatin1 (String name) {
+-
+- int index = -1;
+- StringBuffer buf = new StringBuffer(name);
+-
+- while ((index = buf.toString().indexOf("\\U")) != -1){
+- String str = "0000" + buf.toString().substring(index+2, index+6);
+-
+- // Convert Hexadecimal
+- byte[] buffer = new byte[(str.length() - 4) / 2];
+- for (int i=4, j=0; i < str.length(); i +=2, j++) {
+- buffer[j] = (byte)((ORBUtility.hexOf(str.charAt(i)) << 4) & 0xF0);
+- buffer[j] |= (byte)((ORBUtility.hexOf(str.charAt(i+1)) << 0) & 0x0F);
+- }
+- buf = new StringBuffer(delete(buf.toString(), index, index+6));
+- buf.insert(index, (char)buffer[1]);
+- }
+-
+- return buf.toString();
+-
+-
+- }
+-
+- private static String delete(String str, int from, int to)
+- {
+- return str.substring(0, from) + str.substring(to, str.length());
+- }
+-
+- private static String replace(String target, String arg, String source)
+- {
+- int i = 0;
+- i = target.indexOf(arg);
+-
+- while(i != -1)
+- {
+- String left = target.substring(0, i);
+- String right = target.substring(i+arg.length());
+- target = new String(left+source+right);
+- i = target.indexOf(arg);
+- }
+- return target;
+- }
+-
+- public static int computeValueTag(boolean codeBasePresent, int typeInfo, boolean chunkedEncoding){
+- int value_tag = kInitialValueTag;
+-
+- if (codeBasePresent)
+- value_tag = value_tag | 0x00000001;
+-
+- value_tag = value_tag | typeInfo;
+-
+- if (chunkedEncoding)
+- value_tag = value_tag | kChunkedMask;
+-
+- return value_tag;
+- }
+-
+- public static boolean isCodeBasePresent(int value_tag){
+- return ((value_tag & 0x00000001) == 1);
+- }
+-
+- public static int getTypeInfo(int value_tag){
+- return (value_tag & 0x00000006);
+- }
+-
+- public static boolean isChunkedEncoding(int value_tag){
+- return ((value_tag & kChunkedMask) != 0);
+- }
+-
+- public static String getServerURL(){
+- return defaultServerURL;
+- }
+-
+- /*
+- * Load a class and check that it is assignable to a given type.
+- * @param className the class name.
+- * @param remoteCodebase the codebase to use. May be null.
+- * @param loader the class loader of last resort. May be null.
+- * @param expectedType the expected type. May be null.
+- * @return the loaded class.
+- */
+- private Class loadClassOfType (String className,
+- String remoteCodebase,
+- ClassLoader loader,
+- Class expectedType,
+- ClassLoader expectedTypeClassLoader)
+- throws ClassNotFoundException {
+-
+- Class loadedClass = null;
+-
+- try {
+- //Sequence finding of the stubs according to spec
+- try{
+- //If-else is put here for speed up of J2EE.
+- //According to the OMG spec, the if clause is not dead code.
+- //It can occur if some compiler has allowed generation
+- //into org.omg.stub hierarchy for non-offending
+- //classes. This will encourage people to
+- //produce non-offending class stubs in their own hierarchy.
+- if(!PackagePrefixChecker
+- .hasOffendingPrefix(PackagePrefixChecker
+- .withoutPackagePrefix(className))){
+- loadedClass = Util.loadClass
+- (PackagePrefixChecker.withoutPackagePrefix(className),
+- remoteCodebase,
+- loader);
+- } else {
+- loadedClass = Util.loadClass
+- (className,
+- remoteCodebase,
+- loader);
+- }
+- } catch (ClassNotFoundException cnfe) {
+- loadedClass = Util.loadClass
+- (className,
+- remoteCodebase,
+- loader);
+- }
+- if (expectedType == null)
+- return loadedClass;
+- } catch (ClassNotFoundException cnfe) {
+- if (expectedType == null)
+- throw cnfe;
+- }
+-
+- // If no class was not loaded, or if the loaded class is not of the
+- // correct type, make a further attempt to load the correct class
+- // using the classloader of the expected type.
+- // _REVISIT_ Is this step necessary, or should the Util,loadClass
+- // algorithm always produce a valid class if the setup is correct?
+- // Does the OMG standard algorithm need to be changed to include
+- // this step?
+- if (loadedClass == null || !expectedType.isAssignableFrom(loadedClass)) {
+- if (expectedType.getClassLoader() != expectedTypeClassLoader)
+- throw new IllegalArgumentException("expectedTypeClassLoader not class loader of expectedType.");
+-
+- if (expectedTypeClassLoader != null)
+- loadedClass = expectedTypeClassLoader.loadClass(className);
+- else
+- loadedClass = Class.forName(className);
+- }
+-
+- return loadedClass;
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3.java 2012-08-10 09:10:35.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,251 +0,0 @@
+-/*
+- * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-/*
+- * Licensed Materials - Property of IBM
+- * RMI-IIOP v1.0
+- * Copyright IBM Corp. 1998 1999 All Rights Reserved
+- *
+- */
+-
+-package com.sun.corba.se.impl.orbutil;
+-
+-import javax.rmi.CORBA.Util;
+-import javax.rmi.PortableRemoteObject;
+-
+-import java.util.Hashtable;
+-import java.util.Stack;
+-import java.io.IOException;
+-import java.util.EmptyStackException;
+-
+-import com.sun.corba.se.impl.util.Utility;
+-import com.sun.corba.se.impl.io.IIOPInputStream;
+-import com.sun.corba.se.impl.io.IIOPOutputStream;
+-import com.sun.corba.se.impl.util.RepositoryId;
+-import com.sun.corba.se.impl.util.Utility;
+-
+-import org.omg.CORBA.TCKind;
+-import org.omg.CORBA.MARSHAL;
+-import org.omg.CORBA.CompletionStatus;
+-import org.omg.CORBA.portable.IndirectionException;
+-import com.sun.org.omg.SendingContext.CodeBase;
+-
+-import java.security.AccessController;
+-import java.security.PrivilegedAction;
+-
+-/**
+- * This class overrides behavior of our current ValueHandlerImpl to
+- * provide backwards compatibility with JDK 1.3.0.
+- */
+-public class ValueHandlerImpl_1_3 extends com.sun.corba.se.impl.io.ValueHandlerImpl {
+-
+- public ValueHandlerImpl_1_3(){
+- super();
+- }
+-
+- public ValueHandlerImpl_1_3(boolean isInputStream) {
+- super(isInputStream);
+- }
+-
+- /**
+- * Writes the value to the stream using java semantics.
+- * @param out The stream to write the value to
+- * @param value The value to be written to the stream
+- **/
+- public void writeValue(org.omg.CORBA.portable.OutputStream _out, java.io.Serializable value) {
+- super.writeValue(_out, value);
+- }
+-
+- /**
+- * Reads a value from the stream using java semantics.
+- * @param in The stream to read the value from
+- * @param clazz The type of the value to be read in
+- * @param sender The sending context runtime
+- **/
+- public java.io.Serializable readValue(org.omg.CORBA.portable.InputStream _in,
+- int offset,
+- java.lang.Class clazz,
+- String repositoryID,
+- org.omg.SendingContext.RunTime _sender)
+- {
+- return super.readValue(_in, offset, clazz, repositoryID, _sender);
+- }
+-
+- /**
+- * Returns the repository ID for the given RMI value Class.
+- * @param clz The class to return a repository ID for.
+- * @return the repository ID of the Class.
+- **/
+- public java.lang.String getRMIRepositoryID(java.lang.Class clz) {
+- return RepositoryId_1_3.createForJavaType(clz);
+- }
+-
+- /**
+- * Indicates whether the given Class performs custom or
+- * default marshaling.
+- * @param clz The class to test for custom marshaling.
+- * @return True if the class performs custom marshaling, false
+- * if it does not.
+- **/
+- public boolean isCustomMarshaled(java.lang.Class clz) {
+- return super.isCustomMarshaled(clz);
+- }
+-
+- /**
+- * Returns the CodeBase for this ValueHandler. This is used by
+- * the ORB runtime. The server sends the service context containing
+- * the IOR for this CodeBase on the first GIOP reply. The clients
+- * do the same on the first GIOP request.
+- * @return the SendingContext.CodeBase of this ValueHandler.
+- **/
+- public org.omg.SendingContext.RunTime getRunTimeCodeBase() {
+- return super.getRunTimeCodeBase();
+- }
+-
+- /**
+- * If the value contains a writeReplace method then the result
+- * is returned. Otherwise, the value itself is returned.
+- * @return the true value to marshal on the wire.
+- **/
+- public java.io.Serializable writeReplace(java.io.Serializable value) {
+- return super.writeReplace(value);
+- }
+-
+- // methods supported for backward compatability so that the appropriate
+- // Rep-id calculations take place based on the ORB version
+-
+- /**
+- * Returns a boolean of whether or not RepositoryId indicates
+- * FullValueDescriptor.
+- * used for backward compatability
+- */
+-
+- public boolean useFullValueDescription(Class clazz, String repositoryID)
+- throws IOException
+-
+- {
+- return RepositoryId_1_3.useFullValueDescription(clazz, repositoryID);
+- }
+-
+- public String getClassName(String id)
+- {
+- RepositoryId_1_3 repID = RepositoryId_1_3.cache.getId(id);
+- return repID.getClassName();
+- }
+-
+- public Class getClassFromType(String id)
+- throws ClassNotFoundException
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.getClassFromType();
+- }
+-
+- public Class getAnyClassFromType(String id)
+- throws ClassNotFoundException
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.getAnyClassFromType();
+- }
+-
+- public String createForAnyType(Class cl)
+- {
+- return RepositoryId_1_3.createForAnyType(cl);
+- }
+-
+- public String getDefinedInId(String id)
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.getDefinedInId();
+- }
+-
+- public String getUnqualifiedName(String id)
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.getUnqualifiedName();
+- }
+-
+- public String getSerialVersionUID(String id)
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.getSerialVersionUID();
+- }
+-
+- public boolean isAbstractBase(Class clazz)
+- {
+- return RepositoryId_1_3.isAbstractBase(clazz);
+- }
+-
+- public boolean isSequence(String id)
+- {
+- RepositoryId_1_3 repId = RepositoryId_1_3.cache.getId(id);
+- return repId.isSequence();
+- }
+-
+- /**
+- * Preserves the incorrect 1.3 behavior which truncates Java chars in
+- * arrays to 8-bit CORBA chars. Bug 4367783. This enables us to
+- * continue interoperating with our legacy ORBs. If this goes into
+- * Ladybird, then Ladybird and Kestrel will interoperate as long as
+- * people don't use chars greater than 8-bits.
+- */
+- protected void writeCharArray(org.omg.CORBA_2_3.portable.OutputStream out,
+- char[] array,
+- int offset,
+- int length)
+- {
+- out.write_char_array(array, offset, length);
+- }
+-
+- /**
+- * Preserves the incorrect 1.3 behavior which truncates Java chars in
+- * arrays to 8-bit CORBA chars. Bug 4367783. This enables us to
+- * continue interoperating with our legacy ORBs. If this goes into
+- * Ladybird, then Ladybird and Kestrel will interoperate as long as
+- * people don't use chars greater than 8-bits.
+- */
+- protected void readCharArray(org.omg.CORBA_2_3.portable.InputStream in,
+- char[] array,
+- int offset,
+- int length)
+- {
+- in.read_char_array(array, offset, length);
+- }
+-
+- protected final String getOutputStreamClassName() {
+- return "com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3";
+- }
+-
+- protected final String getInputStreamClassName() {
+- return "com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3";
+- }
+-
+- /**
+- * Our JDK 1.3 and JDK 1.3.1 behavior subclasses override this.
+- * The correct behavior is for a Java char to map to a CORBA wchar,
+- * but our older code mapped it to a CORBA char.
+- */
+- protected TCKind getJavaCharTCKind() {
+- return TCKind.tk_char;
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3_1.java 2012-08-10 09:10:35.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/impl/orbutil/ValueHandlerImpl_1_3_1.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,77 +0,0 @@
+-/*
+- * Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-package com.sun.corba.se.impl.orbutil;
+-
+-import org.omg.CORBA.TCKind;
+-
+-/**
+- * This class overrides behavior of our current ValueHandlerImpl to
+- * provide backwards compatibility with JDK 1.3.1.
+- */
+-public class ValueHandlerImpl_1_3_1
+- extends com.sun.corba.se.impl.io.ValueHandlerImpl
+-{
+- public ValueHandlerImpl_1_3_1() {}
+-
+- public ValueHandlerImpl_1_3_1(boolean isInputStream) {
+- super(isInputStream);
+- }
+-
+- /**
+- * Our JDK 1.3 and JDK 1.3.1 behavior subclasses override this.
+- * The correct behavior is for a Java char to map to a CORBA wchar,
+- * but our older code mapped it to a CORBA char.
+- */
+- protected TCKind getJavaCharTCKind() {
+- return TCKind.tk_char;
+- }
+-
+- /**
+- * RepositoryId_1_3_1 performs an incorrect repId calculation
+- * when using serialPersistentFields and one of the fields no longer
+- * exists on the class itself.
+- */
+- public boolean useFullValueDescription(Class clazz, String repositoryID)
+- throws java.io.IOException
+- {
+- return RepositoryId_1_3_1.useFullValueDescription(clazz, repositoryID);
+- }
+-
+- /**
+- * Installs the legacy IIOPOutputStream_1_3_1 which does
+- * PutFields/GetFields incorrectly. Bug 4407244.
+- */
+- protected final String getOutputStreamClassName() {
+- return "com.sun.corba.se.impl.orbutil.IIOPOutputStream_1_3_1";
+- }
+-
+- /**
+- * Installs the legacy IIOPInputStream_1_3_1 which does
+- * PutFields/GetFields incorrectly. Bug 4407244.
+- */
+- protected final String getInputStreamClassName() {
+- return "com.sun.corba.se.impl.orbutil.IIOPInputStream_1_3_1";
+- }
+-}
+--- corba/src/share/classes/com/sun/corba/se/spi/orb/ORB.java 2012-08-10 09:11:09.000000000 -0700
++++ corba/src/share/classes/com/sun/corba/se/spi/orb/ORB.java 2013-03-09 08:44:36.000000000 -0800
+@@ -98,6 +98,7 @@
+ import com.sun.corba.se.impl.presentation.rmi.PresentationManagerImpl ;
+
+ import com.sun.corba.se.impl.orbutil.ORBClassLoader ;
++import sun.awt.AppContext;
+
+ public abstract class ORB extends com.sun.corba.se.org.omg.CORBA.ORB
+ implements Broker, TypeCodeFactory
+@@ -173,14 +174,7 @@
+
+ protected MonitoringManager monitoringManager;
+
+- // There is only one instance of the PresentationManager
+- // that is shared between all ORBs. This is necessary
+- // because RMI-IIOP requires the PresentationManager in
+- // places where no ORB is available, so the PresentationManager
+- // must be global. It is initialized here as well.
+- protected static PresentationManager globalPM = null ;
+-
+- static {
++ private static PresentationManager setupPresentationManager() {
+ staticWrapper = ORBUtilSystemException.get(
+ CORBALogDomains.RPC_PRESENTATION ) ;
+
+@@ -218,12 +212,13 @@
+ return sff ;
+ }
+ }
+- ) ;
++ );
+
+- globalPM = new PresentationManagerImpl( useDynamicStub ) ;
+- globalPM.setStubFactoryFactory( false,
++ PresentationManager pm = new PresentationManagerImpl( useDynamicStub ) ;
++ pm.setStubFactoryFactory( false,
+ PresentationDefaults.getStaticStubFactoryFactory() ) ;
+- globalPM.setStubFactoryFactory( true, dynamicStubFactoryFactory ) ;
++ pm.setStubFactoryFactory( true, dynamicStubFactoryFactory ) ;
++ return pm;
+ }
+
+ public void destroy() {
+@@ -234,11 +229,19 @@
+ byteBufferPool = null;
+ }
+
+- /** Get the single instance of the PresentationManager
++ /**
++ * Returns the Presentation Manager for the current thread group, using the ThreadGroup-specific
++ * AppContext to hold it. Creates and records one if needed.
+ */
+ public static PresentationManager getPresentationManager()
+ {
+- return globalPM ;
++ AppContext ac = AppContext.getAppContext();
++ PresentationManager pm = (PresentationManager) ac.get(PresentationManager.class);
++ if (pm == null) {
++ pm = setupPresentationManager();
++ ac.put(PresentationManager.class, pm);
++ }
++ return pm;
+ }
+
+ /** Get the appropriate StubFactoryFactory. This
+@@ -248,8 +251,9 @@
+ public static PresentationManager.StubFactoryFactory
+ getStubFactoryFactory()
+ {
+- boolean useDynamicStubs = globalPM.useDynamicStubs() ;
+- return globalPM.getStubFactoryFactory( useDynamicStubs ) ;
++ PresentationManager gPM = getPresentationManager();
++ boolean useDynamicStubs = gPM.useDynamicStubs() ;
++ return gPM.getStubFactoryFactory( useDynamicStubs ) ;
+ }
+
+ protected ORB()
+@@ -543,6 +547,7 @@
+ public abstract ThreadPoolManager getThreadPoolManager();
+
+ public abstract CopierManager getCopierManager() ;
++
+ }
+
+ // End of file.
+--- corba/src/share/classes/sun/corba/JavaCorbaAccess.java 1969-12-31 16:00:00.000000000 -0800
++++ corba/src/share/classes/sun/corba/JavaCorbaAccess.java 2013-03-09 08:44:36.000000000 -0800
+@@ -0,0 +1,32 @@
++/*
++ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation. Oracle designates this
++ * particular file as subject to the "Classpath" exception as provided
++ * by Oracle in the LICENSE file that accompanied this code.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++package sun.corba;
++
++import com.sun.corba.se.impl.io.ValueHandlerImpl;
++
++public interface JavaCorbaAccess {
++ public ValueHandlerImpl newValueHandlerImpl();
++}
+--- corba/src/share/classes/sun/corba/SharedSecrets.java 1969-12-31 16:00:00.000000000 -0800
++++ corba/src/share/classes/sun/corba/SharedSecrets.java 2013-03-09 08:44:36.000000000 -0800
+@@ -0,0 +1,60 @@
++/*
++ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation. Oracle designates this
++ * particular file as subject to the "Classpath" exception as provided
++ * by Oracle in the LICENSE file that accompanied this code.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++package sun.corba;
++
++import com.sun.corba.se.impl.io.ValueUtility;
++import sun.misc.Unsafe;
++
++import java.security.AccessController;
++
++/** A repository of "shared secrets", which are a mechanism for
++ calling implementation-private methods in another package without
++ using reflection. A package-private class implements a public
++ interface and provides the ability to call package-private methods
++ within that package; the object implementing that interface is
++ provided through a third package to which access is restricted.
++ This framework avoids the primary disadvantage of using reflection
++ for this purpose, namely the loss of compile-time checking. */
++
++// SharedSecrets cloned in corba repo to avoid build issues
++public class SharedSecrets {
++ private static final Unsafe unsafe = Unsafe.getUnsafe();
++ private static JavaCorbaAccess javaCorbaAccess;
++
++ public static JavaCorbaAccess getJavaCorbaAccess() {
++ if (javaCorbaAccess == null) {
++ // Ensure ValueUtility is initialized; we know that that class
++ // provides the shared secret
++ unsafe.ensureClassInitialized(ValueUtility.class);
++ }
++ return javaCorbaAccess;
++ }
++
++ public static void setJavaCorbaAccess(JavaCorbaAccess access) {
++ javaCorbaAccess = access;
++ }
++
++}
--- get_source.sh 2012-08-10 09:07:01.000000000 -0700
+++ get_source.sh 2013-01-15 23:01:23.000000000 -0800
@@ -1,7 +1,7 @@
@@ -99,7 +4373,7 @@
# Update all existing repositories to the latest sources
sh ./make/scripts/hgforest.sh pull -u
--- hotspot/.hgtags 2012-08-10 09:20:36.000000000 -0700
-+++ hotspot/.hgtags 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/.hgtags 2013-03-09 08:44:40.000000000 -0800
@@ -182,6 +182,7 @@
38fa55e5e79232d48f1bb8cf27d88bc094c9375a hs21-b16
81d815b05abb564aa1f4100ae13491c949b9a07e jdk7-b147
@@ -108,7 +4382,7 @@
9b0ca45cd756d538c4c30afab280a91868eee1a5 jdk7u2-b01
0cc8a70952c368e06de2adab1f2649a408f5e577 jdk8-b01
31e253c1da429124bb87570ab095d9bc89850d0a jdk8-b02
-@@ -318,5 +319,27 @@
+@@ -318,5 +319,46 @@
02a6c89432d724119565f9ba25672829b136fc5f jdk7u6-b21
a79d86eef6ac995a1fc35554f082f3a61abe9ae0 jdk7u6-b22
df57f6208cb76b4e8d1a0bd0eea3d2ad577cb79b jdk7u6-b23
@@ -138,8 +4412,27 @@
+1cb34ef50bddc334c8538cf85d8612383debc74f jdk7u10-b16
+5c154a591de987d515f5b102a988bcf96d439f53 jdk7u10-b17
+78c7e1b4a006342230e04fbb73f637834207abef jdk7u10-b18
++c6b78bbaf6976197ead9d5aa3f65e0224cd13541 jdk7u10-b30
++25a92b94ad538963d009bf8a53ce548e13f55c82 jdk7u11-b20
++7a2cf85fc36e845db9ccb2a22af195c70af33bdf jdk7u11-b21
++db7028c8a953f46225fceb6148f97de87c784dda jdk7u11-b03
++4d418a1b8be04220f504cf414b47877821a22a26 jdk7u11-b04
++f71032f398a3baea567710ba7161c64b94495cac jdk7u11-b05
++0cbce123c9027d531e585fd81fbc361c5f8407f1 jdk7u11-b06
++94bf1e3dafef3cc06d3f97f81d304313ccd999ee jdk7u11-b07
++2b543aa340e4a75671fe05803fcee08bf3e136db jdk7u11-b08
++34a7b6dda06e2ff6f7e9ad563e3fc3ecd8993579 jdk7u13-b09
++e0e52e35e0c53a84daadae95f626e36fd74f3eba jdk7u13-b10
++be57a8d7a1a75971c3b1e7777dcacd20f3d33264 jdk7u13-b30
++e0e52e35e0c53a84daadae95f626e36fd74f3eba jdk7u13-b20
++5fbe0cae3a2a78a73946cfd08c56a64860f1afd9 jdk7u15-b01
++30d72c9abb560bc424d16d96bfd396ccd3c62cbc jdk7u15-b02
++221c64550c5b4411d78b63820835de1a8cd0c118 jdk7u15-b30
++5b55cef461b034766f05a46640caa123aa4247d4 jdk7u15-b03
++34a7b6dda06e2ff6f7e9ad563e3fc3ecd8993579 jdk7u15-b32
++a4dfda7a2655209abb170b2fa4914dbbba89bcd3 jdk7u17-b01
--- hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2012-08-10 09:21:14.000000000 -0700
-+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/HotSpotAgent.java 2013-03-09 08:44:40.000000000 -0800
@@ -33,6 +33,7 @@
import sun.jvm.hotspot.debugger.remote.*;
import sun.jvm.hotspot.debugger.windbg.*;
@@ -149,7 +4442,7 @@
import sun.jvm.hotspot.oops.*;
import sun.jvm.hotspot.runtime.*;
--- hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2012-08-10 09:21:38.000000000 -0700
-+++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/BugSpotAgent.java 2013-03-09 08:44:40.000000000 -0800
@@ -35,6 +35,7 @@
import sun.jvm.hotspot.debugger.windbg.*;
import sun.jvm.hotspot.debugger.linux.*;
@@ -159,7 +4452,7 @@
import sun.jvm.hotspot.livejvm.*;
import sun.jvm.hotspot.memory.*;
--- hotspot/make/bsd/Makefile 2012-08-10 09:22:55.000000000 -0700
-+++ hotspot/make/bsd/Makefile 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/Makefile 2013-03-09 08:44:40.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -190,7 +4483,7 @@
# Synonyms for win32-like targets.
compiler2: jvmg product
--- hotspot/make/bsd/makefiles/buildtree.make 2012-08-10 09:22:57.000000000 -0700
-+++ hotspot/make/bsd/makefiles/buildtree.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/buildtree.make 2013-03-09 08:44:40.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -225,7 +4518,7 @@
.dbxrc: $(BUILDTREE_MAKE)
@echo Creating $@ ...
--- hotspot/make/bsd/makefiles/defs.make 2012-08-10 09:22:57.000000000 -0700
-+++ hotspot/make/bsd/makefiles/defs.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/defs.make 2013-03-09 08:44:40.000000000 -0800
@@ -86,7 +86,7 @@
VM_PLATFORM = bsd_i486
HS_ARCH = x86
@@ -400,7 +4693,7 @@
ADD_SA_BINARIES/ia64 =
ADD_SA_BINARIES/arm =
--- hotspot/make/bsd/makefiles/gcc.make 2012-08-10 09:22:57.000000000 -0700
-+++ hotspot/make/bsd/makefiles/gcc.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/gcc.make 2013-03-09 08:44:40.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -458,7 +4751,7 @@
+ STRIP = strip
+endif
--- hotspot/make/bsd/makefiles/jsig.make 2012-08-10 09:22:58.000000000 -0700
-+++ hotspot/make/bsd/makefiles/jsig.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/jsig.make 2013-03-09 08:44:40.000000000 -0800
@@ -36,9 +36,16 @@
LIBJSIG_G = lib$(JSIG_G).so
endif
@@ -512,7 +4805,7 @@
.PHONY: install_jsig
--- hotspot/make/bsd/makefiles/launcher.make 2012-08-10 09:22:58.000000000 -0700
-+++ hotspot/make/bsd/makefiles/launcher.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/launcher.make 2013-03-09 08:44:40.000000000 -0800
@@ -50,7 +50,7 @@
LIBS_LAUNCHER += $(STATIC_STDCXX) $(LIBS)
else
@@ -523,7 +4816,7 @@
# The gamma launcher runs the JDK from $JAVA_HOME, overriding the JVM with a
# freshly built JVM at ./libjvm.{so|dylib}. This is accomplished by setting
--- hotspot/make/bsd/makefiles/mapfile-vers-debug 2012-08-10 09:22:58.000000000 -0700
-+++ hotspot/make/bsd/makefiles/mapfile-vers-debug 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/mapfile-vers-debug 2013-03-09 08:44:40.000000000 -0800
@@ -221,6 +221,7 @@
JVM_SetArrayElement;
JVM_SetClassSigners;
@@ -558,7 +4851,7 @@
JVM_AccessVMBooleanFlag;
JVM_AccessVMIntFlag;
--- hotspot/make/bsd/makefiles/mapfile-vers-product 2012-08-10 09:22:58.000000000 -0700
-+++ hotspot/make/bsd/makefiles/mapfile-vers-product 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/mapfile-vers-product 2013-03-09 08:44:40.000000000 -0800
@@ -221,6 +221,7 @@
JVM_SetArrayElement;
JVM_SetClassSigners;
@@ -593,7 +4886,7 @@
jio_fprintf;
jio_printf;
--- hotspot/make/bsd/makefiles/ppc.make 2012-08-10 09:22:58.000000000 -0700
-+++ hotspot/make/bsd/makefiles/ppc.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/ppc.make 2013-03-09 08:44:40.000000000 -0800
@@ -28,3 +28,6 @@
# Must also specify if CPU is big endian
CFLAGS += -DVM_BIG_ENDIAN
@@ -602,7 +4895,7 @@
+ASFLAGS += -Wa,-mspe -Wa,--defsym -Wa,E500V2=1
+endif
--- hotspot/make/bsd/makefiles/saproc.make 2012-08-10 09:22:59.000000000 -0700
-+++ hotspot/make/bsd/makefiles/saproc.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/saproc.make 2013-03-09 08:44:40.000000000 -0800
@@ -36,6 +36,11 @@
LIBSAPROC_G = lib$(SAPROC_G).so
endif
@@ -660,7 +4953,7 @@
fi
--- hotspot/make/bsd/makefiles/vm.make 2012-08-10 09:22:59.000000000 -0700
-+++ hotspot/make/bsd/makefiles/vm.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/bsd/makefiles/vm.make 2013-03-09 08:44:40.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -768,20 +5061,24 @@
#----------------------------------------------------------------------
--- hotspot/make/hotspot_version 2012-08-10 09:23:01.000000000 -0700
-+++ hotspot/make/hotspot_version 2013-01-16 08:57:49.000000000 -0800
-@@ -34,8 +34,8 @@
- HOTSPOT_VM_COPYRIGHT=Copyright 2012
++++ hotspot/make/hotspot_version 2013-03-09 08:44:38.000000000 -0800
+@@ -31,11 +31,11 @@
+ #
+
+ # Don't put quotes (fail windows build).
+-HOTSPOT_VM_COPYRIGHT=Copyright 2012
++HOTSPOT_VM_COPYRIGHT=Copyright 2013
HS_MAJOR_VER=23
-HS_MINOR_VER=2
-HS_BUILD_NUMBER=09
-+HS_MINOR_VER=6
-+HS_BUILD_NUMBER=04
++HS_MINOR_VER=7
++HS_BUILD_NUMBER=01
JDK_MAJOR_VER=1
JDK_MINOR_VER=7
--- hotspot/make/solaris/makefiles/defs.make 2012-08-10 09:23:12.000000000 -0700
-+++ hotspot/make/solaris/makefiles/defs.make 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/make/solaris/makefiles/defs.make 2013-03-09 08:44:40.000000000 -0800
@@ -194,8 +194,8 @@
endif
ifeq ($(ARCH_DATA_MODEL), 32)
@@ -794,7 +5091,7 @@
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_db.$(LIBRARY_SUFFIX)
EXPORT_LIST += $(EXPORT_CLIENT_DIR)/64/libjvm_dtrace.$(LIBRARY_SUFFIX)
--- hotspot/src/cpu/sparc/vm/globals_sparc.hpp 2012-08-10 09:23:56.000000000 -0700
-+++ hotspot/src/cpu/sparc/vm/globals_sparc.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/cpu/sparc/vm/globals_sparc.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -71,7 +71,11 @@
define_pd_global(bool, RewriteBytecodes, true);
define_pd_global(bool, RewriteFrequentPairs, true);
@@ -939,7 +5236,7 @@
// Check the array type.
Register rbx_klass = rbx_temp;
--- hotspot/src/os/bsd/vm/decoder_bsd.cpp 1969-12-31 16:00:00.000000000 -0800
-+++ hotspot/src/os/bsd/vm/decoder_bsd.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/bsd/vm/decoder_bsd.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -0,0 +1,46 @@
+/*
+ * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
@@ -988,7 +5285,7 @@
+}
+
--- hotspot/src/os/bsd/vm/os_bsd.cpp 2012-08-10 09:24:18.000000000 -0700
-+++ hotspot/src/os/bsd/vm/os_bsd.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/bsd/vm/os_bsd.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -2341,14 +2341,14 @@
}
@@ -1095,7 +5392,7 @@
void os::numa_make_global(char *addr, size_t bytes) {
--- hotspot/src/os/bsd/vm/os_bsd.hpp 2012-08-10 09:24:18.000000000 -0700
-+++ hotspot/src/os/bsd/vm/os_bsd.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/bsd/vm/os_bsd.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -103,6 +103,12 @@
static bool hugetlbfs_sanity_check(bool warn, size_t page_size);
@@ -1110,7 +5407,7 @@
static void init_thread_fpu_state();
--- hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2012-08-10 09:24:18.000000000 -0700
-+++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/bsd/vm/os_bsd.inline.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -31,10 +31,22 @@
# include "atomic_bsd_x86.inline.hpp"
# include "orderAccess_bsd_x86.inline.hpp"
@@ -1135,7 +5432,7 @@
// System includes
--- hotspot/src/os/bsd/vm/thread_bsd.inline.hpp 2012-08-10 09:24:18.000000000 -0700
-+++ hotspot/src/os/bsd/vm/thread_bsd.inline.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/bsd/vm/thread_bsd.inline.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -34,11 +34,26 @@
# include "orderAccess_bsd_x86.inline.hpp"
# include "prefetch_bsd_x86.inline.hpp"
@@ -1164,7 +5461,7 @@
// Contains inlined functions for class Thread and ThreadLocalStorage
--- hotspot/src/os/posix/vm/os_posix.cpp 2012-08-10 09:24:20.000000000 -0700
-+++ hotspot/src/os/posix/vm/os_posix.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os/posix/vm/os_posix.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -110,11 +110,19 @@
if (rlim.rlim_cur == RLIM_INFINITY) st->print("infinity");
else st->print("%d", rlim.rlim_cur);
@@ -1186,7 +5483,7 @@
void os::Posix::print_uname_info(outputStream* st) {
--- hotspot/src/os_cpu/bsd_x86/vm/vmStructs_bsd_x86.hpp 2012-08-10 09:24:32.000000000 -0700
-+++ hotspot/src/os_cpu/bsd_x86/vm/vmStructs_bsd_x86.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os_cpu/bsd_x86/vm/vmStructs_bsd_x86.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -52,7 +52,7 @@
/* Posix Thread IDs */ \
/**********************/ \
@@ -1197,7 +5494,7 @@
\
/* This must be the last entry, and must be present */ \
--- hotspot/src/os_cpu/bsd_zero/vm/os_bsd_zero.cpp 2012-08-10 09:24:33.000000000 -0700
-+++ hotspot/src/os_cpu/bsd_zero/vm/os_bsd_zero.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/os_cpu/bsd_zero/vm/os_bsd_zero.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -24,7 +24,7 @@
*/
@@ -1227,6 +5524,17 @@
if (c == '\n') {
token[pos++] = '\0';
parse_line(token);
+--- hotspot/src/share/vm/interpreter/linkResolver.cpp 2012-08-10 09:27:05.000000000 -0700
++++ hotspot/src/share/vm/interpreter/linkResolver.cpp 2013-03-09 08:44:40.000000000 -0800
+@@ -712,7 +712,7 @@
+
+ if (check_access &&
+ // a) check if ACC_SUPER flag is set for the current class
+- current_klass->is_super() &&
++ (current_klass->is_super() || !AllowNonVirtualCalls) &&
+ // b) check if the method class is a superclass of the current class (superclass relation is not reflexive!)
+ current_klass->is_subtype_of(method_klass()) && current_klass() != method_klass() &&
+ // c) check if the method is not <init>
--- hotspot/src/share/vm/opto/loopTransform.cpp 2012-08-10 09:27:38.000000000 -0700
+++ hotspot/src/share/vm/opto/loopTransform.cpp 2013-01-16 08:57:50.000000000 -0800
@@ -2733,6 +2733,8 @@
@@ -1247,7 +5555,7 @@
// Redirect the old control and memory edges that are outside the loop.
Node* exit = head->loopexit()->proj_out(0);
--- hotspot/src/share/vm/runtime/arguments.cpp 2012-08-10 09:27:53.000000000 -0700
-+++ hotspot/src/share/vm/runtime/arguments.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/share/vm/runtime/arguments.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -829,6 +829,9 @@
} else {
jio_fprintf(defaultStream::error_stream(), "%s", locked_message_buf);
@@ -1268,7 +5576,7 @@
if (in_comment) {
if (c == '\n') in_comment = false;
--- hotspot/src/share/vm/runtime/atomic.cpp 2012-08-10 09:27:53.000000000 -0700
-+++ hotspot/src/share/vm/runtime/atomic.cpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/share/vm/runtime/atomic.cpp 2013-03-09 08:44:40.000000000 -0800
@@ -54,6 +54,12 @@
#ifdef TARGET_OS_ARCH_windows_x86
# include "atomic_windows_x86.inline.hpp"
@@ -1282,8 +5590,22 @@
#ifdef TARGET_OS_ARCH_linux_arm
# include "atomic_linux_arm.inline.hpp"
#endif
+--- hotspot/src/share/vm/runtime/globals.hpp 2012-08-10 09:27:59.000000000 -0700
++++ hotspot/src/share/vm/runtime/globals.hpp 2013-03-09 08:44:40.000000000 -0800
+@@ -3902,7 +3902,10 @@
+ product(bool, UseVMInterruptibleIO, false, \
+ "(Unstable, Solaris-specific) Thread interrupt before or with " \
+ "EINTR for I/O operations results in OS_INTRPT. The default value"\
+- " of this flag is true for JDK 6 and earlier")
++ " of this flag is true for JDK 6 and earlier") \
++ \
++ product(bool, AllowNonVirtualCalls, false, \
++ "Obey the ACC_SUPER flag and allow invokenonvirtual calls")
+
+ /*
+ * Macros for factoring of globals
--- hotspot/src/share/vm/runtime/os.hpp 2012-08-10 09:28:05.000000000 -0700
-+++ hotspot/src/share/vm/runtime/os.hpp 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/src/share/vm/runtime/os.hpp 2013-03-09 08:44:40.000000000 -0800
@@ -30,6 +30,9 @@
#include "runtime/extendedPC.hpp"
#include "runtime/handles.hpp"
@@ -1305,7 +5627,7 @@
#ifdef TARGET_OS_ARCH_linux_x86
# include "os_linux_x86.hpp"
--- hotspot/test/compiler/5091921/Test7005594.sh 2012-08-10 09:28:58.000000000 -0700
-+++ hotspot/test/compiler/5091921/Test7005594.sh 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/test/compiler/5091921/Test7005594.sh 2013-03-09 08:44:40.000000000 -0800
@@ -71,6 +71,9 @@
# Windows/MKS
MEM=`"$ROOTDIR/mksnt/sysinf" memory -v | grep "Total Physical Memory: " | sed 's/Total Physical Memory: *//g'`
@@ -1386,7 +5708,7 @@
+}
+
--- hotspot/test/gc/6941923/test6941923.sh 2012-08-10 09:29:15.000000000 -0700
-+++ hotspot/test/gc/6941923/test6941923.sh 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/test/gc/6941923/test6941923.sh 2013-03-09 08:44:40.000000000 -0800
@@ -9,7 +9,7 @@
## skip on windows
OS=`uname -s`
@@ -1397,7 +5719,7 @@
PS=":"
FS="/"
--- hotspot/test/runtime/7020373/Test7020373.sh 2012-08-10 09:29:17.000000000 -0700
-+++ hotspot/test/runtime/7020373/Test7020373.sh 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/test/runtime/7020373/Test7020373.sh 2013-03-09 08:44:40.000000000 -0800
@@ -32,7 +32,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -1408,7 +5730,7 @@
PS=":"
FS="/"
--- hotspot/test/runtime/7110720/Test7110720.sh 2012-08-10 09:29:18.000000000 -0700
-+++ hotspot/test/runtime/7110720/Test7110720.sh 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/test/runtime/7110720/Test7110720.sh 2013-03-09 08:44:40.000000000 -0800
@@ -37,7 +37,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -2759,7 +7081,7 @@
-
-
--- hotspot/test/runtime/7158800/Test7158800.sh 2012-08-10 09:29:19.000000000 -0700
-+++ hotspot/test/runtime/7158800/Test7158800.sh 2013-01-16 09:04:00.000000000 -0800
++++ hotspot/test/runtime/7158800/Test7158800.sh 2013-03-09 08:44:40.000000000 -0800
@@ -46,7 +46,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -2883,7 +7205,7 @@
+printf "Passed.\n"
+
--- jaxp/.hgtags 2012-08-10 09:35:08.000000000 -0700
-+++ jaxp/.hgtags 2013-01-16 08:58:02.000000000 -0800
++++ jaxp/.hgtags 2013-03-09 08:44:42.000000000 -0800
@@ -123,6 +123,7 @@
bcd31fa1e3c6f51b4fdd427ef905188cdac57164 jdk7-b146
067fb18071e3872698f6218724958bd0cebf30a3 jdk7u1-b01
@@ -2892,7 +7214,7 @@
104ca42e1e7ca66b074a4619ce6420f15d8f454d jdk7u1-b02
64e323faadf65018c1ffc8bb9c97f7b664e87347 jdk7u1-b03
2256c20e66857f80cacda14ffdbc0979c929d7f8 jdk7u1-b04
-@@ -197,5 +198,27 @@
+@@ -197,5 +198,46 @@
7403701aa75848ca2a7b297909908b858134e132 jdk7u6-b21
fcf35906d1d88583878cd2e2d7c63dfba4e9f679 jdk7u6-b22
8824bcbfd7cd8059ededf70f1e7f2b06f02cb33f jdk7u6-b23
@@ -2922,6 +7244,25 @@
+5449d5396bd8deee90f18f29899343129e3cdc4e jdk7u10-b16
+86c75e6aa3a7fa9a587fc7dd2d08af8aa8ffb9a9 jdk7u10-b17
+162a2c6ad8718a63253fa53724f704a4f85731bc jdk7u10-b18
++c59eb287de720ae5ce8087f179ec01f4f6525a32 jdk7u10-b30
++853059839d38432f86e345ba951397ede235a374 jdk7u11-b20
++453a52320a1b8bd425fdb55e14b64067b536f1e2 jdk7u11-b21
++5df9207c4378b7f4b24d70b365714c5ee6318982 jdk7u11-b03
++6ee19b9c8313db32e6d8989aa3782830d2b09710 jdk7u11-b04
++3312b258392eaeab9c4a20e3deb36d3ae3337efe jdk7u11-b05
++86d0250b62bbb4aabab2a7c249aeb14847be2631 jdk7u11-b06
++225aa78c36e9b776c87e585329bbb7ee0e3259a3 jdk7u11-b07
++48491f5a58172f0fbdf9b774842c2ec1a42f609a jdk7u11-b08
++eb9d57159e5126cf4316c9571ac39324a8b442a8 jdk7u13-b09
++f9fe0d38b1103cb33073538c959d982e28ed7b11 jdk7u13-b10
++0a6a09e5174a4c15632ff7e06d6b215164e3fa15 jdk7u13-b30
++f9fe0d38b1103cb33073538c959d982e28ed7b11 jdk7u13-b20
++99c114990b191f32e72c6158072033aec5816aaf jdk7u15-b01
++edbaa584f09a78d0ad3c73389faf20409a552e46 jdk7u15-b02
++14a9b60a2086f4e2f6ec43bee3375042946f6510 jdk7u15-b30
++a55f67cfe182dc42a86aae836674eb8ba5b79891 jdk7u15-b03
++eb9d57159e5126cf4316c9571ac39324a8b442a8 jdk7u15-b32
++8a9867ee429440b657eb5852c4dae5f029356022 jdk7u17-b01
--- jaxp/src/com/sun/org/apache/xerces/internal/impl/XMLEntityManager.java 2012-08-10 09:36:39.000000000 -0700
+++ jaxp/src/com/sun/org/apache/xerces/internal/impl/XMLEntityManager.java 2013-01-15 23:09:49.000000000 -0800
@@ -602,7 +602,7 @@
@@ -2998,8 +7339,19 @@
//
// Package visible methods
+--- jaxp/src/com/sun/org/apache/xpath/internal/functions/FuncSystemProperty.java 2012-08-10 09:38:25.000000000 -0700
++++ jaxp/src/com/sun/org/apache/xpath/internal/functions/FuncSystemProperty.java 2013-03-09 08:44:42.000000000 -0800
+@@ -165,7 +165,7 @@
+ * should already be fully qualified as path/filename
+ * @param target The target property bag the file will be placed into.
+ */
+- public void loadPropertyFile(String file, Properties target)
++ private void loadPropertyFile(String file, Properties target)
+ {
+ try
+ {
--- jaxws/.hgtags 2012-08-10 09:46:32.000000000 -0700
-+++ jaxws/.hgtags 2013-01-16 08:58:04.000000000 -0800
++++ jaxws/.hgtags 2013-03-09 08:44:43.000000000 -0800
@@ -123,6 +123,7 @@
05469dd4c3662c454f8a019e492543add60795cc jdk7-b146
c01bfd68d0528bc88348813c4d75d7f5c62bc4e2 jdk7u1-b01
@@ -3008,7 +7360,7 @@
4c24f7019ce939a452154a83151294ad7da66a9d jdk7u1-b02
272778f529d11081f548f37fcd6a7aec0b11a8dd jdk7u1-b03
48b06a6e6f46e5bcd610f4bed57cd5067cf31f8c jdk7u1-b04
-@@ -197,5 +198,27 @@
+@@ -197,5 +198,46 @@
55dcda93e8c8b5c3170def946de35dd0407eab59 jdk7u6-b21
0fec2efe2452aed9736da39add4c7f71be561838 jdk7u6-b22
afb6d773328fa76cea65dc024a448cd931d111f2 jdk7u6-b23
@@ -3038,8 +7390,27 @@
+ed609545e38c2e499437292c1541e4d1c2b8b992 jdk7u10-b16
+e63292c59ed8481864302cc3f53b498cbdea3470 jdk7u10-b17
+6a372e9b4ae978cdaf0b95277db31827794e2c1f jdk7u10-b18
++df3e4c85e26c651d098cddd546916a625fd777cd jdk7u10-b30
++846f4e01218ffe37b2dbceaf89c222c0aea43180 jdk7u11-b20
++1f06394ca182cb392e472ba7b63b28a40725629d jdk7u11-b21
++ed609545e38c2e499437292c1541e4d1c2b8b992 jdk7u11-b03
++4e1dd1192649575e80d893bcab411077b77c9a0c jdk7u11-b04
++0e1eefefc2d0c8f0d0cd9e7fb7d78ae026aa8ba0 jdk7u11-b05
++7365410bb417d6a40996920bb4dbb44bdb1225a9 jdk7u11-b06
++66786f9d73c479ce70a306e14dd7f653f5b3a4f9 jdk7u11-b07
++a3cadd00459f1146fdcfa8702bbb29efdcd58960 jdk7u11-b08
++c7ea4220ad61b125bd7c4b7f112dd9ff18e9be33 jdk7u13-b09
++1d2eb88cadaf29bf577a71c69b04afe2468d8ff6 jdk7u13-b10
++21dbdd72a46a29c148ea3519268447c467540637 jdk7u13-b30
++1d2eb88cadaf29bf577a71c69b04afe2468d8ff6 jdk7u13-b20
++abcaebcead605f89cd0919add20d8ac16637ddc2 jdk7u15-b01
++62f9e7f5eb644fedd93dd93bd36bcf817a8d9c8a jdk7u15-b02
++ed9f270009f2b8606e9e0f58aeedbed36e13963e jdk7u15-b30
++eaf9b299067069826a5acdc88e15402e5a22cb5d jdk7u15-b03
++c7ea4220ad61b125bd7c4b7f112dd9ff18e9be33 jdk7u15-b32
++b8496d1dc0058341da1790bc2e7d2dbba6d4f90e jdk7u17-b01
--- jdk/.hgtags 2012-08-10 10:21:29.000000000 -0700
-+++ jdk/.hgtags 2013-01-16 08:58:14.000000000 -0800
++++ jdk/.hgtags 2013-03-09 08:44:53.000000000 -0800
@@ -123,6 +123,7 @@
539e576793a8e64aaf160e0d6ab0b9723cd0bef0 jdk7-b146
69e973991866c948cf1808b06884ef2d28b64fcb jdk7u1-b01
@@ -3048,7 +7419,7 @@
2baf612764d215e6f3a5b48533f74c6924ac98d7 jdk7u1-b02
a4781b6d9cfb6901452579adee17c9a17c1b584c jdk7u1-b03
b223ed9a5fdf8ce3af42adfa8815975811d70eae jdk7u1-b04
-@@ -197,5 +198,27 @@
+@@ -197,5 +198,45 @@
243717d7fe9589148951ffb5551264af0e446314 jdk7u6-b21
d78f2b600d393f45d6ace8ca0f29ad677624a775 jdk7u6-b22
0ae89e53f5300da1961984a7d81c220c7cf717d7 jdk7u6-b23
@@ -3078,6 +7449,24 @@
+ed59989fb0635f2d4461173e218c43494f06bb82 jdk7u10-b16
+a1c5bac982a6d4aa58f551cb46cde53f526aca48 jdk7u10-b17
+115d1e4365293846bbc911cf312886c471e37fbd jdk7u10-b18
++84218dff5e4c7bc00fd9266769c0d12bdde866f5 jdk7u10-b30
++ecc14534318c80dc7612c8b1d328a67849c5b07f jdk7u11-b20
++d9969a953f693f5760b1d2759f11a2cb222e4f20 jdk7u11-b21
++84da14fbd3ac12a3c6734fa4b6a366cfde1426af jdk7u11-b03
++932ef74edbf984299a68c126c70bbe04ffbde9b5 jdk7u11-b04
++fb35fb91f6478f8076993bcc4112746bcd9a2985 jdk7u11-b05
++f26def552d2c4873aeaee00241f60efc462a11a7 jdk7u11-b06
++1d14a3d7bac870423e52a889d2f5f60ee76ddc6a jdk7u11-b07
++ee61b528b3f866b20095f5e9593896d4ea4be468 jdk7u11-b08
++0b9564dab118d40bc5edc60269f736f97ab6f385 jdk7u13-b09
++cbbb166b38eb15f5d5c68e913ee18f6f352b7af0 jdk7u13-b10
++28700a56b69d80e70aecf230ab7f9ad4bb5acf23 jdk7u13-b30
++8eb180a284b0911b2645d5cbdff5be499a75d6b2 jdk7u13-b20
++835448d525a10bb826f4f7ebe272fc410bdb0f5d jdk7u15-b01
++0443fe2d8023111b52f4c8db32e038f4a5a9f373 jdk7u15-b02
++70b0f967c0649c501fb14a27bb06daeccbff823a jdk7u15-b30
++87e45d30e24db726ea03b20d861f0a025e437641 jdk7u15-b03
++b5ae6fb92e71df1833221026efe50863593bf682 jdk7u17-b01
--- jdk/make/com/oracle/security/ucrypto/Makefile 2012-08-10 10:21:29.000000000 -0700
+++ jdk/make/com/oracle/security/ucrypto/Makefile 2013-01-16 08:58:09.000000000 -0800
@@ -198,9 +198,9 @@
@@ -3093,7 +7482,7 @@
@$(java-vm-cleanup)
--- jdk/make/com/sun/nio/Makefile 2012-08-10 10:21:31.000000000 -0700
-+++ jdk/make/com/sun/nio/Makefile 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/nio/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -31,11 +31,18 @@
include $(BUILDDIR)/common/Defs.gmk
@@ -3115,7 +7504,7 @@
all build clean clobber::
$(SUBDIRS-loop)
--- jdk/make/com/sun/nio/sctp/Makefile 2012-08-10 10:21:31.000000000 -0700
-+++ jdk/make/com/sun/nio/sctp/Makefile 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/nio/sctp/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -59,15 +59,11 @@
-I$(PLATFORM_SRC)/native/java/net \
-I$(CLASSHDRDIR)/../../../../java/java.nio/nio/CClassHeaders
@@ -3135,7 +7524,7 @@
else # windows
include $(BUILDDIR)/common/Classes.gmk
--- jdk/make/com/sun/security/auth/module/Makefile 2012-08-10 10:21:32.000000000 -0700
-+++ jdk/make/com/sun/security/auth/module/Makefile 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/security/auth/module/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -67,7 +67,7 @@
include FILES_c_solaris.gmk
endif # solaris
@@ -3146,7 +7535,7 @@
include FILES_export_unix.gmk
include FILES_c_unix.gmk
--- jdk/make/com/sun/tools/attach/Exportedfiles.gmk 2012-08-10 10:21:32.000000000 -0700
-+++ jdk/make/com/sun/tools/attach/Exportedfiles.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/tools/attach/Exportedfiles.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -43,7 +43,7 @@
sun/tools/attach/LinuxVirtualMachine.java
endif
@@ -3157,7 +7546,7 @@
sun/tools/attach/BsdVirtualMachine.java
endif
--- jdk/make/com/sun/tools/attach/FILES_c.gmk 2012-08-10 10:21:32.000000000 -0700
-+++ jdk/make/com/sun/tools/attach/FILES_c.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/tools/attach/FILES_c.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -39,7 +39,7 @@
LinuxVirtualMachine.c
endif
@@ -3168,7 +7557,7 @@
BsdVirtualMachine.c
endif
--- jdk/make/com/sun/tools/attach/FILES_java.gmk 2012-08-10 10:21:32.000000000 -0700
-+++ jdk/make/com/sun/tools/attach/FILES_java.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/tools/attach/FILES_java.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -43,7 +43,7 @@
sun/tools/attach/LinuxAttachProvider.java
endif
@@ -3179,7 +7568,7 @@
sun/tools/attach/BsdAttachProvider.java
endif
--- jdk/make/com/sun/tools/attach/Makefile 2012-08-10 10:21:32.000000000 -0700
-+++ jdk/make/com/sun/tools/attach/Makefile 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/com/sun/tools/attach/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -38,7 +38,7 @@
ifeq ($(PLATFORM), linux)
FILES_m = mapfile-linux
@@ -3199,7 +7588,7 @@
else
vpath %.c $(PLATFORM_SRC)/native/sun/tools/attach
--- jdk/make/common/Defs-bsd.gmk 1969-12-31 16:00:00.000000000 -0800
-+++ jdk/make/common/Defs-bsd.gmk 2013-01-16 08:58:19.000000000 -0800
++++ jdk/make/common/Defs-bsd.gmk 2013-03-09 08:44:57.000000000 -0800
@@ -0,0 +1,490 @@
+#
+# Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
@@ -3692,7 +8081,7 @@
+ OTHER_CPPFLAGS += -I$(OPENWIN_HOME)/include
+endif
--- jdk/make/common/Defs-linux.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Defs-linux.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Defs-linux.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -429,6 +429,7 @@
override LIBDL = -ldl
override MOOT_PRIORITIES = true
@@ -3702,7 +8091,7 @@
override OPENWIN_LIB = $(OPENWIN_HOME)/lib64
else
--- jdk/make/common/Defs-solaris.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Defs-solaris.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Defs-solaris.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -753,6 +753,9 @@
# Network Services library
LIBNSL = -lnsl
@@ -3714,7 +8103,7 @@
LIBSCF = -lscf
--- jdk/make/common/Defs.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Defs.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Defs.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -179,15 +179,15 @@
ifdef ALT_FREETYPE_LIB_PATH
@@ -3766,7 +8155,7 @@
else
VPATH0.java = $(GENSRCDIR)$(CLASSPATH_SEPARATOR)$(PLATFORM_SRC)/classes$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/classes
--- jdk/make/common/Library.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Library.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Library.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -299,8 +299,12 @@
ifeq ($(PLATFORM), solaris)
$(STRIP) -x $@
@@ -3783,7 +8172,7 @@
# implied else here is no stripping at all
endif
--- jdk/make/common/Mapfile-vers.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Mapfile-vers.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Mapfile-vers.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -76,7 +76,7 @@
endif # PLATFORM
@@ -3794,7 +8183,7 @@
ifeq ($(VARIANT), OPT)
# OPT build MUST have a mapfile?
--- jdk/make/common/Program.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Program.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Program.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -95,6 +95,17 @@
endif # SYSTEM_ZLIB
endif # PLATFORM
@@ -3876,7 +8265,7 @@
OTHER_CPPFLAGS += -DPROGNAME='"$(PROGRAM)"'
VERSION_DEFINES += -DFULL_VERSION='"$(FULL_VERSION)"'
--- jdk/make/common/Release.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Release.gmk 2013-01-16 08:58:14.000000000 -0800
++++ jdk/make/common/Release.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -178,6 +178,12 @@
JA_DIRNAME=ja_JP.UTF-8
endif # linux
@@ -3989,7 +8378,7 @@
fi; \
done
--- jdk/make/common/Rules.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/Rules.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/Rules.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -51,7 +51,7 @@
#
# All source tree areas for java/properties files (a few may be closed)
@@ -4009,7 +8398,7 @@
$(CLASSDESTDIR)/%.class: $(JDK_TOPDIR)/src/macosx/classes/%.java
@$(add-java-file)
--- jdk/make/common/shared/Compiler-gcc.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/shared/Compiler-gcc.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Compiler-gcc.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -72,6 +72,21 @@
endif
@@ -4033,7 +8422,7 @@
# Settings specific to Solaris
--- jdk/make/common/shared/Defs-bsd.gmk 1969-12-31 16:00:00.000000000 -0800
-+++ jdk/make/common/shared/Defs-bsd.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Defs-bsd.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -0,0 +1,262 @@
+#
+# Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -4298,7 +8687,7 @@
+endif
+
--- jdk/make/common/shared/Defs-utils.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/shared/Defs-utils.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Defs-utils.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -74,6 +74,13 @@
UTILS_DEVTOOL_PATH=$(DEVTOOLS_PATH)
endif
@@ -4350,7 +8739,7 @@
+ endif
+endif
--- jdk/make/common/shared/Defs-versions.gmk 2012-08-10 10:21:33.000000000 -0700
-+++ jdk/make/common/shared/Defs-versions.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Defs-versions.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -44,6 +44,11 @@
override CC_VERSION = gcc
endif
@@ -4378,7 +8767,7 @@
ifeq ($(PLATFORM), macosx)
REQUIRED_OS_NAME = Darwin
--- jdk/make/common/shared/Defs.gmk 2012-08-10 10:21:34.000000000 -0700
-+++ jdk/make/common/shared/Defs.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Defs.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -181,7 +181,7 @@
# platform and shared sources/headers. This is mainly useful for the
# Mac OS X build, which pulls its platform sources from the solaris and/or
@@ -4389,7 +8778,7 @@
$(JAVA_SRCDIR_LIST:%=$1$(JDK_TOPDIR)/%/$2)
endef
--- jdk/make/common/shared/Platform.gmk 2012-08-10 10:21:34.000000000 -0700
-+++ jdk/make/common/shared/Platform.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/common/shared/Platform.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -298,6 +298,85 @@
# How much RAM does this machine have:
endif
@@ -4477,7 +8866,7 @@
ifeq ($(SYSTEM_UNAME), Windows_NT)
PLATFORM = windows
--- jdk/make/java/Makefile 2012-08-10 10:21:34.000000000 -0700
-+++ jdk/make/java/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -53,7 +53,7 @@
endif
endif # PLATFORM
@@ -4488,7 +8877,7 @@
endif # PLATFORM
--- jdk/make/java/instrument/Makefile 2012-08-10 10:21:34.000000000 -0700
-+++ jdk/make/java/instrument/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/instrument/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -104,12 +104,24 @@
# equivalent of strcasecmp is stricmp on Windows
CPPFLAGS_COMMON += -Dstrcasecmp=stricmp
@@ -4537,7 +8926,7 @@
sun/misc/JavaIOAccess.java \
sun/misc/JavaIOFileDescriptorAccess.java \
--- jdk/make/java/java/Makefile 2012-08-10 10:21:35.000000000 -0700
-+++ jdk/make/java/java/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/java/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -175,9 +175,11 @@
#
ifneq ($(PLATFORM), windows)
@@ -4551,7 +8940,7 @@
ifeq ($(HAVE_ALTZONE),true)
OTHER_CPPFLAGS += -DHAVE_ALTZONE
--- jdk/make/java/java/genlocales.gmk 2012-08-10 10:21:35.000000000 -0700
-+++ jdk/make/java/java/genlocales.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/java/genlocales.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -93,18 +93,66 @@
else
@@ -4624,7 +9013,7 @@
genlocales : $(LocaleDataMetaInfo_Dest)
--- jdk/make/java/jli/Makefile 2012-08-10 10:21:36.000000000 -0700
-+++ jdk/make/java/jli/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/jli/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -90,7 +90,8 @@
# add platform specific files
@@ -4691,7 +9080,7 @@
*;
};
--- jdk/make/java/net/FILES_c.gmk 2012-08-10 10:21:36.000000000 -0700
-+++ jdk/make/java/net/FILES_c.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/net/FILES_c.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -47,6 +47,10 @@
FILES_c += bsd_close.c
endif
@@ -4704,7 +9093,7 @@
FILES_c += TwoStacksPlainSocketImpl.c
FILES_c += DualStackPlainSocketImpl.c
--- jdk/make/java/net/Makefile 2012-08-10 10:21:36.000000000 -0700
-+++ jdk/make/java/net/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/net/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -74,6 +74,7 @@
FILES_export += java/net/DualStackPlainSocketImpl.java
FILES_export += java/net/TwoStacksPlainDatagramSocketImpl.java
@@ -4723,7 +9112,7 @@
OTHER_CFLAGS += -DDONT_ENABLE_IPV6
endif
--- jdk/make/java/nio/Makefile 2012-08-10 10:21:36.000000000 -0700
-+++ jdk/make/java/nio/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/nio/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -260,7 +260,7 @@
sun/nio/fs/UnixConstants.java
endif # PLATFORM = linux
@@ -4771,7 +9160,7 @@
endif
include $(BUILDDIR)/common/Mapfile-vers.gmk
--- jdk/make/java/nio/mapfile-bsd 2012-08-10 10:21:37.000000000 -0700
-+++ jdk/make/java/nio/mapfile-bsd 2013-01-16 11:15:18.000000000 -0800
++++ jdk/make/java/nio/mapfile-bsd 2013-03-09 08:44:53.000000000 -0800
@@ -70,6 +70,7 @@
Java_sun_nio_ch_IOUtil_drain;
Java_sun_nio_ch_IOUtil_fdVal;
@@ -4780,8 +9169,20 @@
Java_sun_nio_ch_IOUtil_makePipe;
Java_sun_nio_ch_IOUtil_randomBytes;
Java_sun_nio_ch_IOUtil_setfdVal;
+@@ -80,6 +81,11 @@
+ Java_sun_nio_ch_KQueue_identOffset;
+ Java_sun_nio_ch_KQueue_filterOffset;
+ Java_sun_nio_ch_KQueue_flagsOffset;
++ Java_sun_nio_ch_KQueueArrayWrapper_initStructSizes;
++ Java_sun_nio_ch_KQueueArrayWrapper_init;
++ Java_sun_nio_ch_KQueueArrayWrapper_register0;
++ Java_sun_nio_ch_KQueueArrayWrapper_kevent0;
++ Java_sun_nio_ch_KQueueArrayWrapper_interrupt;
+ Java_sun_nio_ch_KQueuePort_socketpair;
+ Java_sun_nio_ch_KQueuePort_interrupt;
+ Java_sun_nio_ch_KQueuePort_drain1;
--- jdk/make/java/npt/Makefile 2012-08-10 10:21:37.000000000 -0700
-+++ jdk/make/java/npt/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/npt/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -74,6 +74,14 @@
OTHER_LDLIBS += -liconv
endif
@@ -4798,7 +9199,7 @@
# Add to ambient vpath so we pick up the library files
#
--- jdk/make/java/redist/fonts/Makefile 2012-08-10 10:21:37.000000000 -0700
-+++ jdk/make/java/redist/fonts/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/java/redist/fonts/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -42,7 +42,7 @@
$(LIBDIR)/fonts/LucidaSansRegular.ttf \
$(LIBDIR)/fonts/LucidaSansDemiBold.ttf \
@@ -4845,7 +9246,7 @@
$(MAINMANIFEST) >> $@
$(ECHO) "Extension-Name: javax.crypto" >> $@
--- jdk/make/javax/sound/Makefile 2012-08-10 10:21:40.000000000 -0700
-+++ jdk/make/javax/sound/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/javax/sound/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -111,6 +111,21 @@
#MXSPP_ADD = $(PLATFORM)-$(ARCH)/
endif # PLATFORM linux
@@ -4869,7 +9270,7 @@
CPPFLAGS += -DUSE_PORTS=TRUE \
-DUSE_DAUDIO=TRUE \
--- jdk/make/javax/sound/SoundDefs.gmk 2012-08-10 10:21:40.000000000 -0700
-+++ jdk/make/javax/sound/SoundDefs.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/javax/sound/SoundDefs.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -40,6 +40,10 @@
CPPFLAGS += -DX_PLATFORM=X_LINUX
endif # PLATFORM linux
@@ -4882,7 +9283,7 @@
CPPFLAGS += -DX_PLATFORM=X_MACOSX
endif # PLATFORM macosx
--- jdk/make/javax/sound/jsoundalsa/Makefile 2012-08-10 10:21:40.000000000 -0700
-+++ jdk/make/javax/sound/jsoundalsa/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/javax/sound/jsoundalsa/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -51,6 +51,7 @@
$(PORTFILES_c)
@@ -4934,7 +9335,7 @@
#
# Add to the ambient VPATH.
--- jdk/make/jpda/transport/socket/Makefile 2012-08-10 10:21:40.000000000 -0700
-+++ jdk/make/jpda/transport/socket/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/jpda/transport/socket/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -38,6 +38,11 @@
include $(BUILDDIR)/common/Defs.gmk
@@ -4948,7 +9349,7 @@
OTHER_LDLIBS += $(LIBNSL) $(LIBSOCKET) -lpthread
endif
--- jdk/make/sun/awt/Makefile 2012-08-10 10:21:49.000000000 -0700
-+++ jdk/make/sun/awt/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/awt/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -125,6 +125,13 @@
FILES_c += initIDs.c
@@ -5007,7 +9408,7 @@
endif
--- jdk/make/sun/awt/mawt.gmk 2012-08-10 10:21:49.000000000 -0700
-+++ jdk/make/sun/awt/mawt.gmk 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/awt/mawt.gmk 2013-03-09 08:44:53.000000000 -0800
@@ -169,7 +169,7 @@
OTHER_LDLIBS = -lXt -lXext $(LIBXTST) $(LIBXMU) -lX11 -lXi
endif
@@ -5041,7 +9442,7 @@
CPPFLAGS += -I$(OPENWIN_HOME)/include/X11/extensions \
-I$(OPENWIN_HOME)/include
--- jdk/make/sun/font/Makefile 2012-08-10 10:21:50.000000000 -0700
-+++ jdk/make/sun/font/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/font/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -91,7 +91,7 @@
endif # PLATFORM
@@ -6132,7 +10533,7 @@
# 2009-05-17 by Arthur David Olson.
#
--- jdk/make/sun/jawt/Makefile 2012-08-10 10:21:52.000000000 -0700
-+++ jdk/make/sun/jawt/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/jawt/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -94,8 +94,7 @@
#
# Other extra flags needed for compiling.
@@ -6161,7 +10562,7 @@
OTHER_LDLIBS = -L$(LIBDIR)/$(LIBARCH) -lawt -L$(LIBDIR)/$(LIBARCH)/xawt -lmawt
else
--- jdk/make/sun/rmi/rmi/Makefile 2012-08-10 10:21:53.000000000 -0700
-+++ jdk/make/sun/rmi/rmi/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/rmi/rmi/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -97,6 +97,9 @@
BUILD_TARGETS += bin
endif
@@ -6173,7 +10574,7 @@
build: $(BUILD_TARGETS)
--- jdk/make/sun/security/ec/Makefile 2012-08-10 10:21:53.000000000 -0700
-+++ jdk/make/sun/security/ec/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/security/ec/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -245,9 +245,9 @@
#
# Build sunec.jar.
@@ -6201,7 +10602,7 @@
@$(java-vm-cleanup)
--- jdk/make/sun/security/pkcs11/Makefile 2012-08-10 10:21:55.000000000 -0700
-+++ jdk/make/sun/security/pkcs11/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/security/pkcs11/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -224,9 +224,9 @@
#
# Build sunpkcs11.jar.
@@ -6215,7 +10616,7 @@
@$(java-vm-cleanup)
--- jdk/make/sun/splashscreen/Makefile 2012-08-10 10:21:55.000000000 -0700
-+++ jdk/make/sun/splashscreen/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/splashscreen/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -83,15 +83,16 @@
-framework JavaNativeFoundation
else ifneq ($(PLATFORM), windows)
@@ -6242,7 +10643,7 @@
CFLAGS += -DWITH_WIN32
OTHER_LDLIBS += kernel32.lib user32.lib gdi32.lib delayimp.lib /DELAYLOAD:user32.dll
--- jdk/make/sun/xawt/Makefile 2012-08-10 10:21:55.000000000 -0700
-+++ jdk/make/sun/xawt/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/sun/xawt/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -52,6 +52,9 @@
AUTO_JAVA_PRUNE = WrapperGenerator.java
@@ -6296,7 +10697,7 @@
CPPFLAGS += -DX11_PATH=\"$(X11_PATH)\" -DPACKAGE_PATH=\"$(PACKAGE_PATH)\"
endif
--- jdk/make/tools/freetypecheck/Makefile 2012-08-10 10:22:31.000000000 -0700
-+++ jdk/make/tools/freetypecheck/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/tools/freetypecheck/Makefile 2013-03-09 08:44:53.000000000 -0800
@@ -52,8 +52,15 @@
else
ifeq ($(PLATFORM), macosx)
@@ -6316,7 +10717,7 @@
endif
endif
--- jdk/make/tools/sharing/classlist.bsd 1969-12-31 16:00:00.000000000 -0800
-+++ jdk/make/tools/sharing/classlist.bsd 2013-01-16 08:58:15.000000000 -0800
++++ jdk/make/tools/sharing/classlist.bsd 2013-03-09 08:44:53.000000000 -0800
@@ -0,0 +1,2327 @@
+java/lang/Object
+java/lang/String
@@ -8645,6 +13046,37466 @@
+sun/applet/AppletPanel$6
+javax/swing/BufferStrategyPaintManager$1
+# f3ac8b467e7f8c49
+--- jdk/src/bsd/doc/man/appletviewer.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/appletviewer.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH appletviewer 1 "10 May 2011"
++.TH appletviewer 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -36,11 +36,14 @@
+ .SH "DESCRIPTION"
+ .LP
+ .LP
+-The \f3appletviewer\fP command connects to the documents or resources designated by \f2urls\fP and displays each applet referenced by the documents in its own window. Note: if the documents referred to by \f2urls\fP do not reference any applets with the \f2OBJECT\fP, \f2EMBED\fP, or \f2APPLET\fP tag, then \f3appletviewer\fP does nothing. For details on the HTML tags that \f3appletviewer\fP supports, see
++The \f3appletviewer\fP command connects to the documents or resources designated by \f2urls\fP and displays each applet referenced by the documents in its own window. Note: if the documents referred to by \f2urls\fP do not reference any applets with the \f2OBJECT\fP, \f2EMBED\fP, or \f2APPLET\fP tag, then \f3appletviewer\fP does nothing. For details on the HTML tags that \f3appletviewer\fP supports, see
+ .na
+ \f2AppletViewer Tags\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/appletviewertags.html.
++http://docs.oracle.com/javase/7/docs/technotes/tools/appletviewertags.html.
++.LP
++.LP
++\f3Note:\fP The \f3appletviewer\fP is intended for development purposes only. See About Sample / Test Applications and Code for more information.
+ .LP
+ .LP
+ \f3Note:\fP The \f3appletviewer\fP requires encoded URLs according to the escaping mechanism defined in RFC2396. Only encoded URLs are supported. However, file names must be unencoded, as specified in RFC2396.
+@@ -49,18 +52,18 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-debug
+-Starts the applet viewer in the Java debugger, jdb(1), thus allowing you to debug the applets in the document.
++\-debug
++Starts the applet viewer in the Java debugger, jdb(1), thus allowing you to debug the applets in the document.
+ .TP 3
+-\-encoding \ \ encoding name
+-Specify the input HTML file encoding name.
++\-encoding \ \ encoding name
++Specify the input HTML file encoding name.
+ .TP 3
+-\-Jjavaoption
+-Passes through the string \f2javaoption\fP as a single argument to the Java interpreter which runs the appletviewer. The argument should not contain spaces. Multiple argument words must all begin with the prefix \f3\-J\fP, which is stripped. This is useful for adjusting the compiler's execution environment or memory usage.
++\-Jjavaoption
++Passes through the string \f2javaoption\fP as a single argument to the Java interpreter which runs the appletviewer. The argument should not contain spaces. Multiple argument words must all begin with the prefix \f3\-J\fP, which is stripped. This is useful for adjusting the compiler's execution environment or memory usage.
+ .RE
+
+ .LP
+ .LP
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/apt.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/apt.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH apt 1 "10 May 2011"
++.TH apt 1 "16 Mar 2012"
+
+ .LP
+ .SH "NAME"
+@@ -39,11 +39,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-sourcefiles
+-Zero or more source files to be processed.
++sourcefiles
++Zero or more source files to be processed.
+ .TP 3
+-@files
+-One or more files that list source files or other options
++@files
++One or more files that list source files or other options
+ .RE
+
+ .LP
+@@ -56,80 +56,80 @@
+ The tool \f2apt\fP, annotation processing tool, includes reflective APIs and supporting infrastructure to process program annotations. The \f2apt\fP reflective APIs provide a build\-time, source\-based, read\-only view of program structure. These reflective APIs are designed to cleanly model the Java(TM) programming language's type system after the addition of generics. First, \f2apt\fP runs annotation processors that can produce new source code and other files. Next, \f2apt\fP can cause compilation of both original and generated source files, easing development. The reflective APIs and other APIs used to interact with the tool are subpackages of \f2com.sun.mirror\fP.
+ .LP
+ .LP
+-A fuller discussion of how the tool operates as well as instructions for developing with \f2apt\fP are in
++A fuller discussion of how the tool operates as well as instructions for developing with \f2apt\fP are in
+ .na
+ \f4Getting Started with \fP\f4apt\fP. @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/apt/GettingStarted.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/apt/GettingStarted.html
+ .LP
+ .SH "OPTIONS"
+ .LP
+-.SS
++.SS
+ apt specific options
+ .LP
+ .RS 3
+ .TP 3
+-\-s dir
+-Specify the directory root under which processor\-generated source files will be placed; files are placed in subdirectories based on package namespace.
++\-s dir
++Specify the directory root under which processor\-generated source files will be placed; files are placed in subdirectories based on package namespace.
+ .TP 3
+-\-nocompile
+-Do not compile source files to class files.
++\-nocompile
++Do not compile source files to class files.
+ .TP 3
+-\-print
+-Print out textual representation of specified types; perform no annotation processing or compilation.
++\-print
++Print out textual representation of specified types; perform no annotation processing or compilation.
+ .TP 3
+-\-A[key[=val]]
+-Options to pass to annotation processors \-\- these are not interpreted by \f2apt\fP directly, but are made available for use by individual processors
++\-A[key[=val]]
++Options to pass to annotation processors \-\- these are not interpreted by \f2apt\fP directly, but are made available for use by individual processors
+ .TP 3
+-\-factorypath path
+-Specify where to find annotation processor factories; if this option is used, the classpath is \f2not\fP searched for factories.
++\-factorypath path
++Specify where to find annotation processor factories; if this option is used, the classpath is \f2not\fP searched for factories.
+ .TP 3
+-\-factory classname
+-Name of annotation processor factory to use; bypasses default discovery process
++\-factory classname
++Name of annotation processor factory to use; bypasses default discovery process
+ .TP 3
+-\-version
+-Print version information.
++\-version
++Print version information.
+ .TP 3
+-\-X
+-Display information about non\-standard options.
++\-X
++Display information about non\-standard options.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Options shared with javac
+ .LP
+ .RS 3
+ .TP 3
+-\-d dir
+-Specify where to place processor and javac generated class files
++\-d dir
++Specify where to place processor and javac generated class files
+ .TP 3
+-\-cp path or \-classpath path
+-Specify where to find user class files and annotation processor factories. If \f2\-factorypath\fP is given, the classpath is not searched for factories.
++\-cp path or \-classpath path
++Specify where to find user class files and annotation processor factories. If \f2\-factorypath\fP is given, the classpath is not searched for factories.
+ .RE
+
+ .LP
+ .LP
+ Consult the javac(1) man page for information on \f2javac\fP options.
+ .LP
+-.SS
++.SS
+ Non\-Standard Options
+ .LP
+ .RS 3
+ .TP 3
+-\-XListAnnotationTypes
+-List found annotation types.
++\-XListAnnotationTypes
++List found annotation types.
+ .TP 3
+-\-XListDeclarations
+-List specified and included declarations.
++\-XListDeclarations
++List specified and included declarations.
+ .TP 3
+-\-XPrintAptRounds
+-Print information about initial and recursive \f2apt\fP rounds.
++\-XPrintAptRounds
++Print information about initial and recursive \f2apt\fP rounds.
+ .TP 3
+-\-XPrintFactoryInfo
+-Print information about which annotations a factory is asked to process.
++\-XPrintFactoryInfo
++Print information about which annotations a factory is asked to process.
+ .TP 3
+-\-XclassesAsDecls
+-Treat both class and source files as declarations to process.
++\-XclassesAsDecls
++Treat both class and source files as declarations to process.
+ .RE
+
+ .LP
+@@ -146,8 +146,8 @@
+ .RS 3
+ .TP 2
+ o
+-javac(1), java(1)
++javac(1), java(1)
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/extcheck.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/extcheck.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH extcheck 1 "10 May 2011"
++.TH extcheck 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -57,11 +57,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-verbose
+-Lists Jar files in the extension directory as they are checked. Additionally, manifest attributes of the target jar file and any conflicting jar files are also reported.
++\-verbose
++Lists Jar files in the extension directory as they are checked. Additionally, manifest attributes of the target jar file and any conflicting jar files are also reported.
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
+ .RE
+
+ .LP
+@@ -70,4 +70,4 @@
+ .LP
+ jar(1)
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/idlj.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/idlj.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,13 +19,13 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH idlj 1 "10 May 2011"
++.TH idlj 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ idlj \- The IDL\-to\-Java Compiler
+ .LP
+-\f3idlj\fP generates Java bindings from a given IDL file.
++\f3idlj\fP generates Java bindings from a given IDL file.
+ .SH "Synopsis"
+ .LP
+ .nf
+@@ -43,13 +43,13 @@
+ .SH "Description"
+ .LP
+ .LP
+-The IDL\-to\-Java Compiler generates the Java bindings for a given IDL file.\ For binding details, see the
++The IDL\-to\-Java Compiler generates the Java bindings for a given IDL file.\ For binding details, see the
+ .na
+ \f2OMG IDL to Java Language Language Mapping Specification\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/mapping/jidlMapping.html. Some previous releases of the IDL\-to\-Java compiler were named \f2idltojava\fP.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/mapping/jidlMapping.html. Some previous releases of the IDL\-to\-Java compiler were named \f2idltojava\fP.
+ .LP
+-.SS
++.SS
+ Emitting Client and Server Bindings
+ .LP
+ .LP
+@@ -106,18 +106,18 @@
+ The default server\-side model is the \f2Portable Servant Inheritance Model\fP. Given an interface \f2My\fP defined in \f2My.idl\fP, the file \f2MyPOA.java\fP is generated. You must provide the implementation for \f2My\fP and it must inherit from \f2MyPOA\fP.
+ .LP
+ .LP
+-\f2MyPOA.java\fP is a stream\-based skeleton that extends
++\f2MyPOA.java\fP is a stream\-based skeleton that extends
+ .na
+ \f2org.omg.PortableServer.Servant\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/org/omg/PortableServer/Servant.html and implements the \f2InvokeHandler\fP interface and the operations interface associated with the IDL interface the skeleton implements.
++http://docs.oracle.com/javase/7/docs/api/org/omg/PortableServer/Servant.html and implements the \f2InvokeHandler\fP interface and the operations interface associated with the IDL interface the skeleton implements.
+ .LP
+ .LP
+-The \f2PortableServer\fP module for the
++The \f2PortableServer\fP module for the
+ .na
+ \f2Portable Object Adapter (POA)\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/POA.html defines the native \f2Servant\fP type. In the Java programming language, the \f2Servant\fP type is mapped to the Java \f2org.omg.PortableServer.Servant\fP class. It serves as the base class for all POA servant implementations and provides a number of methods that may be invoked by the application programmer, as well as methods which are invoked by the POA itself and may be overridden by the user to control aspects of servant behavior.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/POA.html defines the native \f2Servant\fP type. In the Java programming language, the \f2Servant\fP type is mapped to the Java \f2org.omg.PortableServer.Servant\fP class. It serves as the base class for all POA servant implementations and provides a number of methods that may be invoked by the application programmer, as well as methods which are invoked by the POA itself and may be overridden by the user to control aspects of servant behavior.
+ .LP
+ .LP
+ Another option for the Inheritance Model is to use the \f2\-oldImplBase\fP flag in order to generate server\-side bindings that are compatible with versions of the Java programming language prior to J2SE 1.4. Note that using the \f2\-oldImplBase\fP flag is non\-standard: these APIs are being deprecated. You would use this flag ONLY for compatibility with existing servers written in J2SE 1.3. In that case, you would need to modify an existing MAKEFILE to add the \f2\-oldImplBase\fP flag to the \f2idlj\fP compiler, otherwise POA\-based server\-side mappings will be generated. To generate server\-side bindings that are backwards compatible:
+@@ -170,7 +170,7 @@
+ .fl
+ MyServant myDelegate = new MyServant();
+ .fl
+- myDelegate.setORB(orb);
++ myDelegate.setORB(orb);
+ .fl
+
+ .fl
+@@ -218,7 +218,7 @@
+ .fl
+ MyServant myDelegate = new MyServant();
+ .fl
+- myDelegate.setORB(orb);
++ myDelegate.setORB(orb);
+ .fl
+
+ .fl
+@@ -236,7 +236,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Specifying Alternate Locations for Emitted Files
+ .LP
+ .LP
+@@ -253,7 +253,7 @@
+ .LP
+ For the interface \f2My\fP, the bindings will be emitted to \f2/altdir/My.java\fP, etc., instead of \f2./My.java\fP.
+ .LP
+-.SS
++.SS
+ Specifying Alternate Locations for Include Files
+ .LP
+ .LP
+@@ -291,13 +291,13 @@
+
+ .LP
+ .LP
+-The compiler will find this file and read in the includes list. Note that in this example the separator character between the two directories is a semicolon (;). This separator character is platform dependent. On the Windows platform, use a semicolon, on the Unix platform, use a colon, etc. For more information on \f2includes\fP, see the
++The compiler will find this file and read in the includes list. Note that in this example the separator character between the two directories is a semicolon (;). This separator character is platform dependent. On the Windows platform, use a semicolon, on the Unix platform, use a colon, etc. For more information on \f2includes\fP, see the
+ .na
+ \f2Setting the Classpath\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#general.
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general.
+ .LP
+-.SS
++.SS
+ Emitting Bindings for Include Files
+ .LP
+ .LP
+@@ -469,7 +469,7 @@
+ .LP
+ If the \f2\-emitAll\fP flag had been used in the previous example, then all types in all included files would be emitted.
+ .LP
+-.SS
++.SS
+ Inserting Package Prefixes
+ .LP
+ .LP
+@@ -525,7 +525,7 @@
+ .fi
+
+ .LP
+-So the line for the above example would be:
++So the line for the above example would be:
+ .nf
+ \f3
+ .fl
+@@ -538,7 +538,7 @@
+ .LP
+ The use of this option does not affect the Repository ID.
+ .LP
+-.SS
++.SS
+ Defining Symbols Before Compilation
+ .LP
+ .LP
+@@ -555,7 +555,7 @@
+ .LP
+ is the equivalent of putting the line \f2#define MYDEF\fP inside \f2My.idl\fP.
+ .LP
+-.SS
++.SS
+ Preserving Pre\-Existing Bindings
+ .LP
+ .LP
+@@ -572,7 +572,7 @@
+ .LP
+ emits all client\-side bindings that do not already exist.
+ .LP
+-.SS
++.SS
+ Viewing Progress of Compilation
+ .LP
+ .LP
+@@ -589,7 +589,7 @@
+ .LP
+ By default the compiler does not operate in verbose mode.
+ .LP
+-.SS
++.SS
+ Displaying Version Information
+ .LP
+ .LP
+@@ -611,8 +611,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-d symbol
+-This is equivalent to the following line in an IDL file:
++\-d symbol
++This is equivalent to the following line in an IDL file:
+ .nf
+ \f3
+ .fl
+@@ -621,32 +621,32 @@
+ \fP
+ .fi
+ .TP 3
+-\-emitAll
+-Emit all types, including those found in \f2#include\fP files.
++\-emitAll
++Emit all types, including those found in \f2#include\fP files.
+ .TP 3
+-\-fside
+-Defines what bindings to emit. \f2side\fP is one of \f2client\fP, \f2server\fP, \f2serverTIE\fP, \f2all\fP, or \f2allTIE\fP. The \f2\-fserverTIE\fP and \f2\-fallTIE\fP options cause delegate model skeletons to be emitted. Assumes \f2\-fclient\fP if the flag is not specified.
++\-fside
++Defines what bindings to emit. \f2side\fP is one of \f2client\fP, \f2server\fP, \f2serverTIE\fP, \f2all\fP, or \f2allTIE\fP. The \f2\-fserverTIE\fP and \f2\-fallTIE\fP options cause delegate model skeletons to be emitted. Assumes \f2\-fclient\fP if the flag is not specified.
+ .TP 3
+-\-i include\-path
+-By default, the current directory is scanned for included files. This option adds another directory.
++\-i include\-path
++By default, the current directory is scanned for included files. This option adds another directory.
+ .TP 3
+-\-keep
+-If a file to be generated already exists, do not overwrite it. By default it is overwritten.
++\-keep
++If a file to be generated already exists, do not overwrite it. By default it is overwritten.
+ .TP 3
+-\-noWarn
+-Suppresses warning messages.
++\-noWarn
++Suppresses warning messages.
+ .TP 3
+-\-oldImplBase
+-Generates skeletons compatible with pre\-1.4 JDK ORBs. By default, the POA Inheritance Model server\-side bindings are generated. This option provides backward\-compatibility with older versions of the Java programming language by generating server\-side bindings that are \f2ImplBase\fP Inheritance Model classes.
++\-oldImplBase
++Generates skeletons compatible with pre\-1.4 JDK ORBs. By default, the POA Inheritance Model server\-side bindings are generated. This option provides backward\-compatibility with older versions of the Java programming language by generating server\-side bindings that are \f2ImplBase\fP Inheritance Model classes.
+ .TP 3
+-\-pkgPrefix type prefix
+-Wherever \f2type\fP is encountered at file scope, prefix the generated Java package name with \f2prefix\fP for all files generated for that type. The \f2type\fP is the simple name of either a top\-level module, or an IDL type defined outside of any module.
++\-pkgPrefix type prefix
++Wherever \f2type\fP is encountered at file scope, prefix the generated Java package name with \f2prefix\fP for all files generated for that type. The \f2type\fP is the simple name of either a top\-level module, or an IDL type defined outside of any module.
+ .TP 3
+-\-pkgTranslate type package
++\-pkgTranslate type package
+ Whenever the module name \f2type\fP is encountered in an identifier, replace it in the identifier with \f2package\fP for all files in the generated Java package. Note that \f2pkgPrefix\fP changes are made first. \f2type\fP is the simple name of either a top\-level module, or an IDL type defined outside of any module, and must match the full package name exactly.
+ .br
+ .br
+-If more than one translation matches an identifier, the longest match is chosen. For example, if the arguments include:
++If more than one translation matches an identifier, the longest match is chosen. For example, if the arguments include:
+ .nf
+ \f3
+ .fl
+@@ -654,7 +654,7 @@
+ .fl
+ \fP
+ .fi
+-The following translations would occur:
++The following translations would occur:
+ .nf
+ \f3
+ .fl
+@@ -668,47 +668,47 @@
+ .fl
+ \fP
+ .fi
+-The following package names cannot be translated:
++The following package names cannot be translated:
+ .RS 3
+ .TP 2
+ o
+-\f2org\fP
++\f2org\fP
+ .TP 2
+ o
+-\f2org.omg\fP or any subpackages of \f2org.omg\fP
++\f2org.omg\fP or any subpackages of \f2org.omg\fP
+ .RE
+-Any attempt to translate these packages will result in uncompilable code, and the use of these packages as the first argument after \f2\-pkgTranslate\fP will be treated as an error.
++Any attempt to translate these packages will result in uncompilable code, and the use of these packages as the first argument after \f2\-pkgTranslate\fP will be treated as an error.
+ .TP 3
+-\-skeletonName xxx%yyy
+-Use \f2xxx%yyy\fP as the pattern for naming the skeleton. The defaults are:
++\-skeletonName xxx%yyy
++Use \f2xxx%yyy\fP as the pattern for naming the skeleton. The defaults are:
+ .RS 3
+ .TP 2
+ o
+-%POA for the \f2POA\fP base class (\f2\-fserver\fP or \f2\-fall\fP)
++%POA for the \f2POA\fP base class (\f2\-fserver\fP or \f2\-fall\fP)
+ .TP 2
+ o
+-_%ImplBase for the \f2oldImplBase\fP class (\f2\-oldImplBase\fP and (\f2\-fserver\fP or \f2\-fall\fP))
++_%ImplBase for the \f2oldImplBase\fP class (\f2\-oldImplBase\fP and (\f2\-fserver\fP or \f2\-fall\fP))
+ .RE
+ .TP 3
+-\-td dir
+-Use \f2dir\fP for the output directory instead of the current directory.
++\-td dir
++Use \f2dir\fP for the output directory instead of the current directory.
+ .TP 3
+-\-tieName xxx%yyy
+-Name the tie according to the pattern. The defaults are:
++\-tieName xxx%yyy
++Name the tie according to the pattern. The defaults are:
+ .RS 3
+ .TP 2
+ o
+-%POATie for the \f2POA\fP tie base class (\f2\-fserverTie\fP or \f2\-fallTie\fP)
++%POATie for the \f2POA\fP tie base class (\f2\-fserverTie\fP or \f2\-fallTie\fP)
+ .TP 2
+ o
+-%_Tie for the \f2oldImplBase\fP tie class (\f2\-oldImplBase\fP and (\f2\-fserverTie\fP or \f2\-fallTie\fP))
++%_Tie for the \f2oldImplBase\fP tie class (\f2\-oldImplBase\fP and (\f2\-fserverTie\fP or \f2\-fallTie\fP))
+ .RE
+ .TP 3
+-\-nowarn, \-verbose
+-Verbose mode.
++\-nowarn, \-verbose
++Verbose mode.
+ .TP 3
+-\-version
+-Display version information and terminate.
++\-version
++Display version information and terminate.
+ .RE
+
+ .LP
+@@ -720,10 +720,10 @@
+ .RS 3
+ .TP 2
+ o
+-Escaped identifiers in the global scope may not have the same spelling as IDL primitive types, \f2Object\fP, or \f2ValueBase\fP. This is because the symbol table is pre\-loaded with these identifiers; allowing them to be redefined would overwrite their original definitions. (Possible permanent restriction).
++Escaped identifiers in the global scope may not have the same spelling as IDL primitive types, \f2Object\fP, or \f2ValueBase\fP. This is because the symbol table is pre\-loaded with these identifiers; allowing them to be redefined would overwrite their original definitions. (Possible permanent restriction).
+ .TP 2
+ o
+-The \f2fixed\fP IDL type is not supported.
++The \f2fixed\fP IDL type is not supported.
+ .RE
+
+ .LP
+@@ -732,8 +732,8 @@
+ .RS 3
+ .TP 2
+ o
+-No import generated for global identifiers. If you invoke on an unexported local impl, you do get an exception, but it seems to be due to a \f2NullPointerException\fP in the \f2ServerDelegate\fP DSI code.
++No import generated for global identifiers. If you invoke on an unexported local impl, you do get an exception, but it seems to be due to a \f2NullPointerException\fP in the \f2ServerDelegate\fP DSI code.
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/ja/appletviewer.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/appletviewer.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,51 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH appletviewer 1 "07 May 2011"
++.TH appletviewer 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++appletviewer \- Java¥¢¥×¥ì¥Ã¥È¡¦¥Ó¥å¡¼¥¢
++.LP
++.LP
++\f3appletviewer\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢Web¥Ö¥é¥¦¥¶¤Î³°¤Ç¥¢¥×¥ì¥Ã¥È¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++\f4appletviewer\fP \f2[\fP \f2options\fP \f2] \fP\f2urls\fP ...
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3appletviewer\fP¥³¥Þ¥ó¥É¤Ï\f2urls\fP¤Ë»ØÄꤵ¤ì¤¿¥É¥­¥å¥á¥ó¥È¤¢¤ë¤¤¤Ï¥ê¥½¡¼¥¹¤ÈÀܳ¤·¤Æ¡¢¤½¤Î¥É¥­¥å¥á¥ó¥È¤¬»²¾È¤¹¤ë¤½¤ì¤¾¤ì¤Î¥¢¥×¥ì¥Ã¥È¤òÆȼ«¤Î¥¦¥£¥ó¥É¥¦¤Çɽ¼¨¤·¤Þ¤¹¡£Ãí°Õ: \f2urls\fP¤Ë¤è¤Ã¤Æ»²¾È¤µ¤ì¤¿¥É¥­¥å¥á¥ó¥È¤¬¡¢\f2OBJECT\fP¡¢\f2EMBED\fP¡¢¤Þ¤¿¤Ï\f2APPLET\fP¥¿¥°¤Ç¤É¤Î¥¢¥×¥ì¥Ã¥È¤â»²¾È¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢\f3appletviewer\fP¤Ï²¿¤â¹Ô¤¤¤Þ¤»¤ó¡£\f3appletviewer\fP¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëHTML¥¿¥°¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¢¥×¥ì¥Ã¥È¡¦¥Ó¥å¡¼¥¢¤Î¥¿¥°\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/appletviewertags.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP \f3appletviewer\fP¤Ï³«È¯ÀìÍѤǤ¹¡£¾ÜºÙ¤Ï¡¢¥µ¥ó¥×¥ë/¥Æ¥¹¥È¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥³¡¼¥É¤Ë¤Ä¤¤¤Æ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP \f3appletviewer\fP¤Ï¡¢RFC2396¤ÇÄêµÁ¤µ¤ì¤¿¥¨¥¹¥±¡¼¥×¡¦¥á¥«¥Ë¥º¥à¤Ë½¾¤Ã¤Æ¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿URL¤òɬÍפȤ·¤Þ¤¹¡£¥µ¥Ý¡¼¥È¤µ¤ì¤ë¤Î¤Ï¡¢¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿URL¤Î¤ß¤Ç¤¹¡£¤¿¤À¤·¡¢¥Õ¥¡¥¤¥ë̾¤Ë¤Ä¤¤¤Æ¤Ï¡¢RFC2396¤Î»ÅÍͤ˽¾¤Ã¤Æ¥¨¥ó¥³¡¼¥É¤ò²ò½ü¤·¤Æ¤ª¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-debug
++Java¥Ç¥Ð¥Ã¥¬jdb(1)¤Ç¥¢¥×¥ì¥Ã¥È¡¦¥Ó¥å¡¼¥¢¤ò³«»Ï¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥É¥­¥å¥á¥ó¥ÈÃæ¤Î¥¢¥×¥ì¥Ã¥È¤ò¥Ç¥Ð¥Ã¥°¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-encoding \ \ encoding name
++ÆþÎÏHTML¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ì¾¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Jjavaoption
++ʸ»úÎó\f2javaoption\fP¤Ï¡¢appletviewer¤ò¼Â¹Ô¤¹¤ëJava¥¤¥ó¥¿¥×¥ê¥¿¤Ë1¤Ä¤Î°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤Þ¤¹¡£°ú¿ô¤Ë¥¹¥Ú¡¼¥¹¤ò´Þ¤á¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£Ê£¿ô¤Î°ú¿ô¤Ï¡¢³Æ°ú¿ô¤Î¤¹¤Ù¤Æ¤òÀÜƬ¼­\f3\-J\fP¤Ç»Ï¤á¤ë¤³¤È¤Ë¤è¤ê¶èʬ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Î¼Â¹Ô´Ä¶­¤Þ¤¿¤Ï¥á¥â¥ê¡¼»ÈÍѤÎÄ´À°¤ËÍ­¸ú¤Ç¤¹¡£
++.RE
++
++.LP
++.LP
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/apt.1 2012-08-10 10:22:48.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/apt.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,9 +19,135 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH apt 1 "07 May 2011"
++.TH apt 1 "05 Jul 2012"
+
+ .LP
+-.SH "NAME"
++.SH "̾Á°"
+ .LP
+ .LP
++\f2apt\fP \- Ãí¼á½èÍý¥Ä¡¼¥ë
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++\f2apt [\-classpath \fP\f2classpath\fP] [\-sourcepath \f2sourcepath\fP] [\-d \f2directory\fP] [\-s \f2directory\fP] [\-factorypath \f2path\fP] [\-factory \f2class\fP] [\-print] [\-nocompile] [\-A\f2key\fP[\f2=val\fP] ...] [\f2javac option\fP] sourcefiles [@files]
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.LP
++¥ª¥×¥·¥ç¥ó¤Î»ØÄê½ç½ø¤Ë·è¤Þ¤ê¤Ï¤¢¤ê¤Þ¤»¤ó¡£ÆÃÄê¤Î¥ª¥×¥·¥ç¥ó¤ËŬÍѤµ¤ì¤ë¥Ñ¥é¥á¡¼¥¿¤Ë¤Ä¤¤¤Æ¤Ï¡¢²¼µ­¤Î¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++sourcefiles
++¥¼¥í¡¢1¤Ä¡¢¤Þ¤¿¤ÏÊ£¿ô¤Î½èÍýÂоݤΥ½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë
++.TP 3
++@files
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¾¤Î¥ª¥×¥·¥ç¥ó¤ò°ìÍ÷ɽ¼¨¤¹¤ë1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î¥Õ¥¡¥¤¥ë
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3Ãí°Õ\fP: \f2apt\fP¥Ä¡¼¥ë¤È¡¢¥Ñ¥Ã¥±¡¼¥¸\f2com.sun.mirror\fP¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¤½¤ì¤Ë´ØÏ¢¤·¤¿API¤Ï¡¢JDK 7°Ê¹ßÈó¿ä¾©¤Ë¤Ê¤Ã¤Æ¤ª¤ê¡¢JDK¤Î¼¡¤Î¥á¥¸¥ã¡¼¡¦¥ê¥ê¡¼¥¹¤Çºï½ü¤µ¤ì¤ëͽÄê¤Ç¤¹¡£\f2javac(1)\fP¥Ä¡¼¥ë¤ÇÍøÍѲÄǽ¤Ê¥ª¥×¥·¥ç¥ó¤È¡¢¥Ñ¥Ã¥±¡¼¥¸\f2javax.annotation.processing\fP¤ª¤è¤Ó\f2javax.lang.model\fP¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ëAPI¤ò»ÈÍѤ·¤Æ¡¢Ãí¼á¤ò½èÍý¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++Ãí¼á½èÍý¥Ä¡¼¥ë\f2apt\fP¤Ï¡¢¥ê¥Õ¥ì¥¯¥ÈAPI¤È¥µ¥Ý¡¼¥È¡¦¥¤¥ó¥Õ¥é¥¹¥È¥é¥¯¥Á¥ã¤«¤é¹½À®¤µ¤ì¡¢¥×¥í¥°¥é¥àÃí¼á¤ò½èÍý¤·¤Þ¤¹¡£\f2apt\fP¥ê¥Õ¥ì¥¯¥ÈAPI¤Ï¡¢¹½ÃÛ»þ¤Î¥½¡¼¥¹¡¦¥Ù¡¼¥¹¤Ç¡¢¥×¥í¥°¥é¥à¹½Â¤¤Ë´Ø¤¹¤ëÆɼè¤êÀìÍѥӥ塼¤òÄ󶡤·¤Þ¤¹¡£¤³¤ì¤é¤Î¥ê¥Õ¥ì¥¯¥ÈAPI¤Ï¡¢Áí¾Î¤òÄɲä·¤¿¸å¤Ë¡¢Java(tm)¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Î·¿¥·¥¹¥Æ¥à¤òÀµ¤·¤¯¥â¥Ç¥ë²½¤¹¤ë¤è¤¦¤ËÀ߷פµ¤ì¤Æ¤¤¤Þ¤¹¡£ºÇ½é¤Ë¡¢\f2apt\fP¤Ï¡¢¿·¤·¤¤¥½¡¼¥¹¡¦¥³¡¼¥É¤È¾¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ëÃí¼á¥×¥í¥»¥Ã¥µ¤ò¼Â¹Ô¤·¤Þ¤¹¡£¼¡¤Ë¡¢\f2apt\fP¤Ï¡¢¸µ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈÀ¸À®¤·¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎξÊý¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤¿¤á¡¢³«È¯¤¬³Ú¤Ë¤Ê¤ê¤Þ¤¹¡£¥Ä¡¼¥ë¤È¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë»ÈÍѤµ¤ì¤ë¥ê¥Õ¥ì¥¯¥ÈAPI¤Ê¤É¤ÎAPI¤Ï¡¢\f2com.sun.mirror\fP¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤Ç¤¹¡£
++.LP
++.LP
++¥Ä¡¼¥ë¤Îµ¡Ç½¤Ë´Ø¤¹¤ë¾ÜºÙ¤ª¤è¤Ó\f2apt\fP¤ò»ÈÍѤ·¤¿³«È¯¼ê½ç¤Ï¡¢
++.na
++\f4apt\fP\f3¥¹¥¿¡¼¥È¡¦¥¬¥¤¥É\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/apt/GettingStarted.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.SS
++apt¸ÇÍ­¤Î¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-s dir
++¥×¥í¥»¥Ã¥µ¤ÎÀ¸À®¤¹¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÃÖ¤¯¥Ç¥£¥ì¥¯¥È¥ê¡¦¥ë¡¼¥È¤ò»ØÄꤷ¤Þ¤¹¡£¥Õ¥¡¥¤¥ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Î̾Á°¶õ´Ö¤Ë´ð¤Å¤¤¤Æ¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤«¤ì¤Þ¤¹¡£
++.TP 3
++\-nocompile
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤»¤ó¡£
++.TP 3
++\-print
++»ØÄꤷ¤¿¥¿¥¤¥×¤Î¥Æ¥­¥¹¥Èɽ¸½¤ò½ÐÎϤ·¤Þ¤¹¡£Ãí¼á½èÍý¤Þ¤¿¤Ï¥³¥ó¥Ñ¥¤¥ë¤Ï¹Ô¤¤¤Þ¤»¤ó¡£
++.TP 3
++\-A[key[=val]]
++Ãí¼á¥×¥í¥»¥Ã¥µ¤ØÅϤ¹¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2apt\fP¤¬Ä¾Àܲò¼á¤¹¤ë¤Î¤Ç¤Ï¤Ê¤¯¡¢¤½¤ì¤¾¤ì¤Î¥×¥í¥»¥Ã¥µ¤Ç»ÈÍѤǤ­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-factorypath path
++Ãí¼á¥×¥í¥»¥Ã¥µ¡¦¥Õ¥¡¥¯¥È¥ê¤ò¸¡º÷¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥Õ¥¡¥¯¥È¥ê¤Ï¸¡º÷\f2¤µ¤ì¤Þ¤»¤ó\fP¡£
++.TP 3
++\-factory classname
++»ÈÍѤ¹¤ëÃí¼á¥×¥í¥»¥Ã¥µ¡¦¥Õ¥¡¥¯¥È¥ê¤Î̾Á°¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Î¸¡½Ð¥×¥í¥»¥¹¤ò¾Êά¤·¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-X
++Èóɸ½à¥ª¥×¥·¥ç¥ó¤Ë´Ø¤¹¤ë¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++javac¤È¶¦ÍѤ¹¤ë¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-d dir
++¥×¥í¥»¥Ã¥µ¤ÈjavacÀ¸À®¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÃÖ¤¯¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-cppath¤Þ¤¿¤Ï\-classpathpath
++¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈÃí¼á¥×¥í¥»¥Ã¥µ¡¦¥Õ¥¡¥¯¥È¥ê¤ò¸¡º÷¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£\f2\-factorypath\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥Õ¥¡¥¯¥È¥ê¤Ï¸¡º÷¤µ¤ì¤Þ¤»¤ó¡£
++.RE
++
++.LP
++.LP
++\f2javac\fP¥ª¥×¥·¥ç¥ó¤Î¾ÜºÙ¤Ï¡¢javac(1)¤Î¥Þ¥Ë¥å¥¢¥ë¡¦¥Ú¡¼¥¸¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++Èóɸ½à¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-XListAnnotationTypes
++¸¡½Ð¤µ¤ì¤¿Ãí¼á¤Î·¿¤ò¥ê¥¹¥È¤·¤Þ¤¹¡£
++.TP 3
++\-XListDeclarations
++»ØÄꤪ¤è¤Ó¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤ëÀë¸À¤ò¥ê¥¹¥È¤·¤Þ¤¹¡£
++.TP 3
++\-XPrintAptRounds
++½é´ü¤ª¤è¤ÓºÆµ¢Åª¤Ê\f2apt\fP¥é¥¦¥ó¥É¤Ë´Ø¤¹¤ë¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-XPrintFactoryInfo
++¥Õ¥¡¥¯¥È¥ê¤Ë½èÍý¤ò¥ê¥¯¥¨¥¹¥È¤¹¤ëÃí¼á¤Ë´Ø¤¹¤ë¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-XclassesAsDecls
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎξÊý¤ò¡¢½èÍýÂоݤÎÀë¸À¤È¤·¤Æ½èÍý¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++\f3Ãí°Õ\fP: ¤³¤ì¤é¤ÏÈóɸ½à¥ª¥×¥·¥ç¥ó¤Ê¤Î¤Ç¡¢Í½¹ð¤Ê¤¯Êѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "Ãí°Õ"
++.LP
++.LP
++\f2apt\fP¥Ä¡¼¥ë¤È¡¢¥Ñ¥Ã¥±¡¼¥¸\f2com.sun.mirror\fP¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¤½¤ì¤Ë´ØÏ¢¤·¤¿API¤Ï¡¢JDK 7°Ê¹ßÈó¿ä¾©¤Ë¤Ê¤Ã¤Æ¤ª¤ê¡¢JDK¤Î¼¡¤Î¥á¥¸¥ã¡¼¡¦¥ê¥ê¡¼¥¹¤Çºï½ü¤µ¤ì¤ëͽÄê¤Ç¤¹¡£\f2javac(1)\fP¥Ä¡¼¥ë¤ÇÍøÍѲÄǽ¤Ê¥ª¥×¥·¥ç¥ó¤È¡¢¥Ñ¥Ã¥±¡¼¥¸\f2javax.annotation.processing\fP¤ª¤è¤Ó\f2javax.lang.model\fP¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ëAPI¤ò»ÈÍѤ·¤Æ¡¢Ãí¼á¤ò½èÍý¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++javac(1)¡¢java(1)
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/extcheck.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/extcheck.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,55 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH extcheck 1 "07 May 2011"
++.TH extcheck 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++extcheck \- jar¤Î¶¥¹ç¸¡½Ð¥æ¡¼¥Æ¥£¥ê¥Æ¥£
++.LP
++.LP
++\f3extcheck\fP¤Ï¡¢¥¿¡¼¥²¥Ã¥È¤Îjar¥Õ¥¡¥¤¥ë¤È¸½ºß¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë³ÈÄ¥µ¡Ç½¤Îjar¥Õ¥¡¥¤¥ë´Ö¤Î¥Ð¡¼¥¸¥ç¥ó¤Î¶¥¹ç¤ò¸¡½Ð¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++extcheck [ \-verbose ] targetfile.jar
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3extcheck\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¡¢»ØÄꤵ¤ì¤¿Jar¥Õ¥¡¥¤¥ë¤Î¥¿¥¤¥È¥ë¤ª¤è¤Ó¥Ð¡¼¥¸¥ç¥ó¤¬Java(tm) SDK¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë³ÈÄ¥µ¡Ç½¤È¶¥¹ç¤·¤Æ¤¤¤Ê¤¤¤«¤ò¥Á¥§¥Ã¥¯¤·¤Þ¤¹¡£³ÈÄ¥µ¡Ç½¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëÁ°¤Ë¡¢¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò»ÈÍѤ·¤Æ¡¢Æ±¤¸¥Ð¡¼¥¸¥ç¥ó¤Þ¤¿¤Ï¤è¤ê¿·¤·¤¤¥Ð¡¼¥¸¥ç¥ó¤Î³ÈÄ¥µ¡Ç½¤¬¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤É¤¦¤«¤òÄ´¤Ù¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3extcheck\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¡¢\f2targetfile.jar\fP¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥ÈÆâ¤Î¥Ø¥Ã¥À¡¼\f2Specification\-title\fP¤ª¤è¤Ó\f2Specification\-version\fP¤ò¡¢³ÈÄ¥µ¡Ç½¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë¸½ºß¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤ÎJar¥Õ¥¡¥¤¥ëÆâ¤ÎÂбþ¤¹¤ë¥Ø¥Ã¥À¡¼¤ÈÈæ³Ó¤·¤Þ¤¹¡£(¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢³ÈÄ¥µ¡Ç½¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢\f2jre/lib/ext\fP¤Ç¤¹¡£)\f3extcheck\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¡¢\f2java.lang.Package.isCompatibleWith\fP¥á¥½¥Ã¥É¤ÈƱÍͤÎÊýË¡¤Ç¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òÈæ³Ó¤·¤Þ¤¹¡£
++.LP
++.LP
++¶¥¹ç¤¬¸¡½Ð¤µ¤ì¤Ê¤¤¾ì¹ç¤Î¥ê¥¿¡¼¥ó¡¦¥³¡¼¥É¤Ï\f20\fP¤Ç¤¹¡£
++.LP
++.LP
++³ÈÄ¥µ¡Ç½¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¤¤º¤ì¤«¤Îjar¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë¡¢Æ±°ì¤Î\f2Specification\-title\fP¡¢¤ª¤è¤ÓƱ°ì¤Þ¤¿¤Ï¤è¤ê¿·¤·¤¤\f2Specification\-version\fPÈֹ椬¤¢¤ë¾ì¹ç¤Ï¡¢¥¼¥í¤Ç¤Ê¤¤¥¨¥é¡¼¡¦¥³¡¼¥É¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£\f2targetfile.jar\fP¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë\f2Specification\-title\fP¤Þ¤¿¤Ï\f2Specification\-version\fP°À­¤¬¤Ê¤¤¾ì¹ç¤â¡¢¥¼¥í¤Ç¤Ê¤¤¥¨¥é¡¼¡¦¥³¡¼¥É¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-verbose
++³ÈÄ¥µ¡Ç½¥Ç¥£¥ì¥¯¥È¥êÆâ¤ÎJar¥Õ¥¡¥¤¥ë¤ò¡¢¥Á¥§¥Ã¥¯»þ¤Ë°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£¤Þ¤¿¡¢¥¿¡¼¥²¥Ã¥Èjar¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Î°À­¡¢¤ª¤è¤Ó¶¥¹ç¤¹¤ëjar¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤âÊó¹ð¤·¤Þ¤¹¡£
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++jar(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/idlj.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/idlj.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,720 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH idlj 1 "07 May 2011"
++.TH idlj 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++idlj \- IDL\-to\-Java¥³¥ó¥Ñ¥¤¥é
++.LP
++\f3idlj\fP¤Ï¡¢»ØÄꤵ¤ì¤¿IDL¥Õ¥¡¥¤¥ë¤«¤éJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤·¤Þ¤¹¡£
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++idlj [ \fP\f3options\fP\f3 ] \fP\f4idl\-file\fP\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2idl\-file\fP¤Ï¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹ÄêµÁ¸À¸ì(IDL)¤Ë¤è¤ëÄêµÁ¤¬Æþ¤Ã¤¿¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ç¤¹¡£\f2options\fP¤Î½çÈÖ¤ÏǤ°Õ¤Ç¤¹¤¬¡¢\f2idl\-file\fP¤è¤ê¤âÁ°¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++IDL\-to\-Java¥³¥ó¥Ñ¥¤¥é¤Ï¡¢»ØÄꤵ¤ì¤¿IDL¥Õ¥¡¥¤¥ë¤ËÂФ·¤ÆJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤·¤Þ¤¹¡£¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2OMG IDL to Java Language Mapping Specification\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/mapping/jidlMapping.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£IDL\-to\-Java¥³¥ó¥Ñ¥¤¥é¤Î°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤ÎÃæ¤Ë¤Ï¡¢\f2idltojava\fP¤È¤¤¤¦Ì¾Á°¤À¤Ã¤¿¤â¤Î¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SS
++¥¯¥é¥¤¥¢¥ó¥È¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤ª¤è¤Ó¥µ¡¼¥Ð¡¼¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Îȯ¹Ô
++.LP
++.LP
++My.idl¤È¤¤¤¦Ì¾Á°¤ÎIDL¥Õ¥¡¥¤¥ë¤ËÂФ·¤ÆJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj My.idl
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ì¤Ë¤è¤ê¡¢¥¯¥é¥¤¥¢¥ó¥È¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ÈÅù²Á¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-fclient\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¥¯¥é¥¤¥¢¥ó¥È¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ë¤Ï¡¢¥µ¡¼¥Ð¡¼Â¦¤Î¥¹¥±¥ë¥È¥ó¤ÏÁȤ߹þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ËÂФ·¤Æ¥µ¡¼¥Ð¡¼Â¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-fserver\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¥µ¡¼¥Ð¡¼Â¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ë¤Ï¡¢¥¯¥é¥¤¥¢¥ó¥È¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Î¾¤Ë¡¢¥¹¥±¥ë¥È¥ó¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤ì¤é¤Ï¤¹¤Ù¤Æ¡¢\f2POA\fP(¤Ä¤Þ¤ê·Ñ¾µ¥â¥Ç¥ë)¥¯¥é¥¹¤Ç¤¹¡£¥¯¥é¥¤¥¢¥ó¥È¦¤È¥µ¡¼¥Ð¡¼Â¦¤ÎξÊý¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É(¤É¤ì¤âÅù²Á)¤Î¤¦¤Á¤Î1¤Ä¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-fclient \-fserver\fP My.idl
++.fl
++idlj \f3\-fall\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¥µ¡¼¥Ð¡¼Â¦¤Ç²Äǽ¤Ê¥â¥Ç¥ë¤Ï2¤Ä¤¢¤ê¤Þ¤¹¡£·Ñ¾µ¥â¥Ç¥ë¤ÈTie°Ñ¾ù¥â¥Ç¥ë¤Ç¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Î¥µ¡¼¥Ð¡¼Â¦¤Î¥â¥Ç¥ë¤Ï¡¢\f2°Ü¿£²Äǽ¥µ¡¼¥Ð¥ó¥È·Ñ¾µ¥â¥Ç¥ë\fP¤Ç¤¹¡£\f2My.idl\fPÆâ¤Ç\f2My\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢\f2MyPOA.java\fP¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤³¤Î¼ÂÁõ¤Ï\f2My\fP¤ËÄ󶡤·¡¢\f2MyPOA\fP¤ò·Ñ¾µ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2MyPOA.java\fP¤Ï
++.na
++\f2org.omg.PortableServer.Servant\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/org/omg/PortableServer/Servant.html¤ò³ÈÄ¥¤¹¤ë¥¹¥È¥ê¡¼¥à¥Ù¡¼¥¹¤Î¥¹¥±¥ë¥È¥ó¤Ç¡¢¥¹¥±¥ë¥È¥ó¤¬¼ÂÁõ¤¹¤ëIDL¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤Æ¤¤¤ë\f2InvokeHandler\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÈÁàºî¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ò¼ÂÁõ¤·¤Þ¤¹¡£
++.LP
++.LP
++.na
++\f2Portable Object Adapter(POA)\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/POA.html¤Î\f2PortableServer\fP¥â¥¸¥å¡¼¥ë¤Ï¡¢¥Í¥¤¥Æ¥£¥Ö¤Î\f2Servant\fP·¿¤òÄêµÁ¤·¤Þ¤¹¡£Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Ç¤Ï¡¢\f2Servant\fP·¿¤ÏJava¤Î\f2org.omg.PortableServer.Servant\fP¥¯¥é¥¹¤Ë¥Þ¥Ã¥×¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¤Ï¡¢¤¹¤Ù¤Æ¤ÎPOA¥µ¡¼¥Ð¥ó¥È¼ÂÁõ¤Î¥Ù¡¼¥¹¡¦¥¯¥é¥¹¤È¤·¤Æµ¡Ç½¤·¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¸Æ¤Ó½Ð¤¹¤³¤È¤Î¤Ç¤­¤ë¤¤¤¯¤Ä¤«¤Î¥á¥½¥Ã¥É¤Î¾¤Ë¡¢POA¤½¤Î¤â¤Î¤Ë¤è¤Ã¤Æ¸Æ¤Ó½Ð¤µ¤ì¡¢¥µ¡¼¥Ð¥ó¥È¤ÎÆ°ºî¤òÀ©¸æ¤¹¤ë¤¿¤á¤Ë¥æ¡¼¥¶¡¼¤¬¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ç¤­¤ë¥á¥½¥Ã¥É¤âÄ󶡤·¤Þ¤¹¡£
++.LP
++.LP
++·Ñ¾µ¥â¥Ç¥ë¤Î¤â¤¦1¤Ä¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2\-oldImplBase\fP¥Õ¥é¥°¤ò»ÈÍѤ¹¤ë¤³¤È¤Ç¡¢J2SE 1.4¤è¤êÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎJava¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤È¸ß´¹À­¤Î¤¢¤ë¥µ¡¼¥Ð¡¼Â¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ë¤³¤È¤Ç¤¹¡£¤¿¤À¤·¡¢\f2\-oldImplBase\fP¥Õ¥é¥°¤ò»ÈÍѤ¹¤ë¤Î¤Ï¡¢É¸½àŪ¤Ê¼êË¡¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤³¤ì¤é¤ÎAPI¤Ïº£¸åÈó¿ä¾©¤Ë¤Ê¤ëͽÄê¤Ç¤¹¡£¤³¤Î¥Õ¥é¥°¤ò»ÈÍѤ¹¤ë¤Î¤Ï¡¢J2SE 1.3¤Çµ­½Ò¤µ¤ì¤¿´û¸¤Î¥µ¡¼¥Ð¡¼¤È¤Î¸ß´¹À­¤¬É¬Íפʾì¹ç¤Î¤ß¤Ç¤¹¡£¤½¤Î¾ì¹ç¤Ë¤Ï´û¸¤ÎMAKEFILE¤òÊѹ¹¤·¡¢\f2idlj\fP¥³¥ó¥Ñ¥¤¥é¤Ë\f2\-oldImplBase\fP¥Õ¥é¥°¤òÄɲ乤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤·¤Ê¤¤¤È¡¢POA¥Ù¡¼¥¹¤Î¥µ¡¼¥Ð¡¼Â¦¥Þ¥Ã¥Ô¥ó¥°¤¬À¸À®¤µ¤ì¤Þ¤¹¡£²¼°Ì¸ß´¹À­¤Î¤¢¤ë¥µ¡¼¥Ð¡¼Â¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-fclient \-fserver\fP \f3\-oldImplBase\fP My.idl
++.fl
++idlj \f3\-fall\fP \f3\-oldImplBase\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2My.idl\fPÆâ¤Ç\f2My\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢\f2_MyImplBase.java\fP¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\f2My\fP¤ËÂФ·¤Æ¤½¤Î¼ÂÁõ¤òÄ󶡤·¡¢¤³¤Î¼ÂÁõ¤Ï\f2_MyImplBase\fP¤«¤é·Ñ¾µ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++¤â¤¦1¤Ä¤Î¥µ¡¼¥Ð¡¼Â¦¥â¥Ç¥ë¤Ï¡¢Tie¥â¥Ç¥ë¤È¸Æ¤Ð¤ì¤ë¤â¤Î¤Ç¤¹¡£¤³¤Î¥µ¡¼¥Ð¡¼Â¦¥â¥Ç¥ë¤Ï¡¢°Ñ¾ù¥â¥Ç¥ë¤Ç¤¹¡£Tie¤È¥¹¥±¥ë¥È¥ó¤òƱ»þ¤ËÀ¸À®¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Ê¤¤¤¿¤á¡¢¤½¤ì¤é¤ÏÊÌ¡¹¤ËÀ¸À®¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤Ë¤è¤Ã¤Æ¡¢Tie¥â¥Ç¥ëÍѤΥХ¤¥ó¥Ç¥£¥ó¥°¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-fall\fP My.idl
++.fl
++idlj \f3\-fallTIE\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2My\fP¤È¤¤¤¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¾ì¹ç¡¢¾åµ­¤Î2ÈÖÌܤΥ³¥Þ¥ó¥É¤Ë¤è¤ê¡¢\f2MyPOATie.java\fP¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\f2MyPOATie\fP¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¤Ï¡¢\f2delegate\fP¤ò¼è¤ê¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤ÎPOA¥â¥Ç¥ë¤ò»ÈÍѤ·¤Æ¤¤¤ë¤¿¤á¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¤Ë¤â\f2poa\fP¤¬É¬ÍפǤ¹¡£\f2delegate\fP¤ËÂФ·¤Æ¼ÂÁõ¤òÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤Î¼ÂÁõ¤Ï\f2MyOperations\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é·Ñ¾µ¤¹¤ëɬÍפ¬¤¢¤ë¤Î¤ß¤Ç¡¢¤½¤Î¾¤Î¥¯¥é¥¹¤«¤é·Ñ¾µ¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¤·¤«¤·¡¢¤³¤Î¼ÂÁõ¤òORB¤È°ì½ï¤Ë»ÈÍѤ¹¤ë¤Ë¤Ï¡¢\f2MyPOATie\fPÆâ¤Ç¼ÂÁõ¤ò¥é¥Ã¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ ORB orb = ORB.init(args, System.getProperties());
++.fl
++
++.fl
++ // Get reference to rootpoa & activate the POAManager
++.fl
++ POA rootpoa = (POA)orb.resolve_initial_references("RootPOA");
++.fl
++ rootpoa.the_POAManager().activate();
++.fl
++
++.fl
++ // create servant and register it with the ORB
++.fl
++ MyServant myDelegate = new MyServant();
++.fl
++ myDelegate.setORB(orb);
++.fl
++
++.fl
++ // create a tie, with servant being the delegate.
++.fl
++ MyPOATie tie = new MyPOATie(myDelegate, rootpoa);
++.fl
++
++.fl
++ // obtain the objectRef for the tie
++.fl
++ My ref = tie._this(orb);
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¾¤Î¼ÂÁõ¤«¤é·Ñ¾µ¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¡¢É¸½à¤Î·Ñ¾µ¥â¥Ç¥ë¤Ç¤Ï¤Ê¤¯Tie¥â¥Ç¥ë¤ò»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£Java¤Î¾ì¹ç¤Ï¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î·Ñ¾µ¤Î¸Ä¿ô¤ËÀ©¸Â¤Ï¤¢¤ê¤Þ¤»¤ó¤¬¡¢¥¯¥é¥¹¤Î·Ñ¾µ¤Ë»ÈÍѤǤ­¤ë¥¹¥í¥Ã¥È¤Ï1¤Ä¤Î¤ß¤Ç¤¹¡£·Ñ¾µ¥â¥Ç¥ë¤ò»ÈÍѤ·¤¿¾ì¹ç¤Ï¡¢¤½¤Î¥¹¥í¥Ã¥È¤¬ÀêÍ­¤µ¤ì¤Þ¤¹¡£Tie¥â¥Ç¥ë¤ò»ÈÍѤ·¤¿¾ì¹ç¤Ï¡¢¤½¤Î¥¹¥í¥Ã¥È¤¬»ÈÍѤµ¤ì¤º¡¢¥æ¡¼¥¶¡¼¤¬Æȼ«¤ÎÌÜŪ¤Ç»ÈÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤ÎÊýË¡¤Ë¤Ï¡¢´ÖÀÜÀ­¤Î¥ì¥Ù¥ë¤¬1¤ÄƳÆþ¤µ¤ì¤ë¤È¤¤¤¦·çÅÀ¤¬¤¢¤ê¤Þ¤¹¡£¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤¹¤È¤­¤Ë¡¢Í¾Ê¬¤Ê¥á¥½¥Ã¥É¸Æ½Ð¤·¤¬1²óȯÀ¸¤·¤Þ¤¹¡£
++.LP
++.LP
++J2SE 1.4¤è¤êÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎJava¸À¸ì¤Ë¥Þ¥Ã¥Ô¥ó¥°¤¹¤ëIDL¤Î¥Ð¡¼¥¸¥ç¥ó¤È¸ß´¹À­¤Î¤¢¤ë¡¢¥µ¡¼¥Ð¡¼Â¦¤ÎTie¥â¥Ç¥ë¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÀ¸À®¤¹¤ëÊýË¡¤Ï¡¢¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-oldImplBase\fP \f3\-fall\fP My.idl
++.fl
++idlj \f3\-oldImplBase\fP \f3\-fallTIE\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2My\fP¤È¤¤¤¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¾ì¹ç¡¢¤³¤ì¤Ë¤è¤ê\f2My_Tie.java\fP¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\f2My_Tie\fP¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¤Ï¡¢\f2impl\fP¤ò¼è¤ê¤Þ¤¹¡£\f2impl\fP¤ËÂФ·¤Æ¼ÂÁõ¤òÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢¤½¤Î¼ÂÁõ¤Ï\f2HelloOperations\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é·Ñ¾µ¤¹¤ëɬÍפ¬¤¢¤ë¤Î¤ß¤Ç¡¢¤½¤Î¾¤Î¥¯¥é¥¹¤«¤é·Ñ¾µ¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¤·¤«¤·¡¢¤³¤Î¼ÂÁõ¤òORB¤È°ì½ï¤Ë»ÈÍѤ¹¤ë¤Ë¤Ï¡¢\f2My_Tie\fPÆâ¤Ç¼ÂÁõ¤ò¥é¥Ã¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ ORB orb = ORB.init(args, System.getProperties());
++.fl
++
++.fl
++ // create servant and register it with the ORB
++.fl
++ MyServant myDelegate = new MyServant();
++.fl
++ myDelegate.setORB(orb);
++.fl
++
++.fl
++ // create a tie, with servant being the delegate.
++.fl
++ MyPOATie tie = new MyPOATie(myDelegate);
++.fl
++
++.fl
++ // obtain the objectRef for the tie
++.fl
++ My ref = tie._this(orb);
++.fl
++\fP
++.fi
++
++.LP
++.SS
++ȯ¹Ô¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ÎÂåÂØ°ÌÃ֤λØÄê
++.LP
++.LP
++ȯ¹Ô¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê°Ê³°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤¯¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤Ç¥³¥ó¥Ñ¥¤¥é¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-td /altdir\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2My\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¾ì¹ç¡¢¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ï¡¢\f2./My.java\fP¤Ç¤Ï¤Ê¤¯¡¢\f2/altdir/My.java\fP¤Ê¤É¤Ëȯ¹Ô¤µ¤ì¤Þ¤¹¡£
++.LP
++.SS
++¥¤¥ó¥¯¥ë¡¼¥É¡¦¥Õ¥¡¥¤¥ë¤ÎÂåÂØ°ÌÃ֤λØÄê
++.LP
++.LP
++\f2My.idl\fP¤Ë¤â¤¦1¤Ä¤ÎIDL¥Õ¥¡¥¤¥ë\f2MyOther.idl\fP¤¬¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¥í¡¼¥«¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë\f2MyOther.idl\fP¤¬¤¢¤ë¤â¤Î¤ÈÁÛÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤¬\f2/includes\fP¤Ë¤¢¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤Ç¥³¥ó¥Ñ¥¤¥é¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-i /includes\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢\f2/moreIncludes\fP¤Ë¤¢¤ë\f2Another.idl\fP¤â\f2My.idl\fP¤Ë¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¤¢¤ì¤Ð¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤Ç¥³¥ó¥Ñ¥¤¥é¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-i /includes \-i /moreIncludes\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¤³¤Î¤è¤¦¤Ê·Á¼°¤Ç¥¤¥ó¥¯¥ë¡¼¥É¤ò»ØÄꤹ¤ë¤È¡¢¥³¥Þ¥ó¥É¤¬Ä¹¤¯¤ÆÊ£»¨¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤³¤Ç¡¢¥¤¥ó¥¯¥ë¡¼¥É¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¾ì½ê¤ò¥³¥ó¥Ñ¥¤¥é¤Ë»Ø¼¨¤¹¤ë¤¿¤á¤ÎÊ̤ÎÊýË¡¤¬ÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÊýË¡¤Ï¡¢´Ä¶­ÊÑ¿ô¤Î¹Í¤¨Êý¤È»÷¤Æ¤¤¤Þ¤¹¡£CLASSPATH¤Ë¥ê¥¹¥È¤µ¤ì¤Æ¤¤¤ë¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë\f2idl.config\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£¤½¤Î\f2idl.config\fP¤ÎÃæ¤Ë¡¢¼¡¤Î¤è¤¦¤Ê·Á¼°¤Î¹Ô¤òÆþ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++includes=/includes;/moreIncludes
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤·¡¢¥¤¥ó¥¯¥ë¡¼¥É¡¦¥ê¥¹¥È¤òÆɤ߹þ¤ß¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥£¥ì¥¯¥È¥ê¤Î´Ö¤Î¶èÀÚ¤êʸ»ú¤Ï¥»¥ß¥³¥í¥ó(;)¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£¤³¤Î¶èÀÚ¤êʸ»ú¤Ï¡¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢Windows¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï¥»¥ß¥³¥í¥ó¤Ç¤¹¤¬¡¢Unix¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï¥³¥í¥ó¤Ç¤¹¡£\f2includes\fP¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÀßÄê\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++¥¤¥ó¥¯¥ë¡¼¥É¡¦¥Õ¥¡¥¤¥ë¤ËÂФ¹¤ë¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Îȯ¹Ô
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤷ¤¿IDL¥Õ¥¡¥¤¥ë¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ä¹½Â¤ÂΤʤɤˤĤ¤¤Æ¤Î¤ß¡¢Java¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë·¿¤Ë¤Ä¤¤¤Æ¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î2¤Ä¤ÎIDL¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¹Í¤¨¤Æ¤ß¤Þ¤·¤ç¤¦¡£
++.LP
++
++.LP
++.LP
++\f4My.idl\fP
++.LP
++.nf
++\f3
++.fl
++#include <MyOther.idl>
++.fl
++interface My
++.fl
++{
++.fl
++};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++\f4MyOther.idl\fP
++.LP
++.nf
++\f3
++.fl
++interface MyOther
++.fl
++{
++.fl
++};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++¼¡¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¡¢\f2My\fP¤ËÂФ¹¤ëJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Î¤ß¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj My.idl
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2My.idl\fP¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë·¿¤È¡¢\f2My.idl\fP¤Ë¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë(¤³¤ÎÎã¤Ç¤Ï\f2MyOther.idl\fP)¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë·¿¤¹¤Ù¤Æ¤Ë¤Ä¤¤¤ÆÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-emitAll\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¤³¤Î¥Ç¥Õ¥©¥ë¥È¤Î¥ë¡¼¥ë¤Ë´Ø¤·¤ÆÃí°Õ¤¬É¬ÍפÊÅÀ¤¬¤¢¤ê¤Þ¤¹¡£¥°¥í¡¼¥Ð¥ë¡¦¥¹¥³¡¼¥×¤Ë»ØÄꤷ¤¿\f2#include\fPʸ¤Ï¡¢Á°½Ò¤Î¤È¤ª¤ê¤Ë½èÍý¤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î\f2#include\fPʸ¤Ï¡¢¥¤¥ó¥Ý¡¼¥Èʸ¤È¸«¤Ê¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤½¤ì¤ËÂФ·¤Æ¡¢Â¾¤ÎÄêµÁ¤Ë°Ï¤Þ¤ì¤¿¥¹¥³¡¼¥×Æâ¤Ë»ØÄꤷ¤¿\f2#include\fPʸ¤Ï¡¢ËÜÅö¤Î°ÕÌ£¤Ç¤Î\f2#include\fPʸ¤È¤·¤Æ½èÍý¤µ¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë¤¢¤ë¥³¡¼¥É¤¬¡¢¸µ¤Î¥Õ¥¡¥¤¥ë¤Ë¤½¤Î¤Þ¤Þ»ØÄꤵ¤ì¤Æ¤¤¤ë¤«¤Î¤è¤¦¤Ë½èÍý¤µ¤ì¡¢¤½¤ì¤ËÂФ·¤ÆJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬È¯¹Ô¤µ¤ì¤Þ¤¹¡£¼¡¤Ï¤½¤ÎÎã¤Ç¤¹¡£
++.LP
++
++.LP
++.LP
++\f4My.idl\fP
++.LP
++.nf
++\f3
++.fl
++#include <MyOther.idl>
++.fl
++interface My
++.fl
++{
++.fl
++ #include <Embedded.idl>
++.fl
++};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++\f4MyOther.idl\fP
++.LP
++.nf
++\f3
++.fl
++interface MyOther
++.fl
++{
++.fl
++};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++\f4Embedded.idl\fP
++.LP
++.nf
++\f3
++.fl
++enum E {one, two, three};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++¤³¤Î¤È¤­¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¡¢
++.LP
++.nf
++\f3
++.fl
++idlj My.idl
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Î¤è¤¦¤Ê°ìÏ¢¤ÎJava¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++./MyHolder.java
++.fl
++./MyHelper.java
++.fl
++./_MyStub.java
++.fl
++./MyPackage
++.fl
++./MyPackage/EHolder.java
++.fl
++./MyPackage/EHelper.java
++.fl
++./MyPackage/E.java
++.fl
++./My.java
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥¤¥ó¥Ý¡¼¥Èʸ¤È¸«¤Ê¤µ¤ì¤ë\f2#include\fP¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤¿¤¿¤á¡¢\f2MyOther.java\fP¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£¤¿¤À¤·¡¢ËÜÅö¤Î°ÕÌ£¤Ç¤Î\f2#include\fP¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤¿¤¿¤á¡¢\f2E.java\fP¤ÏÀ¸À®\f2¤µ¤ì¤Þ¤·¤¿\fP¡£¤µ¤é¤Ë¡¢\f2Embedded.idl\fP¤¬\f2My\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥¹¥³¡¼¥×Æâ¤Ë¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤¿¤¿¤á¡¢\f2My\fP¤Î¥¹¥³¡¼¥×Æâ(¤Ä¤Þ¤ê¡¢\f2MyPackage\fPÆâ)¤ËÀ¸À®¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++¾åµ­¤ÎÎã¤Ç\f2\-emitAll\fP¥Õ¥é¥°¤ò»ÈÍѤ¹¤ì¤Ð¡¢¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ë¤¢¤ë¤¹¤Ù¤Æ¤Î·¿¤¬È¯¹Ô¤µ¤ì¤Þ¤¹¡£
++.LP
++.SS
++¥Ñ¥Ã¥±¡¼¥¸¤ÎÀÜƬ¼­¤ÎÁÞÆþ
++.LP
++.LP
++ABC¤È¤¤¤¦Ì¾Á°¤Î²ñ¼Ò¤Î¤¿¤á¤Ëºî¶È¤·¤Æ¤¤¤Æ¡¢¼¡¤Î¤è¤¦¤ÊIDL¥Õ¥¡¥¤¥ë¤ò¹½ÃÛ¤·¤¿¤È¤·¤Þ¤·¤ç¤¦¡£
++.LP
++
++.LP
++.LP
++\f4Widgets.idl\fP
++.LP
++.nf
++\f3
++.fl
++module Widgets
++.fl
++{
++.fl
++ interface W1 {...};
++.fl
++ interface W2 {...};
++.fl
++};
++.fl
++\fP
++.fi
++
++.LP
++
++.LP
++.LP
++¤³¤Î¥Õ¥¡¥¤¥ë¤ËÂФ·¤ÆIDL\-to\-Java¥³¥ó¥Ñ¥¤¥é¤ò¼Â¹Ô¤¹¤ë¤È¡¢\f2W1\fP¤ª¤è¤Ó\f2W2\fP¤ËÂФ¹¤ëJava¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬\f2Widgets\fP¥Ñ¥Ã¥±¡¼¥¸Æâ¤ËÀ¸À®¤µ¤ì¤Þ¤¹¡£¤·¤«¤·¡¢¶È³¦¤Î´·Îã¤Ë¤è¤ë¤È¡¢²ñ¼Ò¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢\f2com.<company name>\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ñ¥Ã¥±¡¼¥¸Æâ¤ËÃÖ¤¯¤³¤È¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£¤½¤Î¤¿¤á¡¢\f2Widgets\fP¥Ñ¥Ã¥±¡¼¥¸¤Ç¤ÏÉÔ½½Ê¬¤Ç¤¹¡£´·Îã¤Ë½¾¤¦¤Ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤ò\f2com.abc.Widgets\fP¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¥Ñ¥Ã¥±¡¼¥¸ÀÜƬ¼­¤ò\f2Widgets\fP¥â¥¸¥å¡¼¥ë¤ËÉղ乤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-pkgPrefix Widgets com.abc\fP Widgets.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2Widgets.idl\fP¤ò¥¤¥ó¥¯¥ë¡¼¥É¤·¤Æ¤¤¤ëIDL¥Õ¥¡¥¤¥ë¤¬¤¢¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥³¥Þ¥ó¥É¤Ë¤â\f2\-pkgPrefix\fP¥Õ¥é¥°¤¬É¬ÍפǤ¹¡£¤³¤Î¥Õ¥é¥°¤ò»ØÄꤷ¤Ê¤¤¤È¡¢¤½¤ÎIDL¥Õ¥¡¥¤¥ë¤Ï¡¢\f2com.abc.Widgets\fP¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤Ê¤¯¡¢\f2Widgets\fP¥Ñ¥Ã¥±¡¼¥¸¤ò¸¡º÷¤¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++ÀÜƬ¼­¤¬É¬Íפʥѥ屡¼¥¸¤¬¤¤¤¯¤Ä¤â¤¢¤ë¾ì¹ç¤Ï¡¢Á°½Ò¤Î\f2idl.config\fP¥Õ¥¡¥¤¥ë¤ÇÀÜƬ¼­¤ò»ØÄꤹ¤ë¤Î¤¬´Êñ¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¤ÎÀÜƬ¼­¤ò»ØÄꤹ¤ë¹Ô¤Ï¡¢¤½¤ì¤¾¤ì¼¡¤Î·Á¼°¤Çµ­½Ò¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++PkgPrefix.<type>=<prefix>
++.fl
++\fP
++.fi
++
++.LP
++¤·¤¿¤¬¤Ã¤Æ¡¢¾åµ­¤ÎÎã¤Î¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ëµ­½Ò¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++PkgPrefix.Widgets=com.abc
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤â¡¢¥ê¥Ý¥¸¥È¥êID¤Ï±Æ¶Á¤ò¼õ¤±¤Þ¤»¤ó¡£
++.LP
++.SS
++¥³¥ó¥Ñ¥¤¥ëÁ°¤Î¥·¥ó¥Ü¥ë¤ÎÄêµÁ
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥ëÍѤΥ·¥ó¥Ü¥ë¤¬IDL¥Õ¥¡¥¤¥ëÆâ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¤½¤Î¥·¥ó¥Ü¥ë¤òÄêµÁ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢¤¿¤È¤¨¤Ð¡¢¥Ð¥¤¥ó¥Ç¥£¥ó¥°Æâ¤Ë¥Ç¥Ð¥Ã¥°¡¦¥³¡¼¥É¤òÁȤßÆþ¤ì¤ë¤È¤­¤Ë»ÈÍѤ·¤Þ¤¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-d\fP MYDEF My.idl
++.fl
++.fi
++
++.LP
++.LP
++\f2My.idl\fPÆâ¤Ë\f2#define MYDEF\fP¤È¤¤¤¦¹Ô¤ò»ØÄꤷ¤¿¾ì¹ç¤ÈÅù²Á¤Ç¤¹¡£
++.LP
++.SS
++´û¸¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤ÎÊÝ»ý
++.LP
++.LP
++Java¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤¬¤¹¤Ç¤Ë¸ºß¤¹¤ë¾ì¹ç¤Ï¡¢\f2\-keep\fP¥Õ¥é¥°¤ò»ØÄꤹ¤ë¤È¡¢¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤ë¾å½ñ¤­¤ò²óÈò¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¤¹¤Ç¤Ë¸ºß¤¹¤ë¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤é¤º¡¢¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ò¥«¥¹¥¿¥Þ¥¤¥º¤·¤¿¾ì¹ç(¤¿¤À¤·¡¢¤½¤ì¤é¤ÎÆâÍƤ¬Àµ³Î¤Ç¤¢¤ë¤È¤­°Ê³°¤Ï¥«¥¹¥¿¥Þ¥¤¥º¤ÏÈò¤±¤ë)¡¢\f2\-keep\fP¥ª¥×¥·¥ç¥ó¤ÏÍ­ÍѤǤ¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-keep\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¥¯¥é¥¤¥¢¥ó¥È¦¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ç¡¢¤Þ¤À¸ºß¤·¤Ê¤¤¤â¤Î¤ò¤¹¤Ù¤Æȯ¹Ô¤·¤Þ¤¹¡£
++.LP
++.SS
++¥³¥ó¥Ñ¥¤¥ë¤Î¿ÊĽ¾õ¶·¤Îɽ¼¨
++.LP
++.LP
++IDL\-to\-Java¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¼Â¹Ô¤Î³ÆÃʳ¬¤Ç¾õÂÖ¥á¥Ã¥»¡¼¥¸¤òÀ¸À®¤·¤Þ¤¹¡£¡Ö¾éĹ¡×¥â¡¼¥É¤ò¥¢¥¯¥Æ¥£¥Ö²½¤¹¤ë¤Ë¤Ï¡¢\f2\-v\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \fP\f3\-v\fP My.idl
++.fl
++.fi
++
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¾éĹ¥â¡¼¥É¤Ç¤Ï¼Â¹Ô¤µ¤ì¤Þ¤»¤ó¡£
++.LP
++.SS
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Îɽ¼¨
++.LP
++.LP
++IDL\-to\-Java¥³¥ó¥Ñ¥¤¥é¤Î¥Ó¥ë¥É¡¦¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-version\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++idlj \-version
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤¿¥Ð¥¤¥ó¥Ç¥£¥ó¥°Æâ¤Ë¤â½ñ¤­¹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤹ¤ë¤È¡¢¤½¤ì°Ê³°¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æ¤â¡¢¤¹¤Ù¤Æ̵»ë¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-d symbol
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢IDL¥Õ¥¡¥¤¥ë¤Ë¼¡¤Î¤è¤¦¤Ê¹Ô¤òÄɲä·¤¿¾ì¹ç¤ÈÅù²Á¤Ç¤¹¡£
++.nf
++\f3
++.fl
++#define \fP\f4symbol\fP\f3
++.fl
++\fP
++.fi
++.TP 3
++\-emitAll
++\f2#include\fP¥Õ¥¡¥¤¥ëÆâ¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¤â¤Î¤â´Þ¤á¤Æ¡¢¤¹¤Ù¤Æ¤Î·¿¤òȯ¹Ô¤·¤Þ¤¹¡£
++.TP 3
++\-fside
++ȯ¹Ô¤¹¤ë¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÄêµÁ¤·¤Þ¤¹¡£\f2side\fP¤Ï\f2client\fP¡¢\f2server\fP¡¢\f2serverTIE\fP¡¢\f2all\fP¡¢\f2allTIE\fP¤Î¤¤¤º¤ì¤«¤Ë¤Ê¤ê¤Þ¤¹¡£\f2\-fserverTIE\fP¤Þ¤¿¤Ï\f2\-fallTIE\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢°Ñ¾ù¥â¥Ç¥ë¡¦¥¹¥±¥ë¥È¥ó¤¬È¯¹Ô¤µ¤ì¤Þ¤¹¡£¤³¤Î¥Õ¥é¥°¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢\f2\-fclient\fP¤¬»ØÄꤵ¤ì¤¿¤â¤Î¤È¸«¤Ê¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-i include\-path
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥¤¥ó¥¯¥ë¡¼¥É¡¦¥Õ¥¡¥¤¥ë¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸¡º÷¤µ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢Â¾¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òÄɲäǤ­¤Þ¤¹¡£
++.TP 3
++\-keep
++À¸À®¤µ¤ì¤ë¥Õ¥¡¥¤¥ë¤¬¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤¬¾å½ñ¤­¤µ¤ì¤Þ¤»¤ó¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¾å½ñ¤­¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-noWarn
++·Ù¹ð¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-oldImplBase
++1.4¤è¤êÁ°¤ÎJDK ORB¤È¸ß´¹À­¤Î¤¢¤ë¥¹¥±¥ë¥È¥ó¤òÀ¸À®¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢POA·Ñ¾µ¥â¥Ç¥ë¤Î¥µ¡¼¥Ð¡¼Â¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢\f2ImplBase\fP·Ñ¾µ¥â¥Ç¥ë¤Î¥¯¥é¥¹¤Ç¤¢¤ë¥µ¡¼¥Ð¡¼Â¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬À¸À®¤µ¤ì¤ë¤Î¤Ç¡¢¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤ÎJava¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤È¤Î²¼°Ì¸ß´¹À­¤¬ÆÀ¤é¤ì¤Þ¤¹¡£
++.TP 3
++\-pkgPrefix type prefix
++\f2type\fP¤¬¥Õ¥¡¥¤¥ë¡¦¥¹¥³¡¼¥×¤Ç¸¡½Ð¤µ¤ì¤¿¾ì¹ç¤Ï¡¢¤½¤Î·¿¤ËÂФ·¤ÆÀ¸À®¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¡¢À¸À®¤µ¤ì¤ëJava¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ë\f2prefix\fP¤È¤¤¤¦ÀÜƬ¼­¤¬Éղ䵤ì¤Þ¤¹¡£\f2type\fP¤Ï¡¢¥È¥Ã¥×¥ì¥Ù¥ë¡¦¥â¥¸¥å¡¼¥ë¤Îñ½ã̾¤«¡¢¤É¤Î¥â¥¸¥å¡¼¥ë¤è¤ê¤â³°Â¦¤ÇÄêµÁ¤µ¤ì¤¿IDL·¿¤Îñ½ã̾¤Î¤É¤Á¤é¤«¤Ç¤¹¡£
++.TP 3
++\-pkgTranslate type package
++¼±Ê̻ҤÎÃæ¤Ë¥â¥¸¥å¡¼¥ë̾\f2type\fP¤¬¸¡½Ð¤µ¤ì¤ë¤È¡¢À¸À®¤µ¤ì¤ëJava¥Ñ¥Ã¥±¡¼¥¸Æâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¡¢¼±Ê̻ҤÎÃæ¤Î¤½¤Î̾Á°¤¬\f2package\fP¤ÇÃÖ¤­´¹¤¨¤é¤ì¤Þ¤¹¡£ºÇ½é¤Ë\f2pkgPrefix\fP¤ÎÊѹ¹¤¬¹Ô¤ï¤ì¤Þ¤¹¡£\f2type\fP¤Ï¡¢¥È¥Ã¥×¥ì¥Ù¥ë¤Î¥â¥¸¥å¡¼¥ë¤Îñ½ã̾¡¢¤Þ¤¿¤Ï¤¹¤Ù¤Æ¤Î¥â¥¸¥å¡¼¥ë¤Î³°Éô¤ÇÄêµÁ¤µ¤ì¤¿IDL·¿¤Îñ½ã̾¤Ç¡¢´°Á´¤Ê¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ËÀµ³Î¤Ë°ìÃפ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++1¤Ä¤Î¼±Ê̻ҤÎÃæ¤ÇÊ£¿ô¤ÎÊÑ´¹¤¬¥Þ¥Ã¥Á¤¹¤ë¾ì¹ç¤Ï¡¢ºÇ¤âŤ¤¥Þ¥Ã¥Á¤¬Áª¤Ð¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ê°ú¿ô¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢
++.nf
++\f3
++.fl
++ \-pkgTranslate foo bar \-pkgTranslate foo.baz buzz.fizz
++.fl
++\fP
++.fi
++¼¡¤Î¤è¤¦¤ÊÊÑ´¹¤¬¼Â»Ü¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++foo => bar
++.fl
++foo.boo => bar.boo
++.fl
++foo.baz => buzz.fizz
++.fl
++foo.baz.bar => buzz.fizz.bar
++.fl
++\fP
++.fi
++¼¡¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÊÑ´¹¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.RS 3
++.TP 2
++o
++\f2org\fP
++.TP 2
++o
++\f2org.omg\fP¡¢¤Þ¤¿¤Ï\f2org.omg\fP¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸
++.RE
++¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÊÑ´¹¤·¤è¤¦¤È¤¹¤ë¤È¡¢¸ß´¹À­¤Î¤Ê¤¤¥³¡¼¥É¤¬À¸À®¤µ¤ì¡¢\f2\-pkgTranslate\fP¤Î¸å¤ÎºÇ½é¤Î°ú¿ô¤È¤·¤Æ¤½¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ¹¤ë¤È¡¢¥¨¥é¡¼¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.TP 3
++\-skeletonName xxx%yyy
++\f2xxx%yyy\fP¤¬¡¢¥¹¥±¥ë¥È¥ó¤Ë̾Á°¤òÉÕ¤±¤ë¥Ñ¥¿¡¼¥ó¤È¤·¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++\f2POA\fP¥Ù¡¼¥¹¡¦¥¯¥é¥¹¤Î¾ì¹ç¤Ï%POA (\f2\-fserver\fP¤Þ¤¿¤Ï\f2\-fall\fP)
++.TP 2
++o
++\f2oldImplBase\fP¥¯¥é¥¹¤Î¾ì¹ç¤Ï_%ImplBase (\f2\-oldImplBase\fP¤«¤Ä(\f2\-fserver\fP¤Þ¤¿¤Ï\f2\-fall\fP))
++.RE
++.TP 3
++\-td dir
++½ÐÎϥǥ£¥ì¥¯¥È¥ê¤È¤·¤Æ¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤Ê¤¯¡¢\f2dir\fP¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-tieName xxx%yyy
++¤³¤Î¥Ñ¥¿¡¼¥ó¤Ë½¾¤Ã¤ÆTie¤Ë̾Á°¤¬ÉÕ¤±¤é¤ì¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++\f2POA\fP Tie¥Ù¡¼¥¹¡¦¥¯¥é¥¹¤Î¾ì¹ç¤Ï%POATie (\f2\-fserverTie\fP¤Þ¤¿¤Ï\f2\-fallTie\fP)
++.TP 2
++o
++\f2oldImplBase\fP Tie¥¯¥é¥¹¤Î¾ì¹ç¤Ï%_Tie (\f2\-oldImplBase\fP¤«¤Ä(\f2\-fserverTie\fP¤Þ¤¿¤Ï\f2\-fallTie\fP))
++.RE
++.TP 3
++\-nowarn¡¢\-verbose
++¾éĹ¥â¡¼¥É¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++³Æ¥ª¥×¥·¥ç¥ó¤Î¾ÜºÙ¤Ï¡¢ÀâÌÀ¤Î¥»¥¯¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "À©Ìó"
++.LP
++.RS 3
++.TP 2
++o
++¥°¥í¡¼¥Ð¥ë¡¦¥¹¥³¡¼¥×Æâ¤Î¥¨¥¹¥±¡¼¥×¤µ¤ì¤¿¼±Ê̻Ҥϡ¢IDL¥×¥ê¥ß¥Æ¥£¥Ö·¿¤Î\f2Object\fP¤Þ¤¿¤Ï\f2ValueBase\fP¤ÈƱ¤¸ÄÖ¤ê¤Ë¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤ì¤é¤Î¼±Ê̻ҤˤĤ¤¤Æ¤Ï¡¢¥·¥ó¥Ü¥ëɽ¤¬»öÁ°¤Ë¥í¡¼¥É¤µ¤ì¤Æ¤ª¤ê¡¢¤³¤ì¤é¤Î¼±Ê̻ҤκÆÄêµÁ¤òµö²Ä¤¹¤ë¤È¸µ¤ÎÄêµÁ¤¬¾å½ñ¤­¤µ¤ì¤Æ¤·¤Þ¤¦¤¿¤á¤Ç¤¹¡£(¤³¤ì¤Ï¡¢¤ª¤½¤é¤¯¹±µ×Ū¤ÊÀ©Ìó¤Ç¤¹¡£)
++.TP 2
++o
++\f2fixed\fP¤È¤¤¤¦IDL·¿¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£
++.RE
++
++.LP
++.SH "´ûÃΤÎÌäÂêÅÀ"
++.LP
++.RS 3
++.TP 2
++o
++¥°¥í¡¼¥Ð¥ë¼±Ê̻ҤˤĤ¤¤Æ¥¤¥ó¥Ý¡¼¥È¤¬À¸À®¤µ¤ì¤Þ¤»¤ó¡£Í½´ü¤µ¤ì¤Ê¤¤¥í¡¼¥«¥ëimpl¤ò¸Æ¤Ó½Ð¤¹¤È¡¢Îã³°¤ò¼õ¤±¼è¤ê¤Þ¤¹¡£¤·¤«¤·¡¢¤½¤Î¸¶°ø¤Ï¡¢\f2ServerDelegate\fP DSI¥³¡¼¥ÉÆâ¤Î\f2NullPointerException\fP¤Ë¤¢¤ë¤è¤¦¤Ç¤¹¡£
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jar.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jar.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,583 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jar 1 "07 May 2011"
++.TH jar 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jar \- Java ARchive¥Ä¡¼¥ë
++.LP
++\f3jar\fP¤ÏÊ£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò1¤Ä¤ÎJAR¥¢¡¼¥«¥¤¥Ö¡¦¥Õ¥¡¥¤¥ë¤Ë·ë¹ç¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.RS 3
++.TP 3
++JAR¥Õ¥¡¥¤¥ë¤ÎºîÀ®
++\f4jar c\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
++.TP 3
++JAR¥Õ¥¡¥¤¥ë¤Î¹¹¿·
++\f4jar u\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
++.TP 3
++JAR¥Õ¥¡¥¤¥ë¤ÎÃê½Ð
++\f4jar x\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
++.TP 3
++JAR¥Õ¥¡¥¤¥ë¤ÎÌܼ¡É½¼¨
++\f4jar t\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
++.TP 3
++JAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥¤¥ó¥Ç¥Ã¥¯¥¹¤ÎÄɲÃ
++\f4jar i\fP \f2jarfile\fP \f2[\-J\fP\f2option\fP\f2]\fP
++.RE
++
++.LP
++.LP
++ÀâÌÀ
++.LP
++.RS 3
++.TP 3
++cuxtiv0Mmfe
++\f2jar\fP¥³¥Þ¥ó¥É¤òÀ©¸æ¤¹¤ë¥ª¥×¥·¥ç¥ó
++.TP 3
++jarfile
++ºîÀ®(\f2c\fP)¡¢¹¹¿·(\f2u\fP)¡¢Ãê½Ð(\f2x\fP)¤Þ¤¿¤ÏÌܼ¡É½¼¨(\f2t\fP)¤ÎÂоݤȤʤëJAR¥Õ¥¡¥¤¥ë¡£\f2f\fP¥ª¥×¥·¥ç¥ó¤È¥Õ¥¡¥¤¥ë̾\f2jarfile\fP¤È¤¬¥Ú¥¢¤Ë¤Ê¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢ÊÒÊý¤òµ­½Ò¤¹¤ì¤Ð¡¢¤â¤¦°ìÊý¤âµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2f\fP¤È\f2jarfile\fP¤ò¾Êά¤¹¤ë¤È¡¢É¸½àÆþÎϤ«¤é¡ÖJAR¥Õ¥¡¥¤¥ë¡×¤¬¼èÆÀ¤µ¤ì¤ë¤«(x¤ª¤è¤Ót¤Î¾ì¹ç)¡¢É¸½à½ÐÎϤءÖJAR¥Õ¥¡¥¤¥ë¡×¤¬Á÷¿®¤µ¤ì¤Þ¤¹(c¤ª¤è¤Óu¤Î¾ì¹ç)¡£
++.TP 3
++inputfiles
++\f2jarfile\fP¤Ë·ë¹ç¤µ¤ì¤ë¤«(c¤ª¤è¤Óu¤Î¾ì¹ç)¡¢\f2jarfile\fP¤«¤éÃê½Ð(x¤Î¾ì¹ç)¤Þ¤¿¤Ï°ìÍ÷ɽ¼¨(t¤Î¾ì¹ç)¤µ¤ì¤ë¡¢¶õÇò¤Ç¶èÀÚ¤é¤ì¤¿¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥Ç¥£¥ì¥¯¥È¥ê¡£¤¹¤Ù¤Æ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ÏºÆµ¢Åª¤Ë½èÍý¤µ¤ì¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢¥ª¥×¥·¥ç¥ó\f20\fP(¥¼¥í)¤ò»ÈÍѤ·¤Ê¤¤¤«¤®¤ê°µ½Ì¤µ¤ì¤Þ¤¹¡£
++.TP 3
++manifest
++JAR¥Õ¥¡¥¤¥ë¤ÎMANIFEST.MFÆâ¤Ë´Þ¤á¤ë\f2name\fP\f2:\fP\f2value\fP¤Î¥Ú¥¢¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë´û¸¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¡£\f2m\fP¥ª¥×¥·¥ç¥ó¤È¥Õ¥¡¥¤¥ë̾\f2manifest\fP¤È¤¬¥Ú¥¢¤Ë¤Ê¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢ÊÒÊý¤òµ­½Ò¤¹¤ì¤Ð¡¢¤â¤¦°ìÊý¤âµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f3m\fP¡¢\f3f\fP¤ª¤è¤Ó\f3e\fP¤Î½Ð¸½½ç½ø¤Ï¡¢\f2manifest\fP¡¢\f2jarfile\fP¡¢\f2entrypoint\fP¤Î½Ð¸½½ç½ø¤È°ìÃפ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++entrypoint
++¼Â¹Ô²ÄǽJAR¥Õ¥¡¥¤¥ëÆâ¤Ë¥Ð¥ó¥É¥ë¤µ¤ì¤¿¥¹¥¿¥ó¥É¥¢¥í¥ó¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥¨¥ó¥È¥ê¡¦¥Ý¥¤¥ó¥È¤È¤·¤ÆÀßÄꤹ¤ë¥¯¥é¥¹¤Î̾Á°¡£\f2e\fP¥ª¥×¥·¥ç¥ó¤Èentrypoint¤ÏÂФˤʤäƤ¤¤Þ¤¹¡£¤É¤Á¤é¤«¤ò»ØÄꤹ¤ë¾ì¹ç¤ÏξÊý¤È¤â»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f3m\fP¡¢\f3f\fP¤ª¤è¤Ó\f3e\fP¤Î½Ð¸½½ç½ø¤Ï¡¢\f2manifest\fP¡¢\f2jarfile\fP¡¢\f2entrypoint\fP¤Î½Ð¸½½ç½ø¤È°ìÃפ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-C\ dir
++¤³¤ì¤Ë³¤¯\f2inputfiles\fP°ú¿ô¤ò½èÍý¤¹¤ë´Ö¡¢¥Ç¥£¥ì¥¯¥È¥ê¤ò\f2dir\fP¤Ø°ì»þŪ¤ËÊѹ¹¤·¤Þ¤¹¡£\f2\-C\ \fP\f2dir\fP \f2inputfiles\fP¤Î¥»¥Ã¥È¤ÏÊ£¿ô»ÈÍѤǤ­¤Þ¤¹¡£
++.TP 3
++\-Joption
++Java¼Â¹Ô´Ä¶­¤ØÅϤµ¤ì¤ë¥ª¥×¥·¥ç¥ó¡£(\f2\-J\fP¤È\f2option\fP¤Î´Ö¤Ë¤Ï¶õÇò¤òÆþ¤ì¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£)
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++\f3jar\fP¥Ä¡¼¥ë¤ÏÊ£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò1¤Ä¤ÎJAR¥¢¡¼¥«¥¤¥Ö¡¦¥Õ¥¡¥¤¥ë¤Ë·ë¹ç¤·¤Þ¤¹¡£\f3jar\fP¤Ï¡¢ZIP¤ª¤è¤Ó
++.na
++\f2ZLIB\fP @
++.fi
++http://www.gzip.org/zlib/°µ½Ì·Á¼°¤Ë´ð¤Å¤¯ÈÆÍѤΥ¢¡¼¥«¥¤¥Ö¤ª¤è¤Ó°µ½Ì¥Ä¡¼¥ë¤Ç¤¹¡£¤¿¤À¤·\f3jar\fP¥Ä¡¼¥ë¤Î¼ç¤ÊÌÜŪ¤Ï¡¢¤¤¤¯¤Ä¤«¤ÎJava¥¢¥×¥ì¥Ã¥È¤ä¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò1¸Ä¤Î¥¢¡¼¥«¥¤¥Ö¤ËÅý¹ç¤¹¤ë¤³¤È¤Ç¤¹¡£¥¢¥×¥ì¥Ã¥È¤ä¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥³¥ó¥Ý¡¼¥Í¥ó¥È(¥Õ¥¡¥¤¥ë¡¢¥¤¥á¡¼¥¸¡¢¤ª¤è¤Ó¥µ¥¦¥ó¥É)¤¬1¤Ä¤Î¥¢¡¼¥«¥¤¥Ö¤Ë·ë¹ç¤µ¤ì¤Æ¤¤¤ë¤È¡¢Java¥¨¡¼¥¸¥§¥ó¥È(¥Ö¥é¥¦¥¶¤Ê¤É)¤Ï¡¢¤½¤ì¤é¤Î¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ò1²ó¤ÎHTTP¥È¥é¥ó¥¶¥¯¥·¥ç¥ó¤Ç¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤³¤È¤¬¤Ç¤­¡¢¥³¥ó¥Ý¡¼¥Í¥ó¥È¤´¤È¤Ë¿·¤·¤¤Àܳ¤¬ÉÔÍפˤʤê¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥À¥¦¥ó¥í¡¼¥É»þ´Ö¤¬ÂçÉý¤Ëû½Ì¤µ¤ì¤Þ¤¹¡£¤Þ¤¿¡¢\f3jar\fP¤Ï¥Õ¥¡¥¤¥ë¤Î°µ½Ì¤â¹Ô¤¦¤Î¤Ç¡¢¥À¥¦¥ó¥í¡¼¥É»þ´Ö¤¬¤µ¤é¤Ëû½Ì¤µ¤ì¤Þ¤¹¡£¤Þ¤¿¡¢¥Õ¥¡¥¤¥ëÆâ¤Î¸Ä¡¹¤Î¥¨¥ó¥È¥ê¤Ë¥¢¥×¥ì¥Ã¥ÈºîÀ®¼Ô¤Ë¤è¤ë½ð̾¤ò½ñ¤­¹þ¤á¤ë¤Î¤Ç¡¢ÇÛÉÛ¸µ¤Îǧ¾Ú¤¬²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£jar¥Ä¡¼¥ë¤Î¹½Ê¸¤Ï¡¢\f2tar\fP¥³¥Þ¥ó¥É¤Î¹½Ê¸¤È¤Û¤ÜƱ¤¸¤Ç¤¹¡£\f3JAR\fP¥¢¡¼¥«¥¤¥Ö¤Ï¡¢°µ½Ì¤µ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤é¤º¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥¨¥ó¥È¥ê¤È¤·¤Æ»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤òJAR¥Õ¥¡¥¤¥ë¤Ø·ë¹ç¤¹¤ë°ìÈÌŪ¤Ê»ÈÍÑÊýË¡¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar cf myFile.jar *.class
++.fl
++\fP
++.fi
++
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¢¤ë¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬\f2myFile.jar\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£jar¥Ä¡¼¥ë¤Ï¼«Æ°Åª¤Ë¡¢\f2META\-INF/MANIFEST.MF\fP¤È¤¤¤¦Ì¾Á°¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¡¦¥¨¥ó¥È¥ê¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤ì¤Ï¾ï¤Ë¡¢JAR¥Õ¥¡¥¤¥ë¤ÎºÇ½é¤Î¥¨¥ó¥È¥ê¤Ë¤Ê¤ê¤Þ¤¹¡£¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¥¢¡¼¥«¥¤¥Ö¤Ë´Ø¤¹¤ë¥á¥¿¾ðÊó¤òÀë¸À¤·¡¢¤½¤Î¥Ç¡¼¥¿¤ò\f2name\ :\ value\fP¤Î¥Ú¥¢¤È¤·¤Æ³ÊǼ¤·¤Þ¤¹¡£jar¥Ä¡¼¥ë¤¬¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¥á¥¿¾ðÊó¤ò³ÊǼ¤¹¤ëÊýË¡¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2JAR¥Õ¥¡¥¤¥ë¤Î»ÅÍÍ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR%20Manifest¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++´û¸¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë³ÊǼ¤µ¤ì¤¿\f2name\ :\ value\fP¤Î¥Ú¥¢¤òJAR¥Õ¥¡¥¤¥ë¤Ë´Þ¤á¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë\f2\-m\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤½¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar cmf myManifestFile myFile.jar *.class
++.fl
++\fP
++.fi
++
++.LP
++´û¸¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï²þ¹Ôʸ»ú¤Ç½ª¤ï¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤¬²þ¹Ôʸ»ú¤Ç½ª¤ï¤Ã¤Æ¤¤¤Ê¤¤¤È¡¢\f3jar\fP¤Ï¤½¤ÎºÇ½ª¹Ô¤ò²òÀϤ·¤Þ¤»¤ó¡£
++.br
++
++.LP
++.br
++
++.LP
++\f3Ãí°Õ:\ \fP¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë\f2cmf\fP¤Ç¤Ï¤Ê¤¯\f2cfm\fP¤¬»ØÄꤵ¤ì¤¿(m¤È\-f¥ª¥×¥·¥ç¥ó¤Î½çÈÖ¤òµÕ¤Ë¤·¤¿)jar¥³¥Þ¥ó¥É¤Î¾ì¹ç¡¢\f3jar\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤Þ¤ºJAR¥¢¡¼¥«¥¤¥Ö¤Î̾Á°¤ò»ØÄꤷ¡¢Â³¤¤¤Æ¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% jar cfm myFile.jar myManifestFile *.class
++.fl
++\fP
++.fi
++
++.LP
++¥Þ¥Ë¥Õ¥§¥¹¥È¤Ï¡¢RFC822 ASCII·Á¼°¤Çµ¬Äꤵ¤ì¤¿¥Æ¥­¥¹¥È·Á¼°¤Ç¤¢¤ë¤¿¤á¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ÎÆâÍƤò´Êñ¤Ëɽ¼¨¤ª¤è¤Ó½èÍý¤Ç¤­¤Þ¤¹¡£
++.LP
++JAR¥Õ¥¡¥¤¥ë¤«¤é¥Õ¥¡¥¤¥ë¤òÃê½Ð¤¹¤ë¾ì¹ç¤Ï¡¢\f2x\fP¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar xf myFile.jar
++.fl
++\fP
++.fi
++
++.LP
++.LP
++jar¥Õ¥¡¥¤¥ë¤«¤é¸ÄÊ̤Υե¡¥¤¥ë¤òÃê½Ð¤¹¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar xf myFile.jar foo bar
++.fl
++\fP
++.fi
++
++.LP
++.LP
++JDK¤Î¥Ð¡¼¥¸¥ç¥ó1.3°Ê¹ß¤«¤é¡¢\f2jar\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ç
++.na
++\f2JarIndex\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£JarIndex¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ÇJAR¥Õ¥¡¥¤¥ë¤«¤é¥¯¥é¥¹¤¬¥í¡¼¥É¤µ¤ì¤ë¤È¤­¤Î¸úΨ¤¬¸þ¾å¤·¤Þ¤¹¡£¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥¢¥×¥ì¥Ã¥È¤¬Ê£¿ô¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¥Ð¥ó¥É¥ë¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢É¬ÍפÊJAR¥Õ¥¡¥¤¥ë¤Î¤ß¤¬¥À¥¦¥ó¥í¡¼¥É¤µ¤ì¤Æ³«¤«¤ì¡¢¥¯¥é¥¹¤¬¥í¡¼¥É¤µ¤ì¤Þ¤¹¡£¤³¤Î¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¤ÎºÇŬ²½¤Ï¡¢\f2\-i\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æ\f2jar\fP¤ò¼Â¹Ô¤¹¤ë¤ÈÍ­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢»ØÄꤷ¤¿JAR¥á¥¤¥ó¡¦¥Õ¥¡¥¤¥ë¤È¡¢¤½¤Î¥á¥¤¥ó¡¦¥Õ¥¡¥¤¥ë¤¬°Í¸¤·¤Æ¤¤¤ë¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¡¢¥Ñ¥Ã¥±¡¼¥¸°ÌÃÖ¾ðÊó¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¥á¥¤¥ó¡¦¥Õ¥¡¥¤¥ë¤¬°Í¸¤·¤Æ¤¤¤ëJAR¥Õ¥¡¥¤¥ë¤Ï¡¢JAR¥á¥¤¥ó¡¦¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Î\f2Class\-Path\fP°À­¤Ë»ØÄꤷ¤Æ¤ª¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar i main.jar
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2INDEX.LIST\fP¥Õ¥¡¥¤¥ë¤¬\f2main.jar\fP¤Î\f2META\-INF\fP¥Ç¥£¥ì¥¯¥È¥êÆâ¤ËÁÞÆþ¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Ï¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë¾ðÊó¤ò»ÈÍѤ·¤Æ¡¢¸úΨŪ¤Ë¥¯¥é¥¹¤ò¥í¡¼¥É¤·¤Þ¤¹¡£¥¤¥ó¥Ç¥Ã¥¯¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë°ÌÃÖ¾ðÊó¤ò³ÊǼ¤¹¤ëÊýË¡¤Î¾ÜºÙ¤Ï¡¢\f2JarIndex\fP»ÅÍͤò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++¥Ç¥£¥ì¥¯¥È¥ê¤ò¥³¥Ô¡¼¤¹¤ë¤Ë¤Ï¡¢¤Þ¤º\f2dir1\fPÆâ¤Î¥Õ¥¡¥¤¥ë¤ò°µ½Ì¤·¤Æ\f2stdout\fP¤Ë½ÐÎϤ·¡¢Â³¤¤¤Æ\f2stdin\fP¤«¤éÃê½Ð¤·¤Æ\f2dir2\fP¤Ë½ÐÎϤ·¤Þ¤¹(\f2\-f\fP¥ª¥×¥·¥ç¥ó¤Ï¤É¤Á¤é¤Î\f2jar\fP¥³¥Þ¥ó¥É¤Ç¤â¾Êά¤·¤Þ¤¹)¡£
++.LP
++.nf
++\f3
++.fl
++% (cd dir1; jar c .) | (cd dir2; jar x)
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2jar\fP¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤äJAR¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤òÁàºî¤¹¤ë¥µ¥ó¥×¥ë¡¦¥³¥Þ¥ó¥É¤ò³Îǧ¤¹¤ë¤Ë¤Ï¡¢¼¡¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤Þ¤¿¡¢
++.na
++\f2Java¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/deployment/jar/¤ÎJAR¥È¥é¥¤¥¢¥ë¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++c
++\f2jarfile\fP¤È¤¤¤¦Ì¾Á°¤Î¿·¤·¤¤¥¢¡¼¥«¥¤¥Ö¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë(\f2f\fP¤¬»ØÄꤵ¤ì¤¿¾ì¹ç)¤«¡¢É¸½à½ÐÎϤ˽ÐÎϤ·¤Þ¤¹(\f2f\fP¤È\f2jarfile\fP¤¬¾Êά¤µ¤ì¤¿¾ì¹ç)¡£\f2inputfiles\fP¤Ç»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤ò¡¢¤³¤Î¥¢¡¼¥«¥¤¥Ö¤ËÄɲä·¤Þ¤¹¡£
++.TP 3
++u
++\f2inputfiles\fP¤Ë»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤òÄɲ䷤ơ¢´û¸¥Õ¥¡¥¤¥ë\f2jarfile\fP¤ò¹¹¿·¤·¤Þ¤¹(\f2f\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç)¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar uf foo.jar foo.class
++.fl
++\fP
++.fi
++¾å¤Î¥³¥Þ¥ó¥É¤Ï¡¢¥Õ¥¡¥¤¥ë\f2foo.class\fP¤ò´û¸¤ÎJAR¥Õ¥¡¥¤¥ë\f2foo.jar\fP¤ËÄɲä·¤Þ¤¹¡£¼¡¤ÎÎã¤Ë¼¨¤¹¤è¤¦¤Ë¡¢\f2\-u\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥¨¥ó¥È¥ê¤â¹¹¿·¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar umf manifest foo.jar
++.fl
++\fP
++.fi
++¾å¤Î¥³¥Þ¥ó¥É¤Ï¡¢\f2foo.jar\fP¥Þ¥Ë¥Õ¥§¥¹¥È¤ò\f2manifest\fPÆâ¤Î\f2name : value\fP¤Î¥Ú¥¢¤Ç¹¹¿·¤·¤Þ¤¹¡£
++.TP 3
++x
++\f2jarfile\fP¤«¤é¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤òÃê½Ð¤·¤Þ¤¹(\f2f\fP¤¬»ØÄꤵ¤ì¤¿¾ì¹ç)¡¢¤Þ¤¿¤Ïɸ½àÆþÎϤ«¤é¥Õ¥¡¥¤¥ë¤ä¥Ç¥£¥ì¥¯¥È¥ê¤òÃê½Ð¤·¤Þ¤¹(\f2f\fP¤È\f2jarfile\fP¤¬¾Êά¤µ¤ì¤¿¾ì¹ç)¡£\f2inputfiles\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤Î¤ß¤¬Ãê½Ð¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤¬Ãê½Ð¤µ¤ì¤Þ¤¹¡£Ãê½Ð¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ÎÆü»þ¤Ï¡¢¥¢¡¼¥«¥¤¥ÖÆâ¤ÇÀßÄꤵ¤ì¤¿¤â¤Î¤Ç¤¹¡£
++.TP 3
++t
++\f2jarfile\fP¤«¤éÌܼ¡¤òɽ¼¨¤·¤Þ¤¹(\f2f\fP¤¬»ØÄꤵ¤ì¤¿¾ì¹ç)¡¢¤Þ¤¿¤Ïɸ½àÆþÎϤ«¤éÌܼ¡¤òɽ¼¨¤·¤Þ¤¹(\f2f\fP¤È\f2jarfile\fP¤¬¾Êά¤µ¤ì¤¿¾ì¹ç)¡£\f2inputfiles\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤Î¤ß¤¬°ìÍ÷ɽ¼¨¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤¬°ìÍ÷ɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++i
++»ØÄꤵ¤ì¤¿\f2jarfile\fP¤È¡¢¤½¤ì¤Ë°Í¸¤¹¤ëJAR¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¡¢¥¤¥ó¥Ç¥Ã¥¯¥¹¾ðÊó¤òÀ¸À®¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar i foo.jar
++.fl
++\fP
++.fi
++.LP
++¾å¤Î¥³¥Þ¥ó¥É¤Ï¡¢\f2foo.jar\fPÆâ¤Ë\f2INDEX.LIST\fP¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢\f2foo.jar\fP¡¢¤ª¤è¤Ó\f2foo.jar\fP¤Î\f2Class\-Path\fP°À­¤Ë»ØÄꤵ¤ì¤¿¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤ËÆþ¤Ã¤Æ¤¤¤ë³Æ¥Ñ¥Ã¥±¡¼¥¸¤Î°ÌÃÖ¾ðÊ󤬳ÊǼ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥¤¥ó¥Ç¥Ã¥¯¥¹¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++f
++ºîÀ®(\f2c\fP)¡¢¹¹¿·(\f2u\fP)¡¢Ãê½Ð(\f2x\fP)¡¢¥¤¥ó¥Ç¥Ã¥¯¥¹ÄɲÃ(\f2i\fP)¤Þ¤¿¤Ïɽ¼¨(\f2t\fP)¤Î³Æ½èÍý¤ÎÂоݤȤʤë¥Õ¥¡¥¤¥ë\f2jarfile\fP¤ò»ØÄꤷ¤Þ¤¹¡£\f2f\fP¥ª¥×¥·¥ç¥ó¤È¥Õ¥¡¥¤¥ë̾\f2jarfile\fP¤È¤¬¥Ú¥¢¤Ë¤Ê¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢ÊÒÊý¤òµ­½Ò¤¹¤ì¤Ð¡¢¤â¤¦°ìÊý¤âµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2f\fP¤È\f2jarfile\fP¤ò¾Êά¤¹¤ë¤È¡¢\f2stdin\fP¤«¤éJAR¥Õ¥¡¥¤¥ë̾¤¬¼èÆÀ¤µ¤ì¤ë(x¤ª¤è¤Ót¤Î¾ì¹ç)¤«¡¢\f2stdout\fP¤ËJAR¥Õ¥¡¥¤¥ë¤¬½ÐÎϤµ¤ì¤Þ¤¹(c¤ª¤è¤Óu¤Î¾ì¹ç)¡£
++.TP 3
++v
++¾ÜºÙ¤Ê½ÐÎϤòɸ½à½ÐÎϤËÀ¸À®¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.TP 3
++0
++(¥¼¥í)ZIP¤Ë¤è¤ë°µ½Ì¤ò»ÈÍѤ»¤º¤Ë¡¢Êݸ¤·¤Þ¤¹¡£
++.TP 3
++M
++¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¡¦¥¨¥ó¥È¥ê¤òºîÀ®¤·¤Þ¤»¤ó(c¤ª¤è¤Óu¤Î¾ì¹ç)¡£¤Þ¤¿¤Ï¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¡¦¥¨¥ó¥È¥ê¤¬Â¸ºß¤¹¤ë¾ì¹ç¤Ïºï½ü¤·¤Þ¤¹(u¤Î¾ì¹ç)¡£
++.TP 3
++m
++\f2META\-INF/MANIFEST.MF\fP¤Î¥Õ¥¡¥¤¥ë¤Ç»ØÄꤷ¤¿¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë\f2manifest\fP¤Î\f2name : value\fP¤Î°À­¥Ú¥¢¤òÁȤ߹þ¤ß¤Þ¤¹¡£\f2jar\fP¤Ï¡¢¤¹¤Ç¤ËƱ¤¸Ì¾Á°¤Ç¸ºß¤·¤Ê¤¤¾ì¹ç¤Ï¡¢¤½¤Î\f2name\ :\ value\fP¥Ú¥¢¤òÄɲä·¤Þ¤¹¡£Æ±¤¸Ì¾Á°¤Ç¸ºß¤¹¤ë¾ì¹ç¡¢\f2jar\fP¤Ï¤½¤ÎÃͤò¹¹¿·¤·¤Þ¤¹¡£
++.br
++.br
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¡¢\f3m\fP¤È\f3f\fP¤Îʸ»ú¤Ï¡¢\f2manifest\fP¤È\f2jarfile\fP¤ÎÆþÎϽç½ø¤ÈƱ¤¸½ç½ø¤Çµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar cmf myManifestFile myFile.jar *.class
++.fl
++\fP
++.fi
++¥Ç¥Õ¥©¥ë¥È¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë¤Ï´Þ¤Þ¤ì¤Ê¤¤¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë¡¢ÆÃÊ̤ÊÌÜŪ¤Î\f2name\ :\ value\fP¤Î°À­¥Ú¥¢¤òÄɲäǤ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥Ù¥ó¥À¡¼¾ðÊ󡢥С¼¥¸¥ç¥ó¾ðÊ󡢥ѥ屡¼¥¸¡¦¥·¡¼¥ê¥ó¥°¡¢¤Þ¤¿¤ÏJAR¤Ë¥Ð¥ó¥É¥ë¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô²Äǽ¤Ë¤¹¤ë¤¿¤á¤Î°À­¤òÄɲäǤ­¤Þ¤¹¡£\f4\-m\fP¥ª¥×¥·¥ç¥ó¤Î»ÈÍÑÎã¤Ï¡¢Java¥Á¥å¡¼¥È¥ê¥¢¥ë¤Î
++.na
++\f2JAR¥Õ¥¡¥¤¥ë¤Ç¤Î¥×¥í¥°¥é¥à¤Î¥Ñ¥Ã¥±¡¼¥¸²½\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/deployment/jar/¤Î¥ì¥Ã¥¹¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++e
++¼Â¹Ô²ÄǽJAR¥Õ¥¡¥¤¥ëÆâ¤Ë¥Ð¥ó¥É¥ë¤µ¤ì¤¿¥¹¥¿¥ó¥É¥¢¥í¥ó¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥¨¥ó¥È¥ê¡¦¥Ý¥¤¥ó¥È¤È¤·¤Æ¡¢\f2entrypoint\fP¤òÀßÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤Î\f2Main\-Class\fP°À­Ãͤ¬ºîÀ®¤Þ¤¿¤Ï¾å½ñ¤­¤µ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤ÎºîÀ®Ãæ¤Þ¤¿¤Ï¹¹¿·Ãæ¤Ë»ÈÍѤǤ­¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ì¤Ð¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤Þ¤¿¤ÏºîÀ®¤¹¤ë¤³¤È¤Ê¤·¤Ë¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¨¥ó¥È¥ê¡¦¥Ý¥¤¥ó¥È¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¤Ç¤Ï\f2Main.jar\fP¤¬ºîÀ®¤µ¤ì¤Þ¤¹¤¬¡¢¤½¤ÎºÝ¡¢¥Þ¥Ë¥Õ¥§¥¹¥ÈÆâ¤Î\f2Main\-Class\fP°À­ÃͤÏ\f2Main\fP¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar cfe Main.jar Main Main.class
++.fl
++\fP
++.fi
++¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤Èjava¥é¥ó¥¿¥¤¥à¤«¤éľÀܤ³¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òµ¯Æ°¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++java \-jar Main.jar
++.fl
++\fP
++.fi
++¤¢¤ë¥Ñ¥Ã¥±¡¼¥¸Æâ¤Ë¥¨¥ó¥È¥ê¡¦¥Ý¥¤¥ó¥È¤Î¥¯¥é¥¹Ì¾¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥É¥Ã¥È(¡Ö.¡×)¡¢¥¹¥é¥Ã¥·¥å(¡Ö/¡×)¤Î¤¤¤º¤ì¤«¤Îʸ»ú¤ò¤½¤Î¶èÀÚ¤êʸ»ú¤È¤·¤Æ»ÈÍѤǤ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2Main.class\fP¤¬\f2foo\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¨¥ó¥È¥ê¡¦¥Ý¥¤¥ó¥È¤Ï¼¡¤Î¤è¤¦¤Ë¤·¤Æ»ØÄê¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar \-cfe Main.jar foo/Main foo/Main.class
++.fl
++\fP
++.fi
++¤Þ¤¿¤Ï
++.nf
++\f3
++.fl
++jar \-cfe Main.jar foo.Main foo/Main.class
++.fl
++\fP
++.fi
++\f3Ãí°Õ:\fP \f2\-m\fP¥ª¥×¥·¥ç¥ó¤È\f2\-e\fP¥ª¥×¥·¥ç¥ó¤ÎξÊý¤òƱ»þ¤Ë»ØÄꤷ¤¿¾ì¹ç¡¢»ØÄꤷ¤¿¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë¤â\f2Main\-Class\fP°À­¤¬´Þ¤Þ¤ì¤Æ¤¤¤ì¤Ð¡¢\f2Main.class\fP¤Î»ØÄ꤬¤¢¤¤¤Þ¤¤¤Ë¤Ê¤Ã¤Æ¥¨¥é¡¼¤äȯÀ¸¤·¡¢JAR¤ÎºîÀ®½èÍý¤ä¹¹¿·½èÍý¤¬°Û¾ï½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-C\ dir
++\f2jar\fP¥³¥Þ¥ó¥É¤Î¼Â¹ÔÃæ¤Ë¸å³¤Î\f2inputfiles\fP°ú¿ô¤ò½èÍý¤¹¤ë¤È¤­¤Ë¡¢°ì»þŪ¤Ë¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤·¤Þ¤¹(\f2cd\fP\ \f2dir\fP)¡£¤³¤Î½èÍý¤Ï¡¢UNIX¤Î\f2tar\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Î\f2\-C\fP¥ª¥×¥·¥ç¥ó¤Îµ¡Ç½¤ËÎà»÷¤·¤Æ¤¤¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢\f2classes\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ë°ÜÆ°¤·¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é\f2bar.class\fP¤ò\f2foo.jar\fP¤ËÄɲä·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar uf foo.jar \-C classes bar.class
++.fl
++\fP
++.fi
++¼¡¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¡¢\f2classes\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ë°ÜÆ°¤·¡¢\f2classes\fP¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤ò\f2foo.jar\fP¤ËÄɲä·¤Þ¤¹(jar¥Õ¥¡¥¤¥ë¤Ë¤Ïclasses¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤·¤Þ¤»¤ó)¡£¼¡¤Ë¸µ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÌá¤Ã¤Æ¤«¤é¡¢\f2bin\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ë°ÜÆ°¤·¡¢\f2xyz.class\fP¤ò\f2foo.jar\fP¤ËÄɲä·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jar uf foo.jar \-C classes . \-C bin xyz.class
++.fl
++\fP
++.fi
++\f2classes\fP¤Ë¥Õ¥¡¥¤¥ë\f2bar1\fP¤È\f2bar2\fP¤¬³ÊǼ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ë¡¢\f2jar tf foo.jar\fP»ÈÍѤ·¤¿¤È¤­¤ÎJAR¥Õ¥¡¥¤¥ë¤ÎÃæ¿È¤ò¡¢¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++META\-INF/
++.fl
++META\-INF/MANIFEST.MF
++.fl
++bar1
++.fl
++bar2
++.fl
++xyz.class
++.fl
++\fP
++.fi
++.LP
++.TP 3
++\-Joption
++Java¼Â¹Ô´Ä¶­¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f4\-J\-Xmx48M\fP¤È»ØÄꤹ¤ë¤È¡¢ºÇÂç¥á¥â¥ê¡¼¤¬48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f2\-J\fP¤ò»ÈÍѤ·¤ÆÇظå¤Î¼Â¹Ô´Ä¶­¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë"
++.LP
++jar¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤òû¤¯¤·¤¿¤ê´Ê·é¤Ë¤·¤¿¤ê¤¹¤ë¤¿¤á¤Ë¡¢\f2jar\fP¥³¥Þ¥ó¥É¤ËÂФ¹¤ë°ú¿ô(\f2\-J\fP¥ª¥×¥·¥ç¥ó¤ò½ü¤¯)¤ò´Þ¤à1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢Ç¤°Õ¤ÎŤµ¤Îjar¥³¥Þ¥ó¥É¤òºîÀ®¤Ç¤­¡¢¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¤Ë¤è¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎÀ©¸Â¤«¤é²òÊü¤µ¤ì¤Þ¤¹¡£
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¥ª¥×¥·¥ç¥ó¤È¥Õ¥¡¥¤¥ë̾¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Õ¥¡¥¤¥ëÆâ¤Î³Æ°ú¿ô¤Ï¡¢¥¹¥Ú¡¼¥¹¤Þ¤¿¤Ï²þ¹Ô¤Ç¶èÀÚ¤ê¤Þ¤¹¡£°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸«¤¿ÁêÂХѥ¹¤Ë¤Ê¤ê¤Þ¤¹¡£°ú¿ô¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤«¤é¸«¤¿ÁêÂХѥ¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£Ä̾ï¤Ï¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¡¦¥·¥§¥ë¤Ë¤è¤Ã¤ÆŸ³«¤µ¤ì¤ë¥ï¥¤¥ë¥É¥«¡¼¥É(*)¤ÏŸ³«¤µ¤ì¤Þ¤»¤ó¡£\f2@\fPʸ»ú¤ò»ÈÍѤ·¤Æ¡¢¥Õ¥¡¥¤¥ë¤òºÆµ¢Åª¤Ë²ò¼á¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£\f2\-J\fP¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ïµ¯Æ°¥Ä¡¼¥ë¤ËÅϤµ¤ì¤Þ¤¹¤¬¡¢µ¯Æ°¥Ä¡¼¥ë¤Ç¤Ï°ú¿ô¥Õ¥¡¥¤¥ë¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¤«¤é¤Ç¤¹¡£
++.LP
++.LP
++\f2jar\fP¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢³Æ°ú¿ô¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤È̾Á°¤ÎÀèƬ¤Ë\f2@\fPʸ»ú¤òÉÕ¤±¤ÆÅϤ·¤Þ¤¹¡£\f2jar\fP¤Ï¡¢\f2@\fPʸ»ú¤Ç»Ï¤Þ¤ë°ú¿ô¤ò¸«¤Ä¤±¤ë¤È¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤ÎÆâÍƤòŸ³«¤·¤Æ°ú¿ô¥ê¥¹¥È¤ËÁÞÆþ¤·¤Þ¤¹¡£
++.br
++.br
++¼¡¤ÎÎã¤Ç¡¢\f2classes.list\fP¤Ë¤Ï¡¢\f2find\fP¥³¥Þ¥ó¥É¤Ë¤è¤Ã¤Æ½ÐÎϤµ¤ì¤¿¥Õ¥¡¥¤¥ë¤Î̾Á°¤¬³ÊǼ¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% find \fP\f3.\fP \-name '*.class' \-print > classes.list
++.fl
++.fi
++
++.LP
++.LP
++¼¡¤Ë¡¢°ú¿ô¥Õ¥¡¥¤¥ë¹½Ê¸¤ò»ÈÍѤ·¤Æ\f2Classes.list\fP¤ò\f2jar\fP¤ËÅϤ¹¤³¤È¤Ç¡¢¤½¤Î¥ê¥¹¥È¤ËÂФ·¤Æ\f2jar\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% jar cf my.jar @classes.list
++.fl
++\fP
++.fi
++
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¤¬¡¢ÁêÂХѥ¹¤¬µ­½Ò¤µ¤ì¤¿°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë̾¤Ï¡¢ÅϤµ¤ì¤¿¥Ñ¥¹¤ËÂФ·¤ÆÁêÂÐŪ¤Ç¤Ï¤Ê¤¯¡¢¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤ËÁêÂÐŪ¤È¤Ê¤ê¤Þ¤¹¡£¼¡¤Ï¤½¤ÎÎã¤Ç¤¹¡£
++.nf
++\f3
++.fl
++% jar @path1/classes.list
++.fl
++\fP
++.fi
++
++.LP
++.LP
++
++.LP
++.SH "Îã"
++.LP
++ÆÃÄê¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤ò¥¢¡¼¥«¥¤¥Ö¤ËÄɲ乤ë(¤½¤Î¥¢¡¼¥«¥¤¥Ö¤¬¤¹¤Ç¤Ë¸ºß¤¹¤ë¾ì¹ç¤Ï¡¢¤½¤ÎÆâÍƤò¾å½ñ¤­¤¹¤ë)¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£\f2\-v\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¾ðÊó¤ò¾ÜºÙ¤ËÎóµó¤¹¤ë¤è¤¦¤Ë»ØÄꤹ¤ë¤È¡¢¥µ¥¤¥º¤äºÇ¿·¤Î¹¹¿·Æü¤Ê¤É¡¢¥¢¡¼¥«¥¤¥ÖÆâ¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Î¾ÜºÙ¾ðÊó¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% ls
++.fl
++1.au Animator.class monkey.jpg
++.fl
++2.au Wave.class spacemusic.au
++.fl
++3.au at_work.gif
++.fl
++
++.fl
++% jar cvf bundle.jar *
++.fl
++added manifest
++.fl
++adding: 1.au(in = 2324) (out= 67)(deflated 97%)
++.fl
++adding: 2.au(in = 6970) (out= 90)(deflated 98%)
++.fl
++adding: 3.au(in = 11616) (out= 108)(deflated 99%)
++.fl
++adding: Animator.class(in = 2266) (out= 66)(deflated 97%)
++.fl
++adding: Wave.class(in = 3778) (out= 81)(deflated 97%)
++.fl
++adding: at_work.gif(in = 6621) (out= 89)(deflated 98%)
++.fl
++adding: monkey.jpg(in = 7667) (out= 91)(deflated 98%)
++.fl
++adding: spacemusic.au(in = 3079) (out= 73)(deflated 97%)
++.fl
++\fP
++.fi
++
++.LP
++¤¹¤Ç¤Ë²èÁü¡¢¥ª¡¼¥Ç¥£¥ª¡¦¥Õ¥¡¥¤¥ë¡¢¤ª¤è¤Ó¥¯¥é¥¹ÍѤΥµ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Ëʬ¤±¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤³¤ì¤é¤òñ°ì¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë·ë¹ç¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% ls \-F
++.fl
++audio/ classes/ images/
++.fl
++
++.fl
++% jar cvf bundle.jar audio classes images
++.fl
++added manifest
++.fl
++adding: audio/(in = 0) (out= 0)(stored 0%)
++.fl
++adding: audio/1.au(in = 2324) (out= 67)(deflated 97%)
++.fl
++adding: audio/2.au(in = 6970) (out= 90)(deflated 98%)
++.fl
++adding: audio/3.au(in = 11616) (out= 108)(deflated 99%)
++.fl
++adding: audio/spacemusic.au(in = 3079) (out= 73)(deflated 97%)
++.fl
++adding: classes/(in = 0) (out= 0)(stored 0%)
++.fl
++adding: classes/Animator.class(in = 2266) (out= 66)(deflated 97%)
++.fl
++adding: classes/Wave.class(in = 3778) (out= 81)(deflated 97%)
++.fl
++adding: images/(in = 0) (out= 0)(stored 0%)
++.fl
++adding: images/monkey.jpg(in = 7667) (out= 91)(deflated 98%)
++.fl
++adding: images/at_work.gif(in = 6621) (out= 89)(deflated 98%)
++.fl
++
++.fl
++% ls \-F
++.fl
++audio/ bundle.jar classes/ images/
++.fl
++\fP
++.fi
++
++.LP
++JAR¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥È¥ê̾¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢\f2t\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% jar tf bundle.jar
++.fl
++META\-INF/
++.fl
++META\-INF/MANIFEST.MF
++.fl
++audio/1.au
++.fl
++audio/2.au
++.fl
++audio/3.au
++.fl
++audio/spacemusic.au
++.fl
++classes/Animator.class
++.fl
++classes/Wave.class
++.fl
++images/monkey.jpg
++.fl
++images/at_work.gif
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥¯¥é¥¹¡¦¥í¡¼¥É¤ò¹â®¤Ë¤¹¤ë¤¿¤á¤Ë¥¤¥ó¥Ç¥Ã¥¯¥¹¡¦¥Õ¥¡¥¤¥ë¤òJAR¥Õ¥¡¥¤¥ë¤ËÄɲ乤ë¤Ë¤Ï¡¢\f2i\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++Îã:
++.br
++
++.LP
++¤¿¤È¤¨¤Ð¡¢³ô¼è°ú¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÎÁê¸ß°Í¸¤·¤Æ¤¤¤ë¥¯¥é¥¹¤ò¡¢\f2main.jar\fP¡¢\f2buy.jar\fP¤ª¤è¤Ó\f2sell.jar\fP¤È¤¤¤¦3¤Ä¤ÎJAR¥Õ¥¡¥¤¥ë¤Ëʬ³ä¤·¤¿¤È¤·¤Þ¤¹¡£
++.br
++
++.LP
++.br
++
++.LP
++\f2main.jar\fP¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Î\f2Class\-path\fP°À­¤Ë¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤¿¾ì¹ç¡¢
++.nf
++\f3
++.fl
++Class\-Path: buy.jar sell.jar
++.fl
++\fP
++.fi
++
++.LP
++\f2\-i\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ì¤Ð¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¤ÎÆɹþ¤ß¤ò¹â®²½¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% jar i main.jar
++.fl
++\fP
++.fi
++
++.LP
++\f2INDEX.LIST\fP¥Õ¥¡¥¤¥ë¤¬\f2META\-INF\fP¥Ç¥£¥ì¥¯¥È¥ê¤ËÁÞÆþ¤µ¤ì¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Ë¤è¤Ã¤Æ¥¯¥é¥¹¤Þ¤¿¤Ï¥ê¥½¡¼¥¹¤Î¸¡º÷¤¬¹Ô¤ï¤ì¤ë¤È¤­¤Ë¡¢Å¬ÀÚ¤Êjar¥Õ¥¡¥¤¥ë¤¬¥À¥¦¥ó¥í¡¼¥É¤µ¤ì¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++.na
++\f2JAR¥Õ¥¡¥¤¥ë¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jarGuide.html
++.LP
++.LP
++.na
++\f2JAR¥Õ¥¡¥¤¥ë¤Î»ÅÍÍ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html
++.LP
++.LP
++.na
++\f2JarIndex¤Î»ÅÍÍ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index
++.LP
++.LP
++.na
++\f2JAR¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/deployment/jar//index.html
++.LP
++.LP
++pack200(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jarsigner.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jarsigner.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,1655 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jarsigner 1 "07 May 2011"
++.TH jarsigner 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jarsigner \- JAR½ð̾¤ª¤è¤Ó¸¡¾Ú¥Ä¡¼¥ë
++.LP
++.LP
++Java ARchive(JAR)¥Õ¥¡¥¤¥ë¤Î½ð̾¤òÀ¸À®¤·¡¢½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Î½ð̾¤ò¸¡¾Ú¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jarsigner\fP [ options ] jar\-file alias
++.fl
++\f3jarsigner\fP \-verify [ options ] jar\-file [alias...]
++.fl
++.fi
++
++.LP
++.LP
++jarsigner¤Î\-verify¥³¥Þ¥ó¥É¤Ç¤Ï¡¢JAR¥Õ¥¡¥¤¥ë̾¤Î¸å¤Ë0¸Ä°Ê¾å¤Î¥­¡¼¥¹¥È¥¢ÊÌ̾¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢ÊÌ̾¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢jarsigner¤Ï¡¢JAR¥Õ¥¡¥¤¥ëÆâ¤Î³Æ½ð̾ÉÕ¤­¥¨¥ó¥Æ¥£¥Æ¥£¤Î¸¡¾Ú¤Ë»ÈÍѤµ¤ì¤ë¾ÚÌÀ½ñ¤¬¡¢¤¤¤º¤ì¤«¤Î¥­¡¼¥¹¥È¥¢ÊÌ̾¤Ë°ìÃפ¹¤ë¤³¤È¤ò¥Á¥§¥Ã¥¯¤·¤Þ¤¹¡£ÊÌ̾¤Ï¡¢\-keystore¤Ç»ØÄꤵ¤ì¤¿¥­¡¼¥¹¥È¥¢Æâ¤Þ¤¿¤Ï¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢Æâ¤ËÄêµÁ¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jarsigner\fP¥Ä¡¼¥ë¤Ï¡¢¼¡¤Î2¤Ä¤ÎÌÜŪ¤Ç»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++1.
++Java ARchive(JAR)¥Õ¥¡¥¤¥ë¤Ë½ð̾¤¹¤ëÌÜŪ
++.TP 3
++2.
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Î½ð̾¤ÈÀ°¹çÀ­¤ò¸¡¾Ú¤¹¤ëÌÜŪ
++.RE
++
++.LP
++.LP
++JARµ¡Ç½¤ò»ÈÍѤ¹¤ë¤È¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¡¢¥¤¥á¡¼¥¸¡¢¥µ¥¦¥ó¥É¤ª¤è¤Ó¤½¤Î¾¤Î¥Ç¥¸¥¿¥ë¡¦¥Ç¡¼¥¿¤òñ°ì¤Î¥Õ¥¡¥¤¥ë¤Ë¥Ñ¥Ã¥±¡¼¥¸²½¤Ç¤­¤ë¤Î¤Ç¡¢¥Õ¥¡¥¤¥ë¤ò¿×®¤«¤ÄÍưפËÇÛÉۤǤ­¤Þ¤¹¡£³«È¯¼Ô¤Ï¡¢jar(1)¤È¤¤¤¦Ì¾Á°¤Î¥Ä¡¼¥ë¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤¹¡£(µ»½ÑŪ¤Ê´ÑÅÀ¤«¤é¸À¤¨¤Ð¡¢¤¹¤Ù¤Æ¤ÎZIP¥Õ¥¡¥¤¥ë¤âJAR¥Õ¥¡¥¤¥ë¤È¤ß¤Ê¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢\f3jar\fP¤Ë¤è¤Ã¤ÆºîÀ®¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¡¢¤Þ¤¿¤Ï\f3jarsigner\fP¤Ë¤è¤Ã¤Æ½èÍý¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢META\-INF/MANIFEST.MF¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£)
++.LP
++.LP
++\f2¥Ç¥¸¥¿¥ë½ð̾\fP¤Ï¡¢¤Ê¤ó¤é¤«¤Î¥Ç¡¼¥¿(¡Ö½ð̾¡×¤ÎÂоݤȤʤë¥Ç¡¼¥¿)¤È¡¢¥¨¥ó¥Æ¥£¥Æ¥£(¿Í¡¢²ñ¼Ò¤Ê¤É)¤ÎÈëÌ©¸°¤È¤Ë´ð¤Å¤¤¤Æ·×»»¤µ¤ì¤ë¥Ó¥Ã¥ÈÎó¤Ç¤¹¡£¼ê½ñ¤­¤Î½ð̾ƱÍÍ¡¢¥Ç¥¸¥¿¥ë½ð̾¤Ë¤Ï¿¤¯¤ÎÍøÅÀ¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++½ð̾¤ÎÀ¸À®¤Ë»ÈÍѤµ¤ì¤¿ÈëÌ©¸°¤ÈÂФˤʤë¸ø³«¸°¤ò»ÈÍѤ·¤Æ·×»»¤ò¹Ô¤¦¤³¤È¤Ç¡¢¥Ç¥¸¥¿¥ë½ð̾¤¬ËÜʪ¤«¤É¤¦¤«¤ò¸¡¾Ú¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++ÈëÌ©¸°¤¬Â¾¿Í¤ËÃΤé¤ì¤Ê¤¤¸Â¤ê¡¢¥Ç¥¸¥¿¥ë½ð̾¤Îµ¶Â¤¤ÏÉÔ²Äǽ¤Ç¤¹¡£
++.TP 2
++o
++¥Ç¥¸¥¿¥ë½ð̾¤Ï¡¢¤½¤Î½ð̾¤¬ÉÕ¤¤¤¿¥Ç¡¼¥¿¤Î¤ß¤òÂоݤȤ¹¤ë¤â¤Î¤Ç¤¢¤ê¡¢Â¾¤Î¥Ç¡¼¥¿¤Î½ð̾¤È¤·¤Æµ¡Ç½¤¹¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.TP 2
++o
++½ð̾ÉÕ¤­¤Î¥Ç¡¼¥¿¤ÏÊѹ¹¤Ç¤­¤Þ¤»¤ó¡£¥Ç¡¼¥¿¤¬Êѹ¹¤µ¤ì¤¿¾ì¹ç¤Ï¡¢¤½¤Î½ð̾¤Ë¤è¤Ã¤Æ¥Ç¡¼¥¿¤¬ËÜʪ¤Ç¤Ï¤Ê¤¤¤³¤È¤¬¸¡¾Ú¤µ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¥¨¥ó¥Æ¥£¥Æ¥£¤Î½ð̾¤òÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¤Þ¤º¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤Ï¡¢¤½¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ë´ØÏ¢¤¹¤ë¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥Ú¥¢¤ò»ý¤ÄɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢¸ø³«¸°¤òǧ¾Ú¤¹¤ë1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î¾ÚÌÀ½ñ¤âɬÍפǤ¹¡£\f2¾ÚÌÀ½ñ\fP¤È¤Ï¡¢¤¢¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤¬È¯¹Ô¤·¤¿¥Ç¥¸¥¿¥ë½ð̾ÉÕ¤­¤Îʸ½ñ¤Ç¡¢Ê̤ʥ¨¥ó¥Æ¥£¥Æ¥£¤Î¸ø³«¸°¤¬ÆÃÄê¤ÎÃͤǤ¢¤ë¤³¤È¤ò¾ÚÌÀ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++\f3jarsigner\fP¤Ï¡¢\f2¥­¡¼¥¹¥È¥¢\fP¤Ë´Þ¤Þ¤ì¤ë¸°¤È¾ÚÌÀ½ñ¾ðÊó¤ò»ÈÍѤ·¤Æ¡¢JAR¥Õ¥¡¥¤¥ë¤Î¥Ç¥¸¥¿¥ë½ð̾¤òÀ¸À®¤·¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Ï¡¢ÈëÌ©¸°¡¢¤ª¤è¤ÓÂбþ¤¹¤ë¸ø³«¸°¤òǧ¾Ú¤¹¤ë¤¿¤á¤ÎX.509¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤¬¼ý¤á¤é¤ì¤¿¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¤¹¡£¥­¡¼¥¹¥È¥¢¤ÎºîÀ®¤È´ÉÍý¤Ë¤Ï¡¢keytool(1)¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++\f3jarsigner\fP¤Ï¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤ÎÈëÌ©¸°¤ò»ÈÍѤ·¤Æ½ð̾¤òÀ¸À®¤·¤Þ¤¹¡£½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥Õ¥¡¥¤¥ë¤Î½ð̾¤Ë»ÈÍѤµ¤ì¤¿ÈëÌ©¸°¤ËÂбþ¤¹¤ë¸ø³«¸°¤ËÂФ¹¤ë¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î¾ÚÌÀ½ñ¤Î¥³¥Ô¡¼¤Ê¤É¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£\f3jarsigner\fP¤Ï¡¢½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ëÆâ(½ð̾¥Ö¥í¥Ã¥¯¡¦¥Õ¥¡¥¤¥ëÆâ)¤Ë¤¢¤ë¾ÚÌÀ½ñ¤ò»ÈÍѤ·¤Æ¤½¤Î¥Õ¥¡¥¤¥ë¤Î¥Ç¥¸¥¿¥ë½ð̾¤ò¸¡¾Ú¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3jarsigner\fP¤Ï¥¿¥¤¥à¥¹¥¿¥ó¥×¤ò´Þ¤à½ð̾¤òÀ¸À®¤¹¤ë¤Î¤Ç¡¢¥·¥¹¥Æ¥à¤ä¥Ç¥×¥í¥¤¥ä(Java Plug\-in¤ò´Þ¤à)¤ÏJAR¥Õ¥¡¥¤¥ë¤¬½ð̾¾ÚÌÀ½ñ¤ÎÍ­¸ú´ü´ÖÃæ¤Ë½ð̾¤µ¤ì¤¿¤«¤É¤¦¤«¤ò¥Á¥§¥Ã¥¯¤Ç¤­¤Þ¤¹¡£¤µ¤é¤Ë¡¢API¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤«¤é¥¿¥¤¥à¥¹¥¿¥ó¥×¾ðÊó¤ò¼èÆÀ¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¸½»þÅÀ¤Ç¤Ï¡¢\f3jarsigner\fP¤Ç½ð̾¤Ç¤­¤ë¤Î¤Ï¡¢SDK¤Îjar(1)¥Ä¡¼¥ë¤ÇºîÀ®¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¡¢¤Þ¤¿¤ÏZIP¥Õ¥¡¥¤¥ë¤Î¤ß¤Ç¤¹¡£(JAR¥Õ¥¡¥¤¥ë¤ÏZIP¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤Ç¤¹¤¬¡¢JAR¥Õ¥¡¥¤¥ë¤Ë¤ÏMETA\-INF/MANIFEST.MF¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Æ¤¤¤ëÅÀ¤¬°Û¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢\f3jarsigner\fP¤¬ZIP¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ë¼«Æ°Åª¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£)
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢\f3jarsigner\fP¤ÏJAR(¤Þ¤¿¤ÏZIP)¥Õ¥¡¥¤¥ë¤Ë\f2½ð̾¤·¤Þ¤¹\fP¡£½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤ò\f2¸¡¾Ú\fP¤¹¤ë¾ì¹ç¤Ï¡¢\f2\-verify\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤ÎÊÌ̾
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤Ï¡¢°ì°Õ¤Î\f2ÊÌ̾\fP¤ò²ð¤·¤Æ¥¢¥¯¥»¥¹¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3jarsigner\fP¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ï¡¢½ð̾¤ÎÀ¸À®¤ËɬÍפÊÈëÌ©¸°¤ò´Þ¤à¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ÎÊÌ̾¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤ÎÎã¤Ï¡¢working¥Ç¥£¥ì¥¯¥È¥ê¤Îmystore¤È¤¤¤¦Ì¾Á°¤Î¥­¡¼¥¹¥È¥¢¤Ë´Þ¤Þ¤ì¤ëÊÌ̾duke¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿ÈëÌ©¸°¤ò»ÈÍѤ·¤Æ¡¢MyJARFile.jar¤È¤¤¤¦Ì¾Á°¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤Þ¤¹¡£½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ï»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤Î¤Ç¡¢MyJARFile.jar¤Ï½ð̾ÉÕ¤­¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¤è¤Ã¤Æ¾å½ñ¤­¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-keystore /working/mystore \-storepass \fP\f4<keystore password>\fP\f3
++.fl
++ \-keypass \fP\f4<private key password>\fP\f3 MyJARFile.jar duke
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÇÊݸ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤¤¤È¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£Æ±Íͤˡ¢ÈëÌ©¸°¤â¥­¡¼¥¹¥È¥¢Æâ¤Ç¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Æ¤¤¤ë¤¿¤á¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÇÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¤Þ¤¿¤Ï»ØÄꤷ¤¿¥Ñ¥¹¥ï¡¼¥È¤¬Êݸ¤µ¤ì¤Æ¤¤¤ë¥Ñ¥¹¥ï¡¼¥É¤È°ã¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ë¤Ï¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤Î¾ì½ê
++.LP
++.LP
++\f3jarsigner\fP¤Ë¤Ï¡¢»ÈÍѤ¹¤ë¥­¡¼¥¹¥È¥¢¤ÎURL¤ò»ØÄꤹ¤ë\f2\-keystore\fP¥ª¥×¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç¡¢\f2user.home\fP¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤Ç·è¤Þ¤ë¥æ¡¼¥¶¡¼¤Î¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Î\f2.keystore\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ëÆâ¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£Solaris¥·¥¹¥Æ¥à¤Î¾ì¹ç¡¢\f2user.home\fP¤Î¥Ç¥Õ¥©¥ë¥È¤Ï¥æ¡¼¥¶¡¼¤Îhome¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2\-keystore\fP¥ª¥×¥·¥ç¥ó¤«¤é¤ÎÆþÎÏ¥¹¥È¥ê¡¼¥à¤Ï¡¢\f2KeyStore.load\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤Þ¤¹¡£URL¤È¤·¤Æ\f2NONE\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢null¤Î¥¹¥È¥ê¡¼¥à¤¬\f2KeyStore.load\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤Þ¤¹¡£\f2NONE\fP¤Ï¡¢\f2KeyStore\fP¤¬¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹¤Ç¤Ï¤Ê¤¤¾ì¹ç¡¢¤¿¤È¤¨¤Ð¡¢¥Ï¡¼¥É¥¦¥§¥¢¡¦¥È¡¼¥¯¥ó¡¦¥Ç¥Ð¥¤¥¹¾å¤Ë¸ºß¤·¤Æ¤¤¤ë¾ì¹ç¤Ê¤É¤Ë»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ
++.LP
++.LP
++\f2java.security\fP¥Ñ¥Ã¥±¡¼¥¸¤ÇÄ󶡤µ¤ì¤Æ¤¤¤ë\f2KeyStore\fP¥¯¥é¥¹¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î¾ðÊó¤Ø¤Î¥¢¥¯¥»¥¹¤ª¤è¤Ó¾ðÊó¤ÎÊѹ¹¤ò¹Ô¤¦¤¿¤á¤Î¡¢ÌÀ³Î¤ËÄêµÁ¤µ¤ì¤¿¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ󶡤·¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Î¸ÇÄê¼ÂÁõ¤È¤·¤Æ¤Ï¡¢¤½¤ì¤¾¤ì¤¬ÆÃÄê¤Î\f2¥¿¥¤¥×\fP¤Î¥­¡¼¥¹¥È¥¢¤òÂоݤȤ¹¤ëÊ£¿ô¤Î°Û¤Ê¤ë¼ÂÁõ¤¬Â¸ºß²Äǽ¤Ç¤¹¡£
++.LP
++.LP
++¸½ºß¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ¹¤ë¤â¤Î¤È¤·¤Æ¡¢\f3keytool\fP¤È\f3jarsigner\fP¤Î2¤Ä¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Ä¡¼¥ë¤È¡¢\f3Policy Tool\fP¤È¤¤¤¦Ì¾Á°¤Î1¤Ä¤ÎGUI¥Ù¡¼¥¹¤Î¥Ä¡¼¥ë¤¬¤¢¤ê¤Þ¤¹¡£\f2KeyStore\fP¤Ï¸ø³«¤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢Java 2 SDK¥æ¡¼¥¶¡¼¤ÏKeyStore¤ò»ÈÍѤ¹¤ë¾¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤âºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤Ë¤Ï¡¢Sun Microsystems¤¬Ä󶡤¹¤ëÁȹþ¤ß¤Î¥Ç¥Õ¥©¥ë¥È¤Î¼ÂÁõ¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢JKS¤È¤¤¤¦Ì¾Á°¤ÎÆȼ«¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×(·Á¼°)¤òÍøÍѤ¹¤ë¤â¤Î¤Ç¡¢¥­¡¼¥¹¥È¥¢¤ò¥Õ¥¡¥¤¥ë¤È¤·¤Æ¼ÂÁõ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤Î¼ÂÁõ¤Ç¤Ï¡¢¸Ä¡¹¤ÎÈëÌ©¸°¤Ï¸ÄÊ̤Υѥ¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¡¢¥­¡¼¥¹¥È¥¢Á´ÂΤÎÀ°¹çÀ­¤â(ÈëÌ©¸°¤È¤ÏÊ̤Î)¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤Ï¡¢¥×¥í¥Ð¥¤¥À¥Ù¡¼¥¹¤Ç¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢\f2KeyStore\fP¤Ë¤è¤Ã¤ÆÄ󶡤µ¤ì¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬¡Ö¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡×(SPI)¤Ë´ð¤Å¤¤¤Æ¼ÂÁõ¤µ¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢Âбþ¤¹¤ë\f2KeystoreSpi\fPÃê¾Ý¥¯¥é¥¹(¤³¤ì¤â\f2java.security\fP¥Ñ¥Ã¥±¡¼¥¸¤Ë´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹)¤¬¤¢¤ê¡¢¤³¤Î¥¯¥é¥¹¤¬¡¢¡Ö¥×¥í¥Ð¥¤¥À¡×¤¬¼ÂÁõ¤¹¤ëɬÍפΤ¢¤ëService Provider Interface¤Î¥á¥½¥Ã¥É¤òÄêµÁ¤·¤Æ¤¤¤Þ¤¹¡£(¤³¤³¤Ç¡¢¡Ö¥×¥í¥Ð¥¤¥À¡×¤È¤Ï¡¢Java Security API¤Ë¤è¤Ã¤Æ¥¢¥¯¥»¥¹²Äǽ¤Ê¥µ¡¼¥Ó¥¹¤Î¥µ¥Ö¥»¥Ã¥È¤ËÂФ·¡¢¤½¤Î¸ÇÄê¼ÂÁõ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î½¸¹ç¤Î¤³¤È¤Ç¤¹¡£)¤·¤¿¤¬¤Ã¤Æ¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÄ󶡤¹¤ë¤Ë¤Ï¡¢
++.na
++\f2Java°Å¹æ²½¥¢¡¼¥­¥Æ¥¯¥Á¥ãÍÑ¥×¥í¥Ð¥¤¥À¤Î¼ÂÁõÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html¤ÇÀâÌÀ¤·¤Æ¤¤¤ë¤è¤¦¤Ë¡¢¥¯¥é¥¤¥¢¥ó¥È¤¬¡Ö¥×¥í¥Ð¥¤¥À¡×¤ò¼ÂÁõ¤·¡¢KeystoreSpi¥µ¥Ö¥¯¥é¥¹¤Î¼ÂÁõ¤òÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ç¤Ï¡¢\f2KeyStore\fP¥¯¥é¥¹¤¬Ä󶡤¹¤ëgetInstance¥Õ¥¡¥¯¥È¥ê¡¦¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ë¤³¤È¤Ç¡¢ÍÍ¡¹¤Ê¥×¥í¥Ð¥¤¥À¤«¤é°Û¤Ê¤ë\f2¥¿¥¤¥×\fP¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÁªÂò¤Ç¤­¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤Ï¡¢¥­¡¼¥¹¥È¥¢¾ðÊó¤Î³ÊǼ·Á¼°¤È¥Ç¡¼¥¿·Á¼°¤òÄêµÁ¤¹¤ë¤È¤È¤â¤Ë¡¢¥­¡¼¥¹¥È¥¢Æâ¤ÎÈëÌ©¸°¤È¥­¡¼¥¹¥È¥¢¼«ÂΤÎÀ°¹çÀ­¤òÊݸ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤ë¥¢¥ë¥´¥ê¥º¥à¤òÄêµÁ¤·¤Þ¤¹¡£°Û¤Ê¤ë¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤Ë¤Ï¡¢¸ß´¹À­¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.LP
++.LP
++\f3keytool\fP¤Ï¡¢Ç¤°Õ¤Î¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹¤Î¥­¡¼¥¹¥È¥¢¼ÂÁõ¤ÇÆ°ºî¤·¤Þ¤¹¡£(¤³¤ì¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤éÅϤµ¤ì¤¿¥­¡¼¥¹¥È¥¢¤Î¾ì½ê¤ò¥Õ¥¡¥¤¥ë̾¤È¤·¤Æ°·¤¤¡¢¤³¤ì¤òFileInputStream¤ËÊÑ´¹¤·¤Æ¡¢FileInputStream¤«¤é¥­¡¼¥¹¥È¥¢¤Î¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤¹¡£)°ìÊý¡¢\f3jarsigner\fP¥Ä¡¼¥ë¤È\f3policytool\fP¥Ä¡¼¥ë¤Ï¡¢URL¤Ç»ØÄê²Äǽ¤ÊǤ°Õ¤Î¾ì½ê¤«¤é¥­¡¼¥¹¥È¥¢¤òÆɤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3jarsigner\fP¤È\f3keytool\fP¤Î¾ì¹ç¡¢\f2\-storetype\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\f3Policy Tool\fP¤Î¾ì¹ç¤Ï¡¢¡ÖEdit¡×¥á¥Ë¥å¡¼¤Î¡ÖChange Keystore¡×¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¥æ¡¼¥¶¡¼¤¬¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤òÌÀ¼¨Åª¤Ë»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢Ã±½ã¤Ë¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤Ç»ØÄꤵ¤ì¤¿\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤ˴ð¤Å¤¤¤Æ¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤¬ÁªÂò¤µ¤ì¤Þ¤¹¡£¤³¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤Ï\f2java.security\fP¤È¸Æ¤Ð¤ì¡¢SDK¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Ç¥£¥ì¥¯¥È¥ê\f2java.home\fP/lib/securityÆâ¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹¡£¤³¤³¤Ç¡¢\f2java.home\fP¤Ï¼Â¹Ô»þ´Ä¶­¤Î¥Ç¥£¥ì¥¯¥È¥ê(SDK¤Î\f2jre\fP¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤ÏJava 2 Runtime Environment¤Î¥È¥Ã¥×¥ì¥Ù¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê)¤Ç¤¹¡£
++.LP
++.LP
++³Æ¥Ä¡¼¥ë¤Ï¡¢\f2keystore.type\fP¤ÎÃͤò¼èÆÀ¤·¡¢¤³¤ÎÃͤǻØÄꤵ¤ì¤¿¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤ò¼ÂÁõ¤·¤Æ¤¤¤ë¥×¥í¥Ð¥¤¥À¤¬¸«¤Ä¤«¤ë¤Þ¤Ç¡¢¸½ºß¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥×¥í¥Ð¥¤¥À¤òÄ´¤Ù¤Þ¤¹¡£ÌÜŪ¤Î¥×¥í¥Ð¥¤¥À¤¬¸«¤Ä¤«¤ë¤È¡¢¤½¤Î¥×¥í¥Ð¥¤¥À¤«¤é¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++\f2KeyStore\fP¥¯¥é¥¹¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤ëstatic¥á¥½¥Ã¥É\f2getDefaultType\fP¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ä¥¢¥×¥ì¥Ã¥È¤«¤é\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤò¼èÆÀ¤Ç¤­¤Þ¤¹¡£¼¡¤Î¥³¡¼¥É¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×(\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤Ç»ØÄꤵ¤ì¤¿¥¿¥¤¥×)¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤òÀ¸À®¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×¤Ïjks(Sun¤¬Ä󶡤¹¤ëÆȼ«¤Î¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ)¤Ç¤¹¡£¤³¤ì¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¼¡¤Î¹Ô¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keystore.type=jks
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Ãí°Õ: ¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤Î»ØÄê¤Ç¤Ï¡¢Âçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢JKS¤Èjks¤ÏƱ¤¸¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.LP
++.LP
++³Æ¥Ä¡¼¥ë¤Ç¥Ç¥Õ¥©¥ë¥È°Ê³°¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¾å¤Î¹Ô¤òÊѹ¹¤·¤ÆÊ̤Υ­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢pkcs12¤È¸Æ¤Ð¤ì¤ë¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÄ󶡤·¤Æ¤¤¤ë¥×¥í¥Ð¥¤¥À¡¦¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¾å¤Î¹Ô¤ò¼¡¤Î¤è¤¦¤ËÊѹ¹¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keystore.type=pkcs12
++.fl
++\fP
++.fi
++
++.LP
++.LP
++PKCS#11¥×¥í¥Ð¥¤¥À¡¦¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Î¾ÜºÙ¤Ï¡¢Java PKCS#11¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥¬¥¤¥É¤Ë¤¢¤ë
++.na
++\f2KeyTool¤ÈJarSigner\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#KeyToolJarSigner¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++¥µ¥Ý¡¼¥È¤µ¤ì¤ë¥¢¥ë¥´¥ê¥º¥à
++.LP
++.LP
++\f3jarsigner\fP¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç¡¢¼¡¤Î¤¤¤º¤ì¤«¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++SHA1¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤¿DSA(¥Ç¥¸¥¿¥ë½ð̾¥¢¥ë¥´¥ê¥º¥à)
++.TP 2
++o
++SHA256¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤¿RSA¥¢¥ë¥´¥ê¥º¥à
++.TP 2
++o
++SHA256¤ÈECDSA(Âʱ߶ÊÀþ¥Ç¥¸¥¿¥ë½ð̾¥¢¥ë¥´¥ê¥º¥à)¤ò»ÈÍѤ·¤¿EC(Âʱ߶ÊÀþ)°Å¹æÊý¼°¥¢¥ë¥´¥ê¥º¥à
++.RE
++
++.LP
++.LP
++¶ñÂÎŪ¤Ë¤Ï¡¢½ð̾¼Ô¤Î¸ø³«¸°¤ÈÈëÌ©¸°¤¬DSA¸°¤Ç¤¢¤ë¾ì¹ç¡¢\f3jarsigner\fP¤ÏSHA1withDSA¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤Þ¤¹¡£½ð̾¼Ô¤Î¸°¤¬RSA¸°¤Ç¤¢¤ë¾ì¹ç¡¢\f3jarsigner\fP¤ÏSHA256withRSA¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤Þ¤¹¡£½ð̾¼Ô¤Î¸°¤¬EC¸°¤Ç¤¢¤ë¾ì¹ç¡¢\f3jarsigner\fP¤ÏSHA256withECDSA¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤Þ¤¹¡£
++.LP
++.LP
++¤³¤ì¤é¤Î¥Ç¥Õ¥©¥ë¥È¤Î½ð̾¥¢¥ë¥´¥ê¥º¥à¤Ï¡¢\f2\-sigalg\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ç¤­¤Þ¤¹¡£
++.LP
++.SS
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë
++.LP
++.LP
++\f3jarsigner\fP¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤¿¾ì¹ç¡¢½ÐÎϤµ¤ì¤ë½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤ÏÆþÎÏJAR¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤Ç¤¹¤¬¡¢¼¡¤Î2¤Ä¤ÎÄɲåե¡¥¤¥ë¤¬META\-INF¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤«¤ì¤ëÅÀ¤¬°Û¤Ê¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++.SF³ÈÄ¥»Ò¤ÎÉÕ¤¤¤¿½ð̾¥Õ¥¡¥¤¥ë
++.TP 2
++o
++.DSA¡¢.RSA¤Þ¤¿¤Ï.EC¤ò³ÈÄ¥»Ò¤ÎÉÕ¤¤¤¿½ð̾¥Ö¥í¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë
++.RE
++
++.LP
++.LP
++¤³¤ì¤é2¤Ä¤Î¥Õ¥¡¥¤¥ë¤Î¥Ù¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Ï¡¢\f2\-sigFile\fP¥ª¥×¥·¥ç¥ó¤ÎÃͤ«¤éºîÀ®¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¤È¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\-sigFile MKSIGN
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¾ì¹ç¡¢¥Õ¥¡¥¤¥ë̾¤Ï¤½¤ì¤¾¤ìMKSIGN.SF¤ÈMKSIGN.DSA¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-sigfile\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¡¢.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î¥Ù¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤵ¤ì¤¿ÊÌ̾¤ÎÀèƬ¤Î8ʸ»ú¤ò¤¹¤Ù¤ÆÂçʸ»ú¤ËÊÑ´¹¤·¤¿¤â¤Î¤Ë¤Ê¤ê¤Þ¤¹¡£ÊÌ̾¤¬8ʸ»ṳ́Ëþ¤Î¾ì¹ç¤Ï¡¢ÊÌ̾¤¬¤½¤Î¤Þ¤Þ»ÈÍѤµ¤ì¤Þ¤¹¡£ÊÌ̾¤ÎÃæ¤Ë¡¢½ð̾¥Õ¥¡¥¤¥ë̾¤Ë»ÈÍѤǤ­¤Ê¤¤Ê¸»ú¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢³ºÅö¤¹¤ëʸ»ú¤ò²¼Àþ(_)¤ËÃÖ¤­´¹¤¨¤Æ¥Õ¥¡¥¤¥ë̾¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£»ÈÍѤǤ­¤ëʸ»ú¤Ï¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È¡¢¿ô»ú¡¢²¼Àþ(_)¡¢¥Ï¥¤¥Õ¥ó¤Ç¤¹¡£
++.LP
++\f3½ð̾(.SF)¥Õ¥¡¥¤¥ë\fP
++.LP
++.LP
++½ð̾¥Õ¥¡¥¤¥ë(.SF¥Õ¥¡¥¤¥ë)¤Ï¡¢\f3jarsigner\fP¤Ç½ð̾¤òÉÕ¤±¤¿JAR¥Õ¥¡¥¤¥ë¤Ë¾ï¤Ë´Þ¤Þ¤ì¤ë¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤È»÷¤Æ¤¤¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëƱÍÍ¡¢.SF¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤´¤È¤Ë¡¢¼¡¤Î3¤Ä¤Î¹Ô¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¥Õ¥¡¥¤¥ë̾
++.TP 2
++o
++»ÈÍѤµ¤ì¤Æ¤¤¤ë¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à(SHA)¤Î̾Á°
++.TP 2
++o
++SHA¥À¥¤¥¸¥§¥¹¥È¤ÎÃÍ
++.RE
++
++.LP
++.LP
++¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎSHA¥À¥¤¥¸¥§¥¹¥È¤ÎÃͤϡ¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥Ð¥¤¥Ê¥ê¡¦¥Ç¡¼¥¿¤Î¥À¥¤¥¸¥§¥¹¥È(¥Ï¥Ã¥·¥å)¤Ë¤Ê¤ê¤Þ¤¹¡£°ìÊý¡¢.SF¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥À¥¤¥¸¥§¥¹¥È¤ÎÃͤϡ¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¤³¤ì¤é3¹Ô¤Î¥Ï¥Ã¥·¥å¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++½ð̾¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÁ´ÂΤΥϥ工夬³ÊǼ¤µ¤ì¤¿¥Ø¥Ã¥À¡¼¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ÇÀâÌÀ¤¹¤ë¤è¤¦¤Ë¡¢¤³¤Î¥Ø¥Ã¥À¡¼¤Î¸ºß¤Ë¤è¤Ã¤Æ¸¡¾Ú¤ÎºÇŬ²½¤¬²Äǽ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
++.LP
++\f3½ð̾¥Ö¥í¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë\fP
++.LP
++.SF¥Õ¥¡¥¤¥ë¤Ë¤Ï½ð̾¤¬ÉÕ¤±¤é¤ì¡¢½ð̾¤Ï½ð̾¥Ö¥í¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë¤ËÃÖ¤«¤ì¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥­¡¼¥¹¥È¥¢¤«¤é¤Î¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤âÉä¹æ²½¤µ¤ì¤¿·Á¤Ç´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ï¡¢½ð̾¤Ë»ÈÍѤµ¤ì¤¿ÈëÌ©¸°¤ËÂбþ¤¹¤ë¸ø³«¸°¤òǧ¾Ú¤·¤Þ¤¹¡£¥Õ¥¡¥¤¥ë¤Î³ÈÄ¥»Ò¤Ï¡¢»ÈÍѤµ¤ì¤ë¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à¤Ë±þ¤¸¤Æ.DSA¡¢.RSA¡¢.EC¤Î¤¤¤º¤ì¤«¤Ë¤Ê¤ê¤Þ¤¹¡£
++.SS
++½ð̾¥¿¥¤¥à¥¹¥¿¥ó¥×
++.LP
++.LP
++\f2jarsigner\fP¥Ä¡¼¥ë¤Ç¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î½ð̾»þ¤Ë½ð̾¥¿¥¤¥à¥¹¥¿¥ó¥×¤òÀ¸À®¤·¤ÆÊݸ¤Ç¤­¤Þ¤¹¡£¤µ¤é¤Ë¡¢\f2jarsigner\fP¤ÏÂåÂؽð̾µ¡¹½¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£¤³¤ÎÆ°ºî¤Ï¾Êά²Äǽ¤Ç¡¢½ð̾»þ¤Ë¼¡¤Î³Æ¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤ÆÀ©¸æ¤µ¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f2\-tsa url\fP
++.TP 2
++o
++\f2\-tsacert alias\fP
++.TP 2
++o
++\f2\-altsigner class\fP
++.TP 2
++o
++\f2\-altsignerpath classpathlist\fP
++.RE
++
++.LP
++.LP
++¤³¤ì¤é¤Î³Æ¥ª¥×¥·¥ç¥ó¤Î¾ÜºÙ¤Ï¡¢¥ª¥×¥·¥ç¥ó¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú
++.LP
++.LP
++JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤¬À®¸ù¤¹¤ë¤Î¤Ï¡¢½ð̾¤¬Í­¸ú¤Ç¤¢¤ê¡¢¤«¤Ä½ð̾¤ÎÀ¸À®°Ê¸å¤ËJAR¥Õ¥¡¥¤¥ëÆâ¤Î¤É¤Î¥Õ¥¡¥¤¥ë¤âÊѹ¹¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ç¤¹¡£JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤Ï¡¢¼¡¤Î¼ê½ç¤Ç¹Ô¤ï¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++1.
++.SF¥Õ¥¡¥¤¥ë¼«ÂΤνð̾¤ò¸¡¾Ú¤·¤Þ¤¹¡£
++.br
++.br
++¤³¤Î¼ê½ç¤Ç¤Ï¡¢³Æ½ð̾¥Ö¥í¥Ã¥¯(.DSA)¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë½ð̾¤¬¡¢¼ÂºÝ¤Ë¡¢¸ø³«¸°¤ËÂбþ¤¹¤ëÈëÌ©¸°¤ò»ÈÍѤ·¤ÆÀ¸À®¤µ¤ì¤¿¤â¤Î¤Ç¤¢¤ë¤³¤È¤¬³Îǧ¤µ¤ì¤Þ¤¹¡£.DSA¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¸ø³«¸°¤Î¾ÚÌÀ½ñ(¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó)¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤Þ¤¿¡¢¤³¤Î¼ê½ç¤Ç¤Ï¡¢ÌÜŪ¤Î½ð̾¤¬¡¢Âбþ¤¹¤ë½ð̾(.SF)¥Õ¥¡¥¤¥ëÆâ¤ÎÍ­¸ú¤Ê½ð̾¤Ç¤¢¤ë¤«¤É¤¦¤«¤òÄ´¤Ù¡¢.SF¥Õ¥¡¥¤¥ë¤¬²þÊѤµ¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤â³Îǧ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++2.
++.SF¥Õ¥¡¥¤¥ëÆâ¤Î³Æ¥¨¥ó¥È¥ê¤Î¥À¥¤¥¸¥§¥¹¥È¤ò¥Þ¥Ë¥Õ¥§¥¹¥ÈÆâ¤ÎÂбþ¤¹¤ë³Æ¥»¥¯¥·¥ç¥ó¤ÈÆͤ­¤¢¤ï¤»¤Æ¸¡¾Ú¤·¤Þ¤¹¡£
++.br
++.br
++.SF¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÁ´ÂΤΥϥ工夬³ÊǼ¤µ¤ì¤¿¥Ø¥Ã¥À¡¼¤¬¥Ç¥Õ¥©¥ë¥È¤Ç´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥Ø¥Ã¥À¡¼¤¬Â¸ºß¤¹¤ë¾ì¹ç¤Ï¡¢¥Ø¥Ã¥À¡¼Æâ¤Î¥Ï¥Ã¥·¥å¤¬¼ÂºÝ¤Ë¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥Ï¥Ã¥·¥å¤È°ìÃפ¹¤ë¤«¤É¤¦¤«¤ò¸¡¾Ú¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Ï¥Ã¥·¥å¤¬°ìÃפ¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¼ê½ç¤Ë¸¡¾Ú¤¬¿Ê¤ß¤Þ¤¹¡£
++.br
++.br
++¥Ï¥Ã¥·¥å¤¬°ìÃפ·¤Ê¤¤¾ì¹ç¤Ï¡¢¸úΨŪ¤Ë¤ÏÎô¤ëÊýË¡¤ò»ÈÍѤ·¤¿¸¡¾Ú¤¬É¬Íפˤʤê¤Þ¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢.SF¥Õ¥¡¥¤¥ëÆâ¤Î³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¾ðÊ󥻥¯¥·¥ç¥ó¤Î¥Ï¥Ã¥·¥å¤¬¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤ÎÂбþ¤¹¤ë¥»¥¯¥·¥ç¥ó¤Î¥Ï¥Ã¥·¥å¤È°ìÃפ¹¤ë¤«¤É¤¦¤«¤¬³Îǧ¤µ¤ì¤Þ¤¹(½ð̾(.SF)¥Õ¥¡¥¤¥ë¤ò»²¾È)¡£
++.br
++.br
++.SF¥Õ¥¡¥¤¥ë¤Î¥Ø¥Ã¥À¡¼¤Ë³ÊǼ¤µ¤ì¤¿¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥Ï¥Ã¥·¥å¤È¡¢¼ÂºÝ¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥Ï¥Ã¥·¥å¤È¤¬°ìÃפ·¤Ê¤¤¾ì¹ç¤Ï¡¢½ð̾(¤Ä¤Þ¤ê.SF¥Õ¥¡¥¤¥ë)¤ÎÀ¸À®¸å¤Ë¡¢JAR¥Õ¥¡¥¤¥ë¤Ë1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤¬(\f2jar\fP¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ)Äɲ䵤줿²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£\f2jar\fP¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ¥Õ¥¡¥¤¥ë¤òÄɲä·¤¿¾ì¹ç¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ÏÊѹ¹¤µ¤ì¤Þ¤¹(¿·¤·¤¤¥Õ¥¡¥¤¥ëÍѤΥ»¥¯¥·¥ç¥ó¤¬Äɲ䵤ì¤Þ¤¹)¤¬¡¢.SF¥Õ¥¡¥¤¥ë¤ÏÊѹ¹¤µ¤ì¤Þ¤»¤ó¡£¤³¤Î¾ì¹ç¡¢.SF¥Õ¥¡¥¤¥ë¤Î¥Ø¥Ã¥À¡¼°Ê³°¤Î¥»¥¯¥·¥ç¥ó¤Ë³ÊǼ¤µ¤ì¤¿¥Ï¥Ã¥·¥å¤¬¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤ÎÂбþ¤¹¤ë¥»¥¯¥·¥ç¥ó¤Î¥Ï¥Ã¥·¥å¤È°ìÃפ¹¤ë¤È¤­¤Ï¡¢½ð̾¤ÎÀ¸À®»þ¤ËJAR¥Õ¥¡¥¤¥ëÆâ¤Ë¸ºß¤·¤Æ¤¤¤¿¥Õ¥¡¥¤¥ë¤Î¤¦¤Á¡¢¤É¤Î¥Õ¥¡¥¤¥ë¤âÊѹ¹¤µ¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤Ë¤Ê¤ê¡¢¸¡¾Ú¤ÏÀ®¸ù¤·¤¿¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.TP 3
++3.
++JAR¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë¤Î¤¦¤Á¡¢.SF¥Õ¥¡¥¤¥ëÆâ¤Ë¥¨¥ó¥È¥ê¤ò»ý¤Ä³Æ¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤ß¤Þ¤¹¡£Æɹþ¤ßÃæ¤Ë¥Õ¥¡¥¤¥ë¤Î¥À¥¤¥¸¥§¥¹¥È¤ò·×»»¤·¡¢·ë²Ì¤ò¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥»¥¯¥·¥ç¥óÆâ¤Î³ºÅö¤¹¤ë¥Õ¥¡¥¤¥ë¤Î¥À¥¤¥¸¥§¥¹¥È¤ÈÈæ³Ó¤·¤Þ¤¹¡£2¤Ä¤Î¥À¥¤¥¸¥§¥¹¥È¤ÏƱ¤¸¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¡¢¤½¤¦¤Ç¤Ê¤¤¾ì¹ç¤Ï¸¡¾Ú¤¬¼ºÇÔ¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¸¡¾Ú¥×¥í¥»¥¹¤ÎÅÓÃæ¤Ç¤Ê¤ó¤é¤«¤Î½ÅÂç¤Ê¸¡¾Ú¥¨¥é¡¼¤¬È¯À¸¤·¤¿¾ì¹ç¡¢¸¡¾Ú¥×¥í¥»¥¹¤ÏÃæ»ß¤µ¤ì¡¢¥»¥­¥å¥ê¥Æ¥£Îã³°¤¬¥¹¥í¡¼¤µ¤ì¤Þ¤¹¡£Îã³°¤Ï¡¢\f3jarsigner\fP¤¬¥­¥ã¥Ã¥Á¤·¤Æɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.SS
++1¤Ä¤ÎJAR¥Õ¥¡¥¤¥ë¤òÂоݤȤ¹¤ëÊ£¿ô¤Î½ð̾
++.LP
++.LP
++1¤Ä¤ÎJAR¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ\f3jarsigner\fP¥Ä¡¼¥ë¤òÊ£¿ô²ó¼Â¹Ô¤·¡¢¼Â¹Ô¤Î¤¿¤Ó¤Ë¡¢°Û¤Ê¤ë¥æ¡¼¥¶¡¼¤ÎÊÌ̾¤ò»ØÄꤹ¤ì¤Ð¡¢JAR¥Õ¥¡¥¤¥ë¤ËÊ£¿ô¤Î¥æ¡¼¥¶¡¼¤Î½ð̾¤òÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner myBundle.jar susan
++.fl
++ jarsigner myBundle.jar kevin
++.fl
++\fP
++.fi
++
++.LP
++.LP
++JAR¥Õ¥¡¥¤¥ë¤¬Ê£¿ô²ó½ð̾¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¤½¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¤Ï.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î¥Ú¥¢¤¬Ê£¿ô´Þ¤Þ¤ì¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î¥Ú¥¢¤Ï¡¢1²ó¤Î½ð̾¤ËÂФ·¤Æ1¤ÄºîÀ®¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¾å¤ÎÎã¤Ç½ÐÎϤµ¤ì¤ëJAR¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¼¡¤Î̾Á°¤ò»ý¤Ä¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ SUSAN.SF
++.fl
++ SUSAN.DSA
++.fl
++ KEVIN.SF
++.fl
++ KEVIN.DSA
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Ãí°Õ: JAR¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢JDK 1.1¤Î\f3javakey\fP¥Ä¡¼¥ë¤ÇÀ¸À®¤µ¤ì¤¿½ð̾¤È\f3jarsigner\fP¤ÇÀ¸À®¤µ¤ì¤¿½ð̾¤¬º®ºß¤Ç¤­¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤¹¤Ç¤Ë\f3javakey\fP¤ò»ÈÍѤ·¤Æ½ð̾¤¬ÉÕ¤±¤é¤ì¤Æ¤¤¤ëJAR¥Õ¥¡¥¤¥ë¤Ë¡¢\f3jarsigner\fP¤ò»ÈÍѤ·¤Æ½ð̾¤òÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++¼¡¤Ë¡¢\f3jarsigner\fP¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£Ãí°Õ:
++.LP
++.RS 3
++.TP 2
++o
++¤É¤Î¥ª¥×¥·¥ç¥ó̾¤Ë¤âÀèƬ¤Ë¥Þ¥¤¥Ê¥¹µ­¹æ(\-)¤¬ÉÕ¤­¤Þ¤¹¡£
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó¤ÏǤ°Õ¤Î½ç½ø¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++¥¤¥¿¥ê¥Ã¥¯ÂΤιàÌܤμºݤÎÃÍ(¥ª¥×¥·¥ç¥ó¤ÎÃÍ)¤Ï¡¢»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f2\-keystore\fP¡¢\f2\-storepass\fP¡¢\f2\-keypass\fP¡¢\f2\-sigfile\fP¡¢\f2\-sigalg\fP¡¢\f2\-digestalg\fP¤ª¤è¤Ó\f2\-signedjar\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤǤ­¤ë¤Î¤Ï¡¢½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤ò¸¡¾Ú¤¹¤ë¾ì¹ç¤Ç¤Ï¤Ê¤¯¡¢JAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤¹¤ë¾ì¹ç¤Î¤ß¤Ç¤¹¡£Æ±Íͤˡ¢ÊÌ̾¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤹ¤ë¤Î¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¾ì¹ç¤Î¤ß¤Ç¤¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-keystore url
++¥­¡¼¥¹¥È¥¢¤Î¾ì½ê¤ò¼¨¤¹URL¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï¡¢¥æ¡¼¥¶¡¼¤Î¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¥Õ¥¡¥¤¥ë\f2.keystore\fP¤Ç¤¹¡£¥æ¡¼¥¶¡¼¤Î¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢user.home¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤Ë¤è¤Ã¤Æ·è¤Þ¤ê¤Þ¤¹¡£
++.br
++.br
++½ð̾¤¹¤ë¤È¤­¤Ï¥­¡¼¥¹¥È¥¢¤¬É¬ÍפǤ¹¡£¤³¤Î¤¿¤á¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¤¬Â¸ºß¤·¤Ê¤¤¾ì¹ç(¤Þ¤¿¤Ï¥Ç¥Õ¥©¥ë¥È°Ê³°¤Î¥­¡¼¥¹¥È¥¢¤ò»ÈÍѤ¹¤ë¾ì¹ç)¤Ï¡¢¥­¡¼¥¹¥È¥¢¤òÌÀ¼¨Åª¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++¸¡¾Ú¤¹¤ë¤È¤­¤Ï¥­¡¼¥¹¥È¥¢¤Ï\f2ɬÍפ¢¤ê¤Þ¤»¤ó\fP¡£¤¿¤À¤·¡¢¥­¡¼¥¹¥È¥¢¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¤«¡¢¤¢¤ë¤¤¤Ï¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¤¬Â¸ºß¤·¤Æ¤¤¤Æ¡¢¤µ¤é¤Ë\f2\-verbose\fP¥ª¥×¥·¥ç¥ó¤â»ØÄꤵ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤Ë»ÈÍѤµ¤ì¤ë¾ÚÌÀ½ñ¤¬¤½¤Î¥­¡¼¥¹¥È¥¢¤Ë1¤Ä¤Ç¤â´Þ¤Þ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤Ë´Ø¤¹¤ëÄɲþðÊ󤬽ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.br
++Ãí°Õ: \f2\-keystore\fP¤Î°ú¿ô¤Ë¤Ï¡¢URL¤Î¤«¤ï¤ê¤Ë¥Õ¥¡¥¤¥ë̾(¤È¥Ñ¥¹)¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥Õ¥¡¥¤¥ë̾(¤È¥Ñ¥¹)¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢¡Öfile:¡×URL¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-keystore \fP\f4filePathAndName\fP\f3
++.fl
++\fP
++.fi
++¤³¤ì¤Ï¡¢¼¡¤Î»ØÄê¤ÈƱ¤¸¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-keystore file:\fP\f4filePathAndName\fP\f3
++.fl
++\fP
++.fi
++JRE¤Î\f2$JAVA_HOME/lib/security\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤µ¤ì¤¿\f2java.security\fP¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤ÇSun PKCS#11¥×¥í¥Ð¥¤¥À¤¬¹½À®¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢keytool¤Èjarsigner¤ÏPKCS#11¥È¡¼¥¯¥ó¤Ë´ð¤Å¤¤¤ÆÆ°ºî¤Ç¤­¤Þ¤¹¡£¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2\-keystore NONE\fP
++.TP 2
++o
++\f2\-storetype PKCS11\fP
++.RE
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢¹½À®¤µ¤ì¤¿PKCS#11¥È¡¼¥¯¥ó¤ÎÆâÍƤò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ jarsigner \-keystore NONE \-storetype PKCS11 \-list
++.fl
++\fP
++.fi
++.TP 3
++\-storetype storetype
++¥¤¥ó¥¹¥¿¥ó¥¹¤òÀ¸À®¤¹¤ë¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤Îkeystore.type¥×¥í¥Ñ¥Æ¥£¤ÎÃͤǻØÄꤵ¤ì¤¿¥¿¥¤¥×¤Ç¤¹¡£¤³¤ÎÃͤϡ¢\f2java.security.KeyStore\fP¤Îstatic \f2getDefaultType\fP¥á¥½¥Ã¥É¤Ë¤è¤Ã¤ÆÊÖ¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f2\-storepass\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆPCKS#11¥È¡¼¥¯¥ó¤ÎPIN¤ò»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£²¿¤â»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¡¢keytool¤Èjarsigner¤Ï¥æ¡¼¥¶¡¼¤Ë¥È¡¼¥¯¥óPIN¤ÎÆþÎϤòµá¤á¤Þ¤¹¡£¥È¡¼¥¯¥ó¤ËÊݸ¤ì¤¿Ç§¾Ú¥Ñ¥¹(ÀìÍѤÎPIN¥Ñ¥Ã¥É¤äÀ¸ÂÎÆɼè¤êµ¡¤Ê¤É)¤¬¤¢¤ë¾ì¹ç¡¢\f2\-protected\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢¥Ñ¥¹¥ï¡¼¥É¡¦¥ª¥×¥·¥ç¥ó¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó¡£
++.TP 3
++\-storepass[:env | :file] argument
++¥­¡¼¥¹¥È¥¢¤Ë¥¢¥¯¥»¥¹¤¹¤ë¤Î¤ËɬÍפʥѥ¹¥ï¡¼¥É¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤ì¤¬É¬ÍפʤΤϡ¢JAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Î¤ß¤Ç¤¹(¸¡¾Ú¤¹¤ë¤È¤­¤Ë¤ÏÉÔÍפǤ¹)¡£¤½¤Î¾ì¹ç¡¢\f2\-storepass\fP¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤¤¤È¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.br
++.br
++½¤¾þ»Ò\f2env\fP¤Þ¤¿¤Ï\f2file\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÃͤÏ\f2argument\fP¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤Ï¼¡¤Î¤è¤¦¤Ë¤·¤Æ¼èÆÀ¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2env\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î´Ä¶­ÊÑ¿ô¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.TP 2
++o
++\f2file\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.RE
++Ãí°Õ: ¥Æ¥¹¥È¤òÌÜŪ¤È¤¹¤ë¾ì¹ç¡¢¤Þ¤¿¤Ï¥»¥­¥å¥ê¥Æ¥£Êݸ¤ì¤¿¥·¥¹¥Æ¥à¤ò»ÈÍѤ·¤Æ¤¤¤ë¾ì¹ç°Ê³°¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ä¥¹¥¯¥ê¥×¥È¤Ç¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.TP 3
++\-keypass[:env | :file] argument
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤵ¤ì¤¿ÊÌ̾¤ËÂбþ¤¹¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ÎÈëÌ©¸°¤òÊݸ¤ë¤Î¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Þ¤¹¡£\f3jarsigner\fP¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤¬É¬ÍפǤ¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥Ñ¥¹¥ï¡¼¥É¤¬»ØÄꤵ¤ì¤Æ¤ª¤é¤º¡¢É¬Íפʥѥ¹¥ï¡¼¥É¤¬¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤È°Û¤Ê¤ë¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.br
++.br
++½¤¾þ»Ò\f2env\fP¤Þ¤¿¤Ï\f2file\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÃͤÏ\f2argument\fP¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤Ï¼¡¤Î¤è¤¦¤Ë¤·¤Æ¼èÆÀ¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2env\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î´Ä¶­ÊÑ¿ô¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.TP 2
++o
++\f2file\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.RE
++Ãí°Õ: ¥Æ¥¹¥È¤òÌÜŪ¤È¤¹¤ë¾ì¹ç¡¢¤Þ¤¿¤Ï¥»¥­¥å¥ê¥Æ¥£Êݸ¤ì¤¿¥·¥¹¥Æ¥à¤ò»ÈÍѤ·¤Æ¤¤¤ë¾ì¹ç°Ê³°¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ä¥¹¥¯¥ê¥×¥È¤Ç¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.TP 3
++\-sigfile file
++.SF¥Õ¥¡¥¤¥ë¤È .DSA¥Õ¥¡¥¤¥ë¤ÎÀ¸À®¤Ë»ÈÍѤ¹¤ë¥Ù¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2file\fP¤ËDUKESIGN¤ò»ØÄꤹ¤ë¤È¡¢À¸À®¤µ¤ì¤ë.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ï¡¢¤½¤ì¤¾¤ìDUKESIGN.SF¤ÈDUKESIGN.DSA¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤ÎMETA\-INF¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤«¤ì¤Þ¤¹¡£
++.br
++.br
++\f2file\fP¤Ë»ÈÍѤǤ­¤ëʸ»ú¤Ï¡Öa\-zA\-Z0\-9_\-¡×¤Ç¤¹¡£¤Ä¤Þ¤ê¡¢Ê¸»ú¡¢¿ô»ú¡¢²¼Àþ¤ª¤è¤Ó¥Ï¥¤¥Õ¥ó¤Î¤ß¤ò»ÈÍѤǤ­¤Þ¤¹¡£Ãí°Õ: .SF¤ª¤è¤Ó.DSA¤Î¥Õ¥¡¥¤¥ë̾¤Ç¤Ï¡¢¾®Ê¸»ú¤Ï¤¹¤Ù¤ÆÂçʸ»ú¤ËÊÑ´¹¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-sigfile\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¡¢.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î¥Ù¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤵ¤ì¤¿ÊÌ̾¤ÎÀèƬ¤Î8ʸ»ú¤ò¤¹¤Ù¤ÆÂçʸ»ú¤ËÊÑ´¹¤·¤¿¤â¤Î¤Ë¤Ê¤ê¤Þ¤¹¡£ÊÌ̾¤¬8ʸ»ṳ́Ëþ¤Î¾ì¹ç¤Ï¡¢ÊÌ̾¤¬¤½¤Î¤Þ¤Þ»ÈÍѤµ¤ì¤Þ¤¹¡£ÊÌ̾¤ÎÃæ¤Ë¡¢½ð̾¥Õ¥¡¥¤¥ë̾¤Ë»ÈÍѤǤ­¤Ê¤¤Ê¸»ú¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢³ºÅö¤¹¤ëʸ»ú¤ò²¼Àþ(_)¤ËÃÖ¤­´¹¤¨¤Æ¥Õ¥¡¥¤¥ë̾¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-sigalg algorithm
++JAR¥Õ¥¡¥¤¥ë¤Î½ð̾¤Ë»ÈÍѤ¹¤ë½ð̾¥¢¥ë¥´¥ê¥º¥à¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£
++.br
++.br
++ɸ½à½ð̾¥¢¥ë¥´¥ê¥º¥à̾¤Î°ìÍ÷¤Ï¡¢Java°Å¹æ²½¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î
++.na
++\f2ÉÕÏ¿A\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥¢¥ë¥´¥ê¥º¥à¤Ë¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î½ð̾¤Ë»ÈÍѤ¹¤ëÈëÌ©¸°¤È¤Î¸ß´¹À­¤¬É¬ÍפǤ¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¡¢ÈëÌ©¸°¤Î¥¿¥¤¥×¤Ë±þ¤¸¤ÆSHA1withDSA¡¢SHA256withRSA¡¢SHA256withECDSA¤Î¤¤¤º¤ì¤«¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£»ØÄꤵ¤ì¤¿¥¢¥ë¥´¥ê¥º¥à¤Î¼ÂÁõ¤òÄ󶡤¹¤ë¥×¥í¥Ð¥¤¥À¤¬ÀÅŪ¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤«¡¢\f2\-providerClass\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤½¤Î¤è¤¦¤Ê¥×¥í¥Ð¥¤¥À¤ò¥æ¡¼¥¶¡¼¤¬»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤Ç¤Ê¤¤¾ì¹ç¡¢¥³¥Þ¥ó¥É¤Î¼Â¹Ô¤¬¼ºÇÔ¤·¤Þ¤¹¡£
++.TP 3
++\-digestalg algorithm
++JAR¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥È¥ê¤ò¥À¥¤¥¸¥§¥¹¥È¤¹¤ëºÝ¤Ë»ÈÍѤ¹¤ë¥á¥Ã¥»¡¼¥¸¡¦¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£
++.br
++.br
++¥á¥Ã¥»¡¼¥¸¡¦¥À¥¤¥¸¥§¥¹¥È¡¦¥¢¥ë¥´¥ê¥º¥à̾¤Î°ìÍ÷¤Ï¡¢Java°Å¹æ²½¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î
++.na
++\f2ÉÕÏ¿A\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¡¢SHA256¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£»ØÄꤵ¤ì¤¿¥¢¥ë¥´¥ê¥º¥à¤Î¼ÂÁõ¤òÄ󶡤¹¤ë¥×¥í¥Ð¥¤¥À¤¬ÀÅŪ¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤«¡¢\f2\-providerClass\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤½¤Î¤è¤¦¤Ê¥×¥í¥Ð¥¤¥À¤ò¥æ¡¼¥¶¡¼¤¬»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤Ç¤Ê¤¤¾ì¹ç¡¢¥³¥Þ¥ó¥É¤Î¼Â¹Ô¤¬¼ºÇÔ¤·¤Þ¤¹¡£
++.TP 3
++\-signedjar file
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£
++.br
++.br
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç̾Á°¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢ÆþÎÏJAR¥Õ¥¡¥¤¥ë(½ð̾¤ÎÂоݤȤʤëJAR¥Õ¥¡¥¤¥ë)¤Î̾Á°¤ÈƱ¤¸Ì¾Á°¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢ÆþÎÏJAR¥Õ¥¡¥¤¥ë¤Ï½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Ë¤è¤Ã¤Æ¾å½ñ¤­¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-verify
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢»ØÄꤵ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤Î½ð̾¤Ç¤Ï¤Ê¤¯¸¡¾Ú¤¬¹Ô¤ï¤ì¤Þ¤¹¡£¸¡¾Ú¤¬À®¸ù¤¹¤ë¤È¡¢¡Öjar¤¬¸¡¾Ú¤µ¤ì¤Þ¤·¤¿¡£¡×¤È¤¤¤¦¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£½ð̾¤µ¤ì¤Æ¤¤¤Ê¤¤JAR¥Õ¥¡¥¤¥ë¡¢¤Þ¤¿¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤¥¢¥ë¥´¥ê¥º¥à(RSA¥×¥í¥Ð¥¤¥À¤Î¥¤¥ó¥¹¥È¡¼¥ë¤ò½ªÎ»¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤ÎRSA¤Ê¤É)¤ò»ÈÍѤ·¤Æ½ð̾¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤ò¸¡¾Ú¤·¤è¤¦¤È¤¹¤ë¤È¡¢¡Öjar¤Ï½ð̾¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£(½ð̾¤¬¸«¤Ä¤«¤é¤Ê¤¤¤«¡¢¹½Ê¸²òÀϤǤ­¤Þ¤»¤ó)¡×¤È¤¤¤¦¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Ï¡¢\f3jarsigner\fP¤Þ¤¿¤ÏJDK 1.1¤Î\f3javakey\fP¥Ä¡¼¥ë¤Î¤É¤Á¤é¤«¤Þ¤¿¤ÏξÊý¤ò»ÈÍѤ·¤Æ¸¡¾Ú¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++¸¡¾Ú¤Î¾ÜºÙ¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-certs
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¡¢\f2\-verify\fP¤ª¤è¤Ó\f2\-verbose\fP¥ª¥×¥·¥ç¥ó¤È¤È¤â¤Ë¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢JAR¥Õ¥¡¥¤¥ë¤Î³Æ½ð̾¼Ô¤Î¾ÚÌÀ½ñ¾ðÊ󤬽ÐÎϤ˴ޤޤì¤Þ¤¹¡£¤³¤Î¾ðÊó¤Ë¤Ï¼¡¤Î¤â¤Î¤¬´Þ¤Þ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++½ð̾¼Ô¤Î¸ø³«¸°¤ò¾ÚÌÀ¤¹¤ë(.DSA¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤¿)¾ÚÌÀ½ñ¥¿¥¤¥×¤Î̾Á°
++.TP 2
++o
++¾ÚÌÀ½ñ¤¬X.509¾ÚÌÀ½ñ(¤Ä¤Þ¤ê¡¢\f2java.security.cert.X509Certificate\fP¤Î¥¤¥ó¥¹¥¿¥ó¥¹)¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢½ð̾¼Ô¤Î¼±ÊÌ̾
++.RE
++¥­¡¼¥¹¥È¥¢¤Î³Îǧ¤â¹Ô¤ï¤ì¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥­¡¼¥¹¥È¥¢¤ÎÃͤ¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤¬¤¢¤ì¤Ð¡¢¸¡ºº¤µ¤ì¤Þ¤¹¡£½ð̾¼Ô¤Î¸ø³«¸°¤Î¾ÚÌÀ½ñ¤¬¥­¡¼¥¹¥È¥¢Æâ¤Î¥¨¥ó¥È¥ê¤È°ìÃפ·¤¿¾ì¹ç¤Ï¡¢¼¡¤Î¾ðÊó¤âɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++½ð̾¼Ô¤Ë³ºÅö¤¹¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ÎÊÌ̾¡£¤³¤ÎÊÌ̾¤Ï³ç¸Ì¤Ç°Ï¤Þ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢¥­¡¼¥¹¥È¥¢¤Ç¤Ï¤Ê¤¯JDK 1.1¤Î¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËͳÍ褹¤ë½ð̾¼Ô¤Î¾ì¹ç¤Ï¡¢³ç¸Ì¤Ç¤Ï¤Ê¤¯Âç³ç¸Ì¤Ç°Ï¤Þ¤ì¤Þ¤¹¡£
++.RE
++.TP 3
++\-certchain file
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤¿ÊÌ̾¤Ç·è¤Þ¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ÎÈëÌ©¸°¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤¬´°Á´¤Ç¤Ê¤¤¾ì¹ç¤Ë¡¢»ÈÍѤ¹¤ë¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò»ØÄꤷ¤Þ¤¹¡£¤½¤Î¤è¤¦¤Ê¾õÂ֤ˤʤë²ÄǽÀ­¤¬¤¢¤ë¤Î¤Ï¡¢¥­¡¼¥¹¥È¥¢¤¬¥Ï¡¼¥É¥¦¥§¥¢¡¦¥È¡¼¥¯¥ó¾å¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë¤¬¡¢¤½¤³¤Ë¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÎÁ´ÂΤòÊÝ»ý¤Ç¤­¤ëÎΰ褬¸ºß¤·¤Æ¤¤¤Ê¤¤¤è¤¦¤Ê¾ì¹ç¤Ç¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï°ìÏ¢¤ÎX.509¾ÚÌÀ½ñ¤¬½ç¤ËÏ¢·ë¤µ¤ì¤¿¤â¤Î¡¢PKCS#7·Á¼°¤Îñ°ì¥Ç¡¼¥¿¡¦¥Ö¥í¥Ã¥¯¤Î¤¤¤º¤ì¤«¤È¤Ê¤ê¡¢¤½¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°·Á¼°¤Ï¥Ð¥¤¥Ê¥ê¡¦¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°·Á¼°¡¢Internet RFC 1421ɸ½à¤Çµ¬Äꤵ¤ì¤ë°õºþ²Äǽ¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°·Á¼°(BASE64¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤È¤â¸Æ¤Ð¤ì¤ë)¤Î¤¤¤º¤ì¤«¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-verbose
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f3jarsigner\fP¤Ï¡Ö¾éĹ¡×¥â¡¼¥É¤ÇÆ°ºî¤·¡¢JAR¤Î½ð̾¤Þ¤¿¤Ï¸¡¾Ú¤Î¿Ê¹Ô¾õ¶·¤Ë´Ø¤¹¤ëÄɲþðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-internalsf
++°ÊÁ°¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î½ð̾»þ¤ËÀ¸À®¤µ¤ì¤¿.DSA(½ð̾¥Ö¥í¥Ã¥¯)¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ë¡¢À¸À®¤µ¤ì¤¿.SF¥Õ¥¡¥¤¥ë(½ð̾¥Õ¥¡¥¤¥ë)¤Î´°Á´¤Ê¥³¥Ô¡¼¤¬Éä¹æ²½¤µ¤ì¤¿·Á¤Ç´Þ¤Þ¤ì¤Æ¤¤¤Þ¤·¤¿¡£¤³¤ÎÆ°ºî¤ÏÊѹ¹¤µ¤ì¤Þ¤·¤¿¡£¸½ºß¤Ç¤Ï¡¢½ÐÎÏJAR¥Õ¥¡¥¤¥ëÁ´ÂΤΥµ¥¤¥º¤ò¾®¤µ¤¯¤¹¤ë¤¿¤á¤Ë¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï.SF¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼¤¬.DSA¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤Ê¤¤¤è¤¦¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£¤¿¤À¤·¡¢\f2\-internalsf\fP¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤹ¤ë¤È¡¢°ÊÁ°¤ÈƱ¤¸¤è¤¦¤ËÆ°ºî¤·¤Þ¤¹¡£\f3¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥Æ¥¹¥È¤ò¹Ô¤¦¾ì¹ç¤Ë¤ÏÊØÍø¤Ç¤¹¤¬¡¢¤½¤ì°Ê³°¤Ë¤Ï»ÈÍѤ·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢Í­±×¤ÊºÇŬ²½¤¬¹Ô¤ï¤ì¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£\fP
++.TP 3
++\-sectionsonly
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢JAR¥Õ¥¡¥¤¥ë¤Î½ð̾»þ¤ËÀ¸À®¤µ¤ì¤ë.SF¥Õ¥¡¥¤¥ë(½ð̾¥Õ¥¡¥¤¥ë)¤Ë¤Ï¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÁ´ÂΤΥϥå·¥å¤ò´Þ¤à¥Ø¥Ã¥À¡¼¤Ï\f2´Þ¤Þ¤ì¤Þ¤»¤ó\fP¡£¤³¤Î¾ì¹ç¡¢.SF¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤ë¤Î¤Ï¡¢JAR¥Õ¥¡¥¤¥ëÆâ¤Î³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë´Ø¤¹¤ë¾ðÊ󤪤è¤Ó¥Ï¥Ã¥·¥å¤Î¤ß¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢½ð̾(.SF)¥Õ¥¡¥¤¥ë¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢ºÇŬ²½¤Î¤¿¤á¤Ë¡¢¤³¤Î¥Ø¥Ã¥À¡¼¤¬Äɲ䵤ì¤Þ¤¹¡£¥Ø¥Ã¥À¡¼¤¬Â¸ºß¤¹¤ë¾ì¹ç¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú»þ¤Ë¡¢¤Þ¤º¥Ø¥Ã¥À¡¼Æâ¤Î¥Ï¥Ã¥·¥å¤¬¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÁ´ÂΤΥϥå·¥å¤È¼ÂºÝ¤Ë°ìÃפ¹¤ë¤«¤É¤¦¤«¤¬³Îǧ¤µ¤ì¤Þ¤¹¡£°ìÃפ¹¤ë¾ì¹ç¡¢¸¡¾Ú¤Ï¼¡¤Î¼ê½ç¤Ë¿Ê¤ß¤Þ¤¹¡£¥Ï¥Ã¥·¥å¤¬°ìÃפ·¤Ê¤¤¾ì¹ç¤Ï¡¢¸úΨŪ¤Ë¤ÏÎô¤ëÊýË¡¤ò»ÈÍѤ·¤Æ¸¡¾Ú¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢.SF¥Õ¥¡¥¤¥ëÆâ¤Î³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¾ðÊ󥻥¯¥·¥ç¥ó¤Î¥Ï¥Ã¥·¥å¤¬¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¡¦¥Õ¥¡¥¤¥ëÆâ¤ÎÂбþ¤¹¤ë¥»¥¯¥·¥ç¥ó¤Î¥Ï¥Ã¥·¥å¤È°ìÃפ¹¤ë¤«¤É¤¦¤«¤¬³Îǧ¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¾ÜºÙ¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f3¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥Æ¥¹¥È¤ò¹Ô¤¦¾ì¹ç¤Ë¤ÏÊØÍø¤Ç¤¹¤¬¡¢¤½¤ì°Ê³°¤Ë¤Ï»ÈÍѤ·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢Í­±×¤ÊºÇŬ²½¤¬¹Ô¤ï¤ì¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£\fP
++.TP 3
++\-protected
++\f2true\fP¤Þ¤¿¤Ï\f2false\fP¤Î¤¤¤º¤ì¤«¡£ÀìÍÑPIN¥ê¡¼¥À¡¼¤Ê¤É¤ÎÊݸ¤ì¤¿Ç§¾Ú¥Ñ¥¹¤ò²ð¤·¤Æ¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ë¤Ï¡¢¤³¤ÎÃͤË\f2true\fP¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-providerClass provider\-class\-name
++¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¤¬¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë(\f2java.security\fP)¤Î¥ê¥¹¥È¤ËÆþ¤Ã¤Æ¤¤¤Ê¤¤¤È¤­¤Ë¡¢°Å¹æ²½¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¤Î¥Þ¥¹¥¿¡¼¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»ØÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++\f2\-providerArg\fP \f2ConfigFilePath\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹¡£keytool¤Èjarsigner¤Ï¥×¥í¥Ð¥¤¥À¤òưŪ¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹(¤³¤³¤Ç¡¢\f2ConfigFilePath\fP¤Ï¥È¡¼¥¯¥ó¹½À®¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤Ç¤¹)¡£¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤ÇSun PKCS#11¥×¥í¥Ð¥¤¥À¤¬¹½À®¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤ËPKCS#11¥­¡¼¥¹¥È¥¢¤ò°ìÍ÷ɽ¼¨¤¹¤ë¥³¥Þ¥ó¥É¤ÎÎã¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jarsigner \-keystore NONE \-storetype PKCS11 \\
++.fl
++ \-providerClass sun.security.pkcs11.SunPKCS11 \\
++.fl
++ \-providerArg /foo/bar/token.config \\
++.fl
++ \-list
++.fl
++\fP
++.fi
++.TP 3
++\-providerName providerName
++\f2java.security\fP¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤Ç2¤Ä°Ê¾å¤Î¥×¥í¥Ð¥¤¥À¤¬¹½À®¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2\-providerName\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆÆÃÄê¤Î¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¹¥¿¥ó¥¹¤òÁªÂò¤Ç¤­¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Î°ú¿ô¤Ï¡¢¥×¥í¥Ð¥¤¥À¤Î̾Á°¤Ç¤¹¡£
++.br
++.br
++Sun PKCS#11¥×¥í¥Ð¥¤¥À¤Î¾ì¹ç¡¢\f2providerName\fP¤Ï\f2SunPKCS11\-\fP\f2TokenName\fP¤È¤¤¤¦·Á¼°¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤³¤Ç\f2TokenName\fP¤Ï¡¢¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¹¥¿¥ó¥¹¤¬¹½À®¤µ¤ì¤¿Ì¾Á°¤ÎÀÜÈø¼­¤Ç¤¹¡£¾ÜºÙ¤Ï
++.na
++\f2¹½À®Â°À­¤Îɽ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#ATTRS¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢Ì¾Á°ÀÜÈø¼­\f2SmartCard\fP¤ÎPKCS#11¥­¡¼¥¹¥È¥¢¡¦¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¹¥¿¥ó¥¹¤ÎÆâÍƤò¥ê¥¹¥È¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++jarsigner \-keystore NONE \-storetype PKCS11 \\
++.fl
++ \-providerName SunPKCS11\-SmartCard \\
++.fl
++ \-list
++.fl
++\fP
++.fi
++.TP 3
++\-Jjavaoption
++»ØÄꤵ¤ì¤¿\f2javaoption\fPʸ»úÎó¤òJava¥¤¥ó¥¿¥×¥ê¥¿¤ËľÀÜÅϤ·¤Þ¤¹¡£(\f3jarsigner\fP¤Ï¡¢¼ÂºÝ¤Ë¤ÏJava¥¤¥ó¥¿¥×¥ê¥¿¤ËÂФ¹¤ë¡Ö¥é¥Ã¥Ñ¡¼¡×¤Ç¤¹¡£)¤³¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ï¡¢¶õÇò¤ò´Þ¤á¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¼Â¹Ô´Ä¶­¤Þ¤¿¤Ï¥á¥â¥ê¡¼»ÈÍѤòÄ´À°¤¹¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£»ØÄê¤Ç¤­¤ë¥¤¥ó¥¿¥×¥ê¥¿¡¦¥ª¥×¥·¥ç¥ó¤ò°ìÍ÷ɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2java \-h\fP¤Þ¤¿¤Ï\f2java \-X\fP¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-tsa url
++\f2¡Ö\-tsa http://example.tsa.url¡×\fP¤¬JAR¥Õ¥¡¥¤¥ë¤Î½ð̾»þ¤Ë¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤¢¤ë¾ì¹ç¡¢½ð̾¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤¬À¸À®¤µ¤ì¤Þ¤¹¡£URL\f2http://example.tsa.url\fP¤Ï¡¢TSA(Time Stamping Authority)¤Î¾ì½ê¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ì¤Ï¡¢\f2\-tsacert\fP¥ª¥×¥·¥ç¥ó¤Ç¸¡½Ð¤µ¤ì¤¿URL¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£\f2\-tsa\fP¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢TSA¤Î¸ø³«¸°¾ÚÌÀ½ñ¤ò¥­¡¼¥¹¥È¥¢¤ËÇÛÃÖ¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
++.br
++.br
++¥¿¥¤¥à¥¹¥¿¥ó¥×¤òÀ¸À®¤¹¤ë¤¿¤á¤Ë¡¢\f2jarsigner\fP¤Ï¡¢
++.na
++\f2RFC 3161\fP @
++.fi
++http://www.ietf.org/rfc/rfc3161.txt¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¥¿¥¤¥à¥¹¥¿¥ó¥×¡¦¥×¥í¥È¥³¥ë(TSP)¤ò»ÈÍѤ·¤ÆTSA¤ÈÄÌ¿®¤·¤Þ¤¹¡£À®¸ù¤¹¤ë¤È¡¢TSA¤«¤éÊÖ¤µ¤ì¤¿¥¿¥¤¥à¥¹¥¿¥ó¥×¡¦¥È¡¼¥¯¥ó¤Ï½ð̾¥Ö¥í¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë¤Î½ð̾¤È¤È¤â¤ËÊݸ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-tsacert alias
++\f2¡Ö\-tsacert alias¡×\fP¤¬JAR¥Õ¥¡¥¤¥ë¤Î½ð̾»þ¤Ë¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤¢¤ë¾ì¹ç¡¢½ð̾¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤¬À¸À®¤µ¤ì¤Þ¤¹¡£\f2alias\fP¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î¸½ºßÍ­¸ú¤ÊTSA¤Î¸ø³«¸°¾ÚÌÀ½ñ¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£¥¨¥ó¥È¥ê¤Î¾ÚÌÀ½ñ¤Ç¡¢TSA¤Î¾ì½ê¤òÆÃÄꤹ¤ëURL¤ò´Þ¤àSubject Information Access³ÈÄ¥µ¡Ç½¤¬³Îǧ¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f2\-tsacert\fP¤ò»ÈÍѤ·¤¿¾ì¹ç¤Ï¡¢TSA¤Î¸ø³«¸°¾ÚÌÀ½ñ¤¬¥­¡¼¥¹¥È¥¢¤ËÇÛÃÖ¤µ¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-altsigner class
++ÂåÂؽð̾µ¡¹½¤ò»ÈÍѤ¹¤ë¤³¤È¤ò»ØÄꤷ¤Þ¤¹¡£´°Á´½¤¾þ¥¯¥é¥¹Ì¾¤Ç¡¢\f2com.sun.jarsigner.ContentSigner\fPÃê¾Ý¥¯¥é¥¹¤ò³ÈÄ¥¤¹¤ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤Ï¡¢\f2\-altsignerpath\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤ÆÄêµÁ¤µ¤ì¤Þ¤¹¡£\f2\-altsigner\fP¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤµ¤ì¤ë¤È¡¢\f2jarsigner\fP¤Ï¡¢»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤¬Ä󶡤¹¤ë½ð̾µ¡¹½¤ò»ÈÍѤ·¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢\f2jarsigner\fP¤Ï¥Ç¥Õ¥©¥ë¥È¤Î½ð̾µ¡¹½¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢\f2com.sun.sun.jarsigner.AuthSigner\fP¤È¤¤¤¦Ì¾Á°¤Î¥¯¥é¥¹¤¬Ä󶡤¹¤ë½ð̾µ¡¹½¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢\f2jarsigner\fP¤Ç\f2¡Ö\-altsigner com.sun.jarsigner.AuthSigner¡×\fP¤È¤¤¤¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-altsignerpath classpathlist
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë(¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ÏÁ°½Ò¤Î\f2\-altsigner\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤷ¤Þ¤¹)¤ª¤è¤Ó¤½¤Î¥¯¥é¥¹¤¬°Í¸¤¹¤ë¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬JAR¥Õ¥¡¥¤¥ëÆâ¤Ë¤¢¤ë¾ì¹ç¡¢°Ê²¼¤ÎÎã¤Î¤è¤¦¤ËJAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤¬»ØÄꤵ¤ì¤Þ¤¹¡£
++.br
++.br
++ÀäÂХѥ¹¤Þ¤¿¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХѥ¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\f2classpathlist\fP¤ËÊ£¿ô¤Î¥Ñ¥¹¤äJAR¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤ë¾ì¹ç¤Ë¤Ï¡¢¤½¤ì¤é¤òSolaris¤Î¾ì¹ç¤Ï¥³¥í¥ó(\f2:\fP)¤Ç¡¢Windows¤Î¾ì¹ç¤Ï¥»¥ß¥³¥í¥ó(\f2;\fP)¤Ç¤½¤ì¤¾¤ì¶èÀÚ¤ê¤Þ¤¹¡£ÌÜŪ¤Î¥¯¥é¥¹¤¬¤¹¤Ç¤Ë¸¡º÷¥Ñ¥¹Æâ¤Ë¤¢¤ë¾ì¹ç¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ÏÉÔÍפǤ¹¡£
++.br
++.br
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò´Þ¤à¡¢JAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤ò»ØÄꤹ¤ëÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\-altsignerpath /home/user/lib/authsigner.jar
++.fl
++\fP
++.fi
++JAR¥Õ¥¡¥¤¥ë̾¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò´Þ¤àJAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤ò»ØÄꤹ¤ëÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\-altsignerpath /home/user/classes/com/sun/tools/jarsigner/
++.fl
++\fP
++.fi
++JAR¥Õ¥¡¥¤¥ë̾¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤Ëα°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-strict
++½ð̾¤Þ¤¿¤Ï¸¡¾Ú½èÍýÃæ¤Ë¡¢¤Ê¤ó¤é¤«¤Î·Ù¹ð¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢¸«¤Ä¤«¤Ã¤¿·Ù¹ð¥á¥Ã¥»¡¼¥¸¤¬¥Ä¡¼¥ë¤Î½ªÎ»¥³¡¼¥É¤ËÈ¿±Ç¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢·Ù¹ð¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-verbose:sub\-options
++¸¡¾Ú½èÍý¤Î¾ì¹ç¡¢É½¼¨¤¹¤ë¾ðÊó¤ÎÎ̤ò·èÄꤹ¤ë¥µ¥Ö¥ª¥×¥·¥ç¥ó¤ò\f2\-verbose\fP¥ª¥×¥·¥ç¥ó¤Ë»ØÄê¤Ç¤­¤Þ¤¹¡£\f2\-certs\fP¤â»ØÄꤷ¤¿¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥â¡¼¥É(¤Þ¤¿¤Ï¥µ¥Ö¥ª¥×¥·¥ç¥óall)¤Ç¤Ï¡¢¥¨¥ó¥È¥ê¤¬½èÍý¤µ¤ì¤ë¤¿¤Ó¤Ë¤½¤ì¤é¤Î³Æ¥¨¥ó¥È¥ê¤¬É½¼¨¤µ¤ì¡¢¤½¤Î¸å¤ËJAR¥Õ¥¡¥¤¥ë¤Î³Æ½ð̾¼Ô¤Î¾ÚÌÀ½ñ¾ðÊó¤âɽ¼¨¤µ¤ì¤Þ¤¹¡£\f2\-certs\fP¤È\f2\-verbose:grouped\fP¥µ¥Ö¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢Æ±¤¸½ð̾¼Ô¾ðÊó¤ò»ý¤Ä¥¨¥ó¥È¥ê¤È¤½¤Î¾ÚÌÀ½ñ¾ðÊ󤬡¢¥°¥ë¡¼¥×²½¤µ¤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£\f2\-certs\fP¤È\f2\-verbose:summary\fP¥µ¥Ö¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢Æ±¤¸½ð̾¼Ô¾ðÊó¤ò»ý¤Ä¥¨¥ó¥È¥ê¤È¤½¤Î¾ÚÌÀ½ñ¾ðÊ󤬥°¥ë¡¼¥×²½¤µ¤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¤¬¡¢³Æ¥¨¥ó¥È¥ê¤Î¾ÜºÙ¤¬¡Ö1¤Ä¤Î¥¨¥ó¥È¥ê(¤ª¤è¤Ó¤½¤ì°Ê¾å)¡×¤È¤·¤ÆÍ×Ì󤵤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢Îã¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SH "Îã"
++.LP
++.SS
++JAR¥Õ¥¡¥¤¥ë¤Î½ð̾
++.LP
++.LP
++bundle.jar¤È¤¤¤¦Ì¾Á°¤ÎJAR¥Õ¥¡¥¤¥ë¤¬¤¢¤ë¤È¤·¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¡¢working¤È¤¤¤¦¥Ç¥£¥ì¥¯¥È¥ê¤Îmystore¤È¤¤¤¦¥­¡¼¥¹¥È¥¢¤Ë¤¢¤ë¥­¡¼¥¹¥È¥¢¤ÎÊÌ̾¤¬jane¤Ç¤¢¤ë¥æ¡¼¥¶¡¼¤ÎÈëÌ©¸°¤ò»ÈÍѤ·¤Æ¡¢½ð̾¤òÉÕ¤±¤ë¤È¤·¤Þ¤¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¡¢JAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤Æsbundle.jar¤È¤¤¤¦½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-keystore /working/mystore \-storepass \fP\f4<keystore password>\fP\f3
++.fl
++ \-keypass \fP\f4<private key password>\fP\f3 \-signedjar sbundle.jar bundle.jar jane
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¾å¤Î¥³¥Þ¥ó¥É¤Ç¤Ï\f2\-sigfile\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤¿¤á¡¢½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤ë.SF¥Õ¥¡¥¤¥ë¤È.DSA¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ï¡¢ÊÌ̾¤«¤é¥Ç¥Õ¥©¥ë¥È̾¤¬ÉÕ¤±¤é¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤½¤ì¤é¤Î̾Á°¤Ï\f2JANE.SF\fP¤ª¤è¤Ó\f2JANE.DSA\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ÈÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤ë¥×¥í¥ó¥×¥È¤òɽ¼¨¤¹¤ë¾ì¹ç¤Ï¡¢¾å¤Î¥³¥Þ¥ó¥É¤òû½Ì¤·¤Æ¼¡¤Î¤è¤¦¤ËÆþÎϤǤ­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-keystore /working/mystore
++.fl
++ \-signedjar sbundle.jar bundle.jar jane
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢(¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î.keystore¤È¤¤¤¦Ì¾Á°¤Î¥­¡¼¥¹¥È¥¢)¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Ë¼¨¤¹¤è¤¦¤Ë¡¢¥­¡¼¥¹¥È¥¢¤Î»ØÄê¤ò¾Êά¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-signedjar sbundle.jar bundle.jar jane
++.fl
++\fP
++.fi
++
++.LP
++.LP
++ºÇ¸å¤Ë¡¢ÆþÎÏJAR¥Õ¥¡¥¤¥ë(\f2bundle.jar\fP)¤ò½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Çñ½ã¤Ë¾å½ñ¤­¤¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë\f2\-signedjar\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner bundle.jar jane
++.fl
++\fP
++.fi
++
++.LP
++.SS
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú
++.LP
++.LP
++½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤ò¸¡¾Ú¤¹¤ë¡¢¤Ä¤Þ¤ê½ð̾¤¬Í­¸ú¤ÇJAR¥Õ¥¡¥¤¥ë¤¬²þÊѤµ¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤ò³Îǧ¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-verify sbundle.jar
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¸¡¾Ú¤¬À®¸ù¤¹¤ë¤È¡¢
++.LP
++.nf
++\f3
++.fl
++ jar verified.
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤Èɽ¼¨¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¥¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2\-verbose\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¤è¤ê¿¤¯¤Î¾ðÊó¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£\f2\-verbose\fP¥ª¥×¥·¥ç¥óÉÕ¤­¤Ç\f3jarsigner\fP¤ò»ÈÍѤ¹¤ëÎã¤È¤½¤Î½ÐÎÏÎã¤ò¡¢¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-verify \-verbose sbundle.jar
++.fl
++
++.fl
++ 198 Fri Sep 26 16:14:06 PDT 1997 META\-INF/MANIFEST.MF
++.fl
++ 199 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.SF
++.fl
++ 1013 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.DSA
++.fl
++ smk 2752 Fri Sep 26 16:12:30 PDT 1997 AclEx.class
++.fl
++ smk 849 Fri Sep 26 16:12:46 PDT 1997 test.class
++.fl
++
++.fl
++ s = signature was verified
++.fl
++ m = entry is listed in manifest
++.fl
++ k = at least one certificate was found in keystore
++.fl
++
++.fl
++ jar verified.
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¾ÚÌÀ½ñ¾ðÊó¤ò»ÈÍѤ·¤¿¸¡¾Ú
++.LP
++.LP
++¸¡¾Ú»þ¤Ë\f2\-verify\fP¤È\f2\-verbose\fP¥ª¥×¥·¥ç¥ó¤Ë²Ã¤¨¤Æ\f2\-certs\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î³Æ½ð̾¼Ô¤Î¾ÚÌÀ½ñ¾ðÊó¤â½ÐÎϤµ¤ì¤Þ¤¹¡£¤³¤ì¤Ë¤Ï¡¢¾ÚÌÀ½ñ¥¿¥¤¥×¡¢½ð̾¼Ô¼±ÊÌ̾¾ðÊó(X.509¾ÚÌÀ½ñ¤Î¾ì¹ç¤Î¤ß)¡¢¤ª¤è¤ÓJAR¥Õ¥¡¥¤¥ë¤Î¸ø³«¸°¤Î¾ÚÌÀ½ñ¤¬¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤Î¾ÚÌÀ½ñ¤Ë°ìÃפ·¤¿¾ì¹ç¤Ë¤Ï¡¢³ç¸Ì¤Ç°Ï¤Þ¤ì¤¿½ð̾¼Ô¤Î¥­¡¼¥¹¥È¥¢ÊÌ̾¤¬´Þ¤Þ¤ì¤Þ¤¹¡£¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-keystore /working/mystore \-verify \-verbose \-certs myTest.jar
++.fl
++
++.fl
++ 198 Fri Sep 26 16:14:06 PDT 1997 META\-INF/MANIFEST.MF
++.fl
++ 199 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.SF
++.fl
++ 1013 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.DSA
++.fl
++ 208 Fri Sep 26 16:23:30 PDT 1997 META\-INF/JAVATEST.SF
++.fl
++ 1087 Fri Sep 26 16:23:30 PDT 1997 META\-INF/JAVATEST.DSA
++.fl
++ smk 2752 Fri Sep 26 16:12:30 PDT 1997 Tst.class
++.fl
++
++.fl
++ X.509, CN=Test Group, OU=Java Software, O=Sun Microsystems, L=CUP, S=CA, C=US (javatest)
++.fl
++ X.509, CN=Jane Smith, OU=Java Software, O=Sun, L=cup, S=ca, C=us (jane)
++.fl
++
++.fl
++ s = signature was verified
++.fl
++ m = entry is listed in manifest
++.fl
++ k = at least one certificate was found in keystore
++.fl
++
++.fl
++ jar verified.
++.fl
++\fP
++.fi
++
++.LP
++.LP
++½ð̾¼Ô¤Î¾ÚÌÀ½ñ¤¬X.509¾ÚÌÀ½ñ¤Ç¤Ê¤¤¾ì¹ç¤Ï¡¢¼±ÊÌ̾¾ðÊó¤Ïɽ¼¨¤µ¤ì¤Þ¤»¤ó¡£¤½¤Î¾ì¹ç¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤Î¥¿¥¤¥×¤ÈÊÌ̾¤Î¤ß¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¾ÚÌÀ½ñ¤¬PGP¾ÚÌÀ½ñ¤Ç¡¢ÊÌ̾¤¬bob¤Î¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ PGP, (bob)
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î½ð̾¼Ô¤ò´Þ¤àJAR¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú
++.LP
++.LP
++JAR¥Õ¥¡¥¤¥ë¤¬¡¢JDK 1.1¤Î\f3javakey\fP¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ½ð̾¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢½ð̾¼Ô¤Ï¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤ÎÊÌ̾¤Ç¤¹¡£¤³¤Î¾ì¹ç¡¢¸¡¾Ú¤Î½ÐÎϤˤϡÖi¡×¤È¤¤¤¦µ­¹æ¤¬´Þ¤Þ¤ì¤Þ¤¹¡£JAR¥Õ¥¡¥¤¥ë¤¬¡¢¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤ÎÊÌ̾¤È¥­¡¼¥¹¥È¥¢Æâ¤ÎÊÌ̾¤ÎξÊý¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¡Ök¡×¤È¡Öi¡×¤ÎξÊý¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2\-certs\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥­¡¼¥¹¥È¥¢¤ÎÊÌ̾¤Ï³ç¸Ì¤Ç°Ï¤Þ¤ì¤ë¤Î¤ËÂФ·¡¢¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤ÎÊÌ̾¤Ï³Ñ³ç¸Ì¤Ç°Ï¤Þ¤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ jarsigner \-keystore /working/mystore \-verify \-verbose \-certs writeFile.jar
++.fl
++
++.fl
++ 198 Fri Sep 26 16:14:06 PDT 1997 META\-INF/MANIFEST.MF
++.fl
++ 199 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.SF
++.fl
++ 1013 Fri Sep 26 16:22:10 PDT 1997 META\-INF/JANE.DSA
++.fl
++ 199 Fri Sep 27 12:22:30 PDT 1997 META\-INF/DUKE.SF
++.fl
++ 1013 Fri Sep 27 12:22:30 PDT 1997 META\-INF/DUKE.DSA
++.fl
++ smki 2752 Fri Sep 26 16:12:30 PDT 1997 writeFile.html
++.fl
++
++.fl
++ X.509, CN=Jane Smith, OU=Java Software, O=Sun, L=cup, S=ca, C=us (jane)
++.fl
++ X.509, CN=Duke, OU=Java Software, O=Sun, L=cup, S=ca, C=us [duke]
++.fl
++
++.fl
++ s = signature was verified
++.fl
++ m = entry is listed in manifest
++.fl
++ k = at least one certificate was found in keystore
++.fl
++ i = at least one certificate was found in identity scope
++.fl
++
++.fl
++ jar verified.
++.fl
++\fP
++.fi
++
++.LP
++.LP
++ÊÌ̾duke¤Ï³Ñ³ç¸Ì¤Ç°Ï¤Þ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¤³¤ÎÊÌ̾¤Ï¥­¡¼¥¹¥È¥¢¤ÎÊÌ̾¤Ç¤Ï¤Ê¤¯¡¢¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎÊÌ̾¤Ç¤¹¡£
++.LP
++.SH "·Ù¹ð"
++.LP
++½ð̾/¸¡¾Ú½èÍýÃæ¤Ë¤Ï¡¢jarsigner¤«¤éÍÍ¡¹¤Ê·Ù¹ð¤¬É½¼¨¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤é¤Î·Ù¹ð¥³¡¼¥É¤Ï¼¡¤Î¤è¤¦¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ hasExpiringCert 2
++.fl
++ This jar contains entries whose signer certificate will expire within six months
++.fl
++
++.fl
++ hasExpiredCert 4
++.fl
++ This jar contains entries whose signer certificate has expired.
++.fl
++
++.fl
++ notYetValidCert 4
++.fl
++ This jar contains entries whose signer certificate is not yet valid.
++.fl
++
++.fl
++ chainNotValidated 4
++.fl
++ This jar contains entries whose certificate chain cannot be correctly validated.
++.fl
++
++.fl
++ badKeyUsage 8
++.fl
++ This jar contains entries whose signer certificate's KeyUsage extension doesn't allow code signing.
++.fl
++
++.fl
++ badExtendedKeyUsage 8
++.fl
++ This jar contains entries whose signer certificate's ExtendedKeyUsage extension
++.fl
++ doesn't allow code signing.
++.fl
++
++.fl
++ badNetscapeCertType 8
++.fl
++ This jar contains entries whose signer certificate's NetscapeCertType extension
++.fl
++ doesn't allow code signing.
++.fl
++
++.fl
++ hasUnsignedEntry 16
++.fl
++ This jar contains unsigned entries which have not been integrity\-checked.
++.fl
++
++.fl
++ notSignedByAlias 32
++.fl
++ This jar contains signed entries which are not signed by the specified alias(es)
++.fl
++
++.fl
++ aliasNotInStore 32
++.fl
++ This jar contains signed entries that are not signed by alias in this keystore
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2\-strict\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¸¡½Ð¤µ¤ì¤¿·Ù¹ð¤ÎOR¤ò¼è¤Ã¤¿Ãͤ¬¥Ä¡¼¥ë¤Î½ªÎ»¥³¡¼¥É¤È¤·¤ÆÊÖ¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥¨¥ó¥È¥ê¤Î½ð̾¤Ë»ÈÍѤµ¤ì¤ë¾ÚÌÀ½ñ¤¬´ü¸ÂÀÚ¤ì¤Ë¤Ê¤Ã¤Æ¤¤¤Æ¡¢¤«¤Ä¤½¤Î¾ÚÌÀ½ñ¤ÎkeyUsage³ÈÄ¥¤Ç¥Õ¥¡¥¤¥ë¤Î½ð̾¤¬µö²Ä¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢½ªÎ»¥³¡¼¥É12(=4+8)¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ\fP: UNIX¤Ç»ÈÍѲÄǽ¤ÊÃͤÏ0¤«¤é255¤Î¤ß¤Ç¤¢¤ë¤¿¤á¡¢½ªÎ»¥³¡¼¥É¤ÏºÆÍøÍѤµ¤ì¤Þ¤¹¡£¤¤¤º¤ì¤Ë¤·¤Æ¤â¡¢½ð̾/¸¡¾Ú½èÍý¤¬¼ºÇÔ¤¹¤ë¤È¡¢¼¡¤Î½ªÎ»¥³¡¼¥É¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++failure 1
++.fl
++\fP
++.fi
++
++.LP
++.SS
++JDK 1.1¤È¤Î¸ß´¹À­
++.LP
++.LP
++\f3keytool\fP¥Ä¡¼¥ë¤È\f3jarsigner\fP¥Ä¡¼¥ë¤Ï¡¢JDK 1.1¤ÇÄ󶡤µ¤ì¤Æ¤¤¤¿\f3javakey\fP¥Ä¡¼¥ë¤ò´°Á´¤ËÃÖ¤­´¹¤¨¤ë¤â¤Î¤Ç¤¹¡£¤³¤ì¤é¤Î¿·¤·¤¤¥Ä¡¼¥ë¤Ï¡¢¥­¡¼¥¹¥È¥¢¤ÈÈëÌ©¸°¤ò¥Ñ¥¹¥ï¡¼¥É¤ÇÊݸ¤ëµ¡Ç½¤ä¡¢½ð̾¤ÎÀ¸À®¤Ë²Ã¤¨¤Æ½ð̾¤ò¸¡¾Ú¤¹¤ëµ¡Ç½¤Ê¤É¡¢\f3javakey\fP¤è¤ê¿¤¯¤Î¤òµ¡Ç½¤òÈ÷¤¨¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++¿·¤·¤¤¥­¡¼¥¹¥È¥¢¡¦¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¡¢\f3javakey\fP¤¬ºîÀ®¤·¤Æ´ÉÍý¤·¤Æ¤¤¤¿¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÂå¤ï¤ë¤â¤Î¤Ç¤¹¡£¥­¡¼¥¹¥È¥¢·Á¼°¤È¡¢1.1¤Î\f3javakey\fP¤¬»ÈÍѤ·¤Æ¤¤¤¿¥Ç¡¼¥¿¥Ù¡¼¥¹·Á¼°¤È¤Î´Ö¤Ë¤Ï²¼°Ì¸ß´¹À­¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¼¡¤Î¤³¤È¤Ï²Äǽ¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f3keytool\fP¤Î\f2\-identitydb\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¾ðÊó¤ò¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++\f3jarsigner\fP¤Ï¡¢°ÊÁ°¤Ë\f3javakey\fP¤ò»ÈÍѤ·¤Æ½ð̾¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++\f3jarsigner\fP¤Ï¡¢\f3javakey\fP¤ò»ÈÍѤ·¤Æ½ð̾¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤ò¸¡¾Ú¤Ç¤­¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢Java 2 SDK¤Î¥­¡¼¥¹¥È¥¢¤Ç¤Ï¤Ê¤¯JDK 1.1¤Î¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤é¤Î½ð̾¼ÔÊÌ̾¤òǧ¼±¤·¡¢¤³¤ì¤é¤òÂоݤ˽èÍý¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¼¡¤Îɽ¤Ï¡¢JDK 1.1.x¤Ç½ð̾¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤¬¡¢Java 2¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤É¤Î¤è¤¦¤Ë°·¤ï¤ì¤ë¤«¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81 82 83 84
++.nr 34 \n(.lu
++.eo
++.am 80
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3JAR¥Õ¥¡¥¤¥ë¤Î¥¿¥¤¥×\fP
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f31.1¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤Î¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£\fP
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 82
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(82 .ll \n(82u
++.in 0
++\f31.1¥Ç¡¼¥¿¥Ù¡¼¥¹¤«¤éJava 2 Platform¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤ë¿®Íê¤Ç¤­¤ë¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£(4)\fP
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 83
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(83 .ll \n(83u
++.in 0
++\f3¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤¬¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£/ÊÌ̾¤ËÆø¢¤òÉÕÍ¿\fP
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¤Ï¤¤/¿®Íê¤Ç¤­¤Ê¤¤
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢(3)
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¤Ï¤¤/¿®Íê¤Ç¤­¤Ê¤¤
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢(1¡¢3)
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢¤È¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ëÆâ¤ÇÉÕÍ¿¤µ¤ì¤ëÆø¢
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 84
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/6u
++.if \n(.l<\n(84 .ll \n(84u
++.in 0
++¤¹¤Ù¤Æ¤Î¥³¡¼¥É¤ËÉÕÍ¿¤µ¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤ÎÆø¢¤È¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ëÆâ¤ÇÉÕÍ¿¤µ¤ì¤ëÆø¢(2)
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾¤Î¤Ê¤¤JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w½ð̾ÉÕ¤­JAR
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 38 \n(a-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.nr 38 \w¤¤¤¤¤¨
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤Ï¤¤/¿®Íê¤Ç¤­¤ë
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤Ï¤¤/¿®Íê¤Ç¤­¤ë
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤Ï¤¤/¿®Íê¤Ç¤­¤ë
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¤Ï¤¤/¿®Íê¤Ç¤­¤ë
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 82 0
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(82<\n(38 .nr 82 \n(38
++.82
++.rm 82
++.nr 38 \n(c-
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 83 0
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤¤¤¤¤¨
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 38 \w¤Ï¤¤
++.if \n(83<\n(38 .nr 83 \n(38
++.83
++.rm 83
++.nr 38 \n(d-
++.if \n(83<\n(38 .nr 83 \n(38
++.nr 84 0
++.nr 38 \w\f3ÉÕÍ¿¤µ¤ì¤ëÆø¢\fP
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \w¤¹¤Ù¤Æ¤ÎÆø¢
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \w¤¹¤Ù¤Æ¤ÎÆø¢(1)
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \w¤¹¤Ù¤Æ¤ÎÆø¢(1)
++.if \n(84<\n(38 .nr 84 \n(38
++.84
++.rm 84
++.nr 38 \n(e-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(f-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(g-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(i-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(k-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(l-
++.if \n(84<\n(38 .nr 84 \n(38
++.nr 38 \n(m-
++.if \n(84<\n(38 .nr 84 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr 42 \n(81+(3*\n(38)
++.nr 82 +\n(42
++.nr 43 \n(82+(3*\n(38)
++.nr 83 +\n(43
++.nr 44 \n(83+(3*\n(38)
++.nr 84 +\n(44
++.nr TW \n(84
++.if t .if \n(TW>\n(.li .tm Table at line 1090 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ne \n(a|u+\n(.Vu
++.ne \n(b|u+\n(.Vu
++.ne \n(c|u+\n(.Vu
++.ne \n(d|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'\h'|\n(43u'\h'|\n(44u'\f3ÉÕÍ¿¤µ¤ì¤ëÆø¢\fP
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(42u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(43u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤¤¤¤¤¨\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾¤Î¤Ê¤¤JAR\h'|\n(41u'¤¤¤¤¤¨\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤¤¤¤¤¨\h'|\n(42u'¤Ï¤¤\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.ne \n(i|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.ne \n(k|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤Ï¤¤\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤¤¤¤¤¨\h'|\n(42u'¤Ï¤¤\h'|\n(43u'¤Ï¤¤\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(m|u+\n(.Vu
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤Ï¤¤/¿®Íê¤Ç¤­¤ë\h'|\n(42u'¤Ï¤¤\h'|\n(43u'¤Ï¤¤\h'|\n(44u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(44u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤Ï¤¤/¿®Íê¤Ç¤­¤ë\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'¤¹¤Ù¤Æ¤ÎÆø¢
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤Ï¤¤/¿®Íê¤Ç¤­¤ë\h'|\n(42u'¤Ï¤¤\h'|\n(43u'¤¤¤¤¤¨\h'|\n(44u'¤¹¤Ù¤Æ¤ÎÆø¢(1)
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'½ð̾ÉÕ¤­JAR\h'|\n(41u'¤Ï¤¤/¿®Íê¤Ç¤­¤ë\h'|\n(42u'¤¤¤¤¤¨\h'|\n(43u'¤Ï¤¤\h'|\n(44u'¤¹¤Ù¤Æ¤ÎÆø¢(1)
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-50
++
++.LP
++.LP
++Ãí°Õ:
++.LP
++.RS 3
++.TP 3
++1.
++¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£/ÊÌ̾¤Ë¤Ä¤¤¤Æ¤Î¸ÀµÚ¤¬¤¢¤ë¾ì¹ç¡¢¤½¤ì¤ò¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤·¤Æ¡¢ÉÕÍ¿¤µ¤ì¤¿Æø¢¤Ë¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ÎÀßÄ꤬ȿ±Ç¤µ¤ì¤ë¤è¤¦¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++2.
++¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë/¥­¡¼¥¹¥È¥¢¤ÎÁȹ礻¤Ï¡¢¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡¦¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤Î¿®Íê¤Ç¤­¤ë¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤è¤ê¤âÍ¥À褵¤ì¤Þ¤¹¡£
++.TP 3
++3.
++Java 2¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï¡¢¿®Íê¤Ç¤­¤Ê¤¤¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£
++.TP 3
++4.
++Java 2 SDK¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤ë¤Î¤Ï¡¢¿®Íê¤Ç¤­¤ë¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤Î¤ß¤Ç¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jar(1)¥Ä¡¼¥ë¤Î¥É¥­¥å¥á¥ó¥È
++.TP 2
++o
++keytool(1)¥Ä¡¼¥ë¤Î¥É¥­¥å¥á¥ó¥È
++.TP 2
++o
++\f3jarsigner\fP¥Ä¡¼¥ë¤Î»ÈÍÑÎã¤Ï¡¢
++.na
++\f4Java¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/index.html¤Î
++.na
++\f4¥»¥­¥å¥ê¥Æ¥£\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/security/index.html¤ò»²¾È
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/java.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/java.1 2013-03-09 08:44:53.000000000 -0800
+@@ -1,4 +1,4 @@
+-." Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
++." Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved.
+ ." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ ."
+ ." This code is free software; you can redistribute it and/or modify it
+@@ -19,6 +19,632 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH java 1 "07 May 2011"
++.TH java 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++java \- Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++ \fP\f3java\fP [ options ] class [ argument ... ]
++.fl
++ \f3java\fP [ options ] \f3\-jar\fP file.jar [ argument ... ]
++.fl
++.fi
++
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£
++.TP 3
++class
++¸Æ¤Ó½Ð¤µ¤ì¤ë¥¯¥é¥¹¤Î̾Á°¡£
++.TP 3
++file.jar
++¸Æ¤Ó½Ð¤µ¤ì¤ëJAR¥Õ¥¡¥¤¥ë¤Î̾Á°¡£\f2\-jar\fP¤È¤È¤â¤Ë¤Î¤ß»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++argument
++\f3main\fP´Ø¿ô¤ËÅϤµ¤ì¤ë°ú¿ô¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3java\fP¥Ä¡¼¥ë¤Ï¡¢Java¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òµ¯Æ°¤·¤Þ¤¹¡£java¥Ä¡¼¥ë¤Ï¡¢Java Runtime Environment¤òµ¯Æ°¤·¤¿¸å¡¢»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤ò¥í¡¼¥É¤·¡¢¤½¤Î¥¯¥é¥¹¤Î\f3main\fP¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤¹¤³¤È¤Ë¤è¤ê¡¢Java¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++¤³¤Î¥á¥½¥Ã¥É¤Ï¡¢public¤ª¤è¤Óstatic¤È¤·¤ÆÀë¸À¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢ÃͤÏÊÖ¤»¤Þ¤»¤ó¡£¤µ¤é¤Ë¡¢\f2String\fPÇÛÎó¤ò¥Ñ¥é¥á¡¼¥¿¤È¤·¤Æ»ØÄê¤Ç¤­¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥á¥½¥Ã¥É¤ÎÀë¸À¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++public static void main(String args[])
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó°Ê³°¤ÎºÇ½é¤Î°ú¿ô¤¬¡¢¸Æ¤Ó½Ð¤µ¤ì¤ë¥¯¥é¥¹¤Î̾Á°¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î̾Á°¤Ë¤Ï¡¢´°Á´½¤¾þ¥¯¥é¥¹Ì¾¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f3\-jar\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó°Ê³°¤ÎºÇ½é¤Î°ú¿ô¤¬¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò´Þ¤à\f3JAR\fP¥¢¡¼¥«¥¤¥Ö¤Î̾Á°¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¥Þ¥Ë¥Õ¥§¥¹¥È¤Î\f3Main\-Class\fP¥Ø¥Ã¥À¡¼¤Ç»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤¬µ¯Æ°¥¯¥é¥¹¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++Java Runtime¤Ï¡¢¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¡¢¥¤¥ó¥¹¥È¡¼¥ëºÑ³ÈÄ¥µ¡Ç½¤ª¤è¤Ó¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î3²Õ½ê¤«¤éµ¯Æ°¥¯¥é¥¹¤È¾¤Î»ÈÍѤµ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤ò¸¡º÷¤·¤Þ¤¹¡£
++.LP
++.LP
++¥¯¥é¥¹Ì¾¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë̾¤Î¸å¤Ë¤¢¤ë¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó°Ê³°¤Î°ú¿ô¤Ï¡¢\f3main\fP´Ø¿ô¤ËÅϤµ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++µ¯Æ°¥Ä¡¼¥ë¤Ë¤Ï¡¢¸½ºß¤Î¼Â¹Ô´Ä¶­¤ª¤è¤Ó¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëɸ½à¥ª¥×¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢²¾ÁÛ¥Þ¥·¥ó¤Î¸½ºß¤Î¼ÂÁõ¤Ç¤Ï¡¢Èóɸ½à¥ª¥×¥·¥ç¥ó¤Î¥»¥Ã¥È¤â¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤ÇÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "ɸ½à¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-client
++Java HotSpot Client VM¤òÁªÂò¤·¤Þ¤¹¡£64¥Ó¥Ã¥ÈÂбþJDK¤Ï¸½»þÅÀ¤Ç¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ò̵»ë¤·¡¢¤«¤ï¤ê¤ËJava Hotspot Server VM¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++¥Ç¥Õ¥©¥ë¥È¤ÎVM¤ÎÁªÂò¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2¥µ¡¼¥Ð¡¼ \- ¥¯¥é¥¹¡¦¥Þ¥·¥ó¤Î¸¡½Ð\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-server
++Java HotSpot Server VM¤òÁªÂò¤·¤Þ¤¹¡£64¥Ó¥Ã¥ÈÂбþJDK¾å¤Ç¤Ï¡¢¥µ¥Ý¡¼¥È¤µ¤ì¤ë¤Î¤ÏJava Hotspot Server VM¤Î¤ß¤Ç¤¢¤ë¤¿¤á¡¢\-server¥ª¥×¥·¥ç¥ó¤¬°ÅÌÛŪ¤ËÁªÂò¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¥Ç¥Õ¥©¥ë¥È¤ÎVM¤ÎÁªÂò¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2¥µ¡¼¥Ð¡¼ \- ¥¯¥é¥¹¡¦¥Þ¥·¥ó¤Î¸¡½Ð\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-agentlib:libname[=options]
++¥Í¥¤¥Æ¥£¥Ö¡¦¥¨¡¼¥¸¥§¥ó¥È¡¦¥é¥¤¥Ö¥é¥ê\f2libname\fP¤ò¥í¡¼¥É¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.br
++.br
++\-agentlib:hprof
++.br
++.br
++\-agentlib:jdwp=help
++.br
++.br
++\-agentlib:hprof=help
++.br
++.br
++¾ÜºÙ¤Ï¡¢
++.na
++\f2JVMTI¥¨¡¼¥¸¥§¥ó¥È¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-agentpath:pathname[=options]
++¥Õ¥ë¥Ñ¥¹Ì¾¤ò»ÈÍѤ·¤Æ¡¢¥Í¡¼¥Æ¥£¥Ö¡¦¥¨¡¼¥¸¥§¥ó¥È¡¦¥é¥¤¥Ö¥é¥ê¤ò¥í¡¼¥É¤·¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2JVMTI¥¨¡¼¥¸¥§¥ó¥È¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-classpath classpath
++.TP 3
++\-cp classpath
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤ª¤è¤ÓZIP¥¢¡¼¥«¥¤¥Ö¤Î¥ê¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Ñ¥¹¤Î³Æ¥¨¥ó¥È¥ê¤Ï¥³¥í¥ó(\f3:\fP)¤Ç¶èÀÚ¤ê¤Þ¤¹¡£\f3\-classpath\fP¤Þ¤¿¤Ï\f3\-cp\fP¤ò»ØÄꤹ¤ë¤È¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ÎÃͤˤè¤Ã¤Æ\f3CLASSPATH\fP´Ä¶­ÊÑ¿ô¤ÎÀßÄ꤬¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f3\-classpath\fP¤â\f3\-cp\fP¤â»ÈÍѤµ¤ì¤º¡¢\f3CLASSPATH\fP¤âÀßÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê(\f4.\fP)¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++Êص¹¾å¡¢\f2*\fP¤Î¥Ù¡¼¥¹Ì¾¤ò´Þ¤à¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁǤϡ¢\f2.jar\fP¤Þ¤¿¤Ï\f2.JAR\fP¤ò³ÈÄ¥»Ò¤Ë»ý¤Ä¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ò»ØÄꤹ¤ë¤Î¤ÈƱÅù¤È¤ß¤Ê¤µ¤ì¤Þ¤¹(java¥×¥í¥°¥é¥à¤Ï¤³¤Î2¤Ä¤Î¸Æ½Ð¤·¤ò¶èÊ̤Ǥ­¤Þ¤»¤ó)¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¥Ç¥£¥ì¥¯¥È¥ê\f2foo\fP¤Ë\f2a.jar\fP¤È\f2b.JAR\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁÇ\f2foo/*\fP¤Ï\f2A.jar:b.JAR\fP¤ËŸ³«¤µ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢JAR¥Õ¥¡¥¤¥ë¤Î½çÈÖ¤Ï̤»ØÄê¤È¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥ê¥¹¥È¤Ë¤Ï¡¢±£¤·¥Õ¥¡¥¤¥ë¤â´Þ¤á¡¢»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Þ¤¹¡£\f2*\fP¤Î¤ß¤«¤é¤Ê¤ë¥¯¥é¥¹¡¦¥Ñ¥¹¡¦¥¨¥ó¥È¥ê¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ËŸ³«¤µ¤ì¤Þ¤¹¡£\f2CLASSPATH\fP´Ä¶­ÊÑ¿ô¤â¡¢ÄêµÁ»þ¤Ë¤ÏƱÍͤËŸ³«¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥ï¥¤¥ë¥É¥«¡¼¥ÉŸ³«¤Ïɬ¤º¡¢Java²¾ÁÛ¥Þ¥·¥ó¤Îµ¯Æ°Á°¤Ë¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢´Ä¶­¤ËÌä¹ç¤»¤ò¹Ô¤ï¤Ê¤¤¸Â¤ê¡¢Java¥×¥í¥°¥é¥à¤¬Å¸³«¤µ¤ì¤Æ¤¤¤Ê¤¤¥ï¥¤¥ë¥É¥«¡¼¥É¤òǧ¼±¤¹¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2System.getenv(\\"CLASSPATH\\")\fP¸Æ½Ð¤·¤¬¤½¤ÎÎã¤Ç¤¹¡£
++.br
++.br
++¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÀßÄê\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Dproperty=value
++¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤ÎÃͤòÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-d32
++.TP 3
++\-d64
++¤½¤ì¤¾¤ì32¥Ó¥Ã¥È´Ä¶­¡¢64¥Ó¥Ã¥È´Ä¶­¤Ç¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤¹¤ë¤³¤È¤ò¥ê¥¯¥¨¥¹¥È¤·¤Þ¤¹¡£¥ê¥¯¥¨¥¹¥È¤µ¤ì¤¿´Ä¶­¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥¨¥é¡¼¤¬Êó¹ð¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¸½ºß¤Î¤È¤³¤í¡¢Java HotSpot Server VM¤Î¤ß¤¬64¥Ó¥Ã¥È¤ÎÁàºî¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤¿¤á¡¢\-d64»ÈÍÑ»þ¤Ë¤Ï\-server¥ª¥×¥·¥ç¥ó¤¬°ÅÌÛŪ¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\-d64»ÈÍÑ»þ¤Ë¤Ï¡Ö\-client¡×¥ª¥×¥·¥ç¥ó¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¤³¤Î»ÅÍͤϡ¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤ÏÊѹ¹¤Ë¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++\f3\-d32\fP¤È\f3\-d64\fP¤¬¤É¤Á¤é¤â»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤È¤·¤Æ¡¢32¥Ó¥Ã¥È´Ä¶­¤Ç¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤³¤Î»ÅÍͤϡ¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤ÏÊѹ¹¤Ë¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-enableassertions[:<package name>"..." | :<class name> ]
++.TP 3
++\-ea[:<package name>"..." | :<class name> ]
++.TP 3
++\-disableassertions[:<package name>"..." | :<class name> ]
++.TP 3
++\-da[:<package name>"..." | :<class name> ]
++¥¢¥µ¡¼¥·¥ç¥ó¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¹¡£
++.br
++.br
++°ú¿ô¤Ê¤·¤Î\f3disableassertions\fP¤Þ¤¿¤Ï\f3\-da\fP¤ò»ØÄꤹ¤ë¤È¡¢¥¢¥µ¡¼¥·¥ç¥ó¤¬Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¡Ö\f2...\fP¡×¤Ç½ª¤ï¤ë°ú¿ô¤ò1¤Ä»ØÄꤹ¤ë¤È¡¢»ØÄꤷ¤¿¥Ñ¥Ã¥±¡¼¥¸¤È¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£°ú¿ô¤È¤·¤Æ¡Ö\f2...\fP¡×¤Î¤ß¤ò»ØÄꤹ¤ë¤È¡¢¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¢¤ë̾Á°¤Î¤Ê¤¤¥Ñ¥Ã¥±¡¼¥¸Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¡Ö\f2...\fP¡×¤Ç½ª¤ï¤é¤Ê¤¤°ú¿ô¤ò1¤Ä»ØÄꤹ¤ë¤È¡¢»ØÄꤷ¤¿¥¯¥é¥¹Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++¥Ñ¥Ã¥±¡¼¥¸\f2com.wombat.fruitbat\fPÆâ¤Ç¤Ï¥¢¥µ¡¼¥·¥ç¥ó¤òÍ­¸ú¤Ë¤·¡¢¥¯¥é¥¹\f2com.wombat.fruitbat.Brickbat\fPÆâ¤Ç¤Ï¥¢¥µ¡¼¥·¥ç¥ó¤ò̵¸ú¤Ë¤·¤¿¤¦¤¨¤Ç¡¢¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++java \-ea:com.wombat.fruitbat... \-da:com.wombat.fruitbat.Brickbat \fP\f4<Main Class>\fP\f3
++.fl
++\fP
++.fi
++\f3\-disableassertions\fP¤ª¤è¤Ó\f3\-da\fP¥¹¥¤¥Ã¥Á¤Ï¡¢\f2¤¹¤Ù¤Æ¤Î\fP¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ª¤è¤Ó¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤ËŬÍѤµ¤ì¤Þ¤¹¡£¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤Ë¤Ï¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¤³¤Î¥ë¡¼¥ë¤Ë¤Ï1¤ÄÎã³°¤¬¤¢¤ê¤Þ¤¹¡£¤½¤ì¤Ï¡¢°ú¿ô¤Ê¤·¤Î·Á¼°¤Ç¤³¤Î¥¹¥¤¥Ã¥Á¤ò»ØÄꤹ¤ë¤È¡¢¤½¤Î»ØÄ꤬¥·¥¹¥Æ¥à¤ËŬÍÑ\f2¤µ¤ì¤Ê¤¤\fP¡¢¤È¤¤¤¦¤³¤È¤Ç¤¹¡£¤³¤ÎÎã³°¤òÍøÍѤ¹¤ì¤Ð¡¢¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤ò½ü¤¯¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤ò´Êñ¤ËÍ­¸ú¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤ò̵¸ú¤Ë¤¹¤ë¤¿¤á¤Ë¡¢Ê̤Υ¹¥¤¥Ã¥Á¤¬ÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¸å¤Î\f3\-disablesystemassertions\fP¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++¥¢¥µ¡¼¥·¥ç¥ó¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¥¢¥µ¡¼¥·¥ç¥ó¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
++.br
++.br
++°ú¿ô¤Ê¤·¤Î\f3enableassertions\fP¤Þ¤¿¤Ï\f3\-ea\fP¤ò»ØÄꤹ¤ë¤È¡¢¥¢¥µ¡¼¥·¥ç¥ó¤¬Í­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¡Ö\f2...\fP¡×¤Ç½ª¤ï¤ë°ú¿ô¤ò1¤Ä»ØÄꤹ¤ë¤È¡¢»ØÄꤷ¤¿¥Ñ¥Ã¥±¡¼¥¸¤È¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Í­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£°ú¿ô¤È¤·¤Æ¡Ö\f2...\fP¡×¤Î¤ß¤ò»ØÄꤹ¤ë¤È¡¢¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¢¤ë̾Á°¤Î¤Ê¤¤¥Ñ¥Ã¥±¡¼¥¸Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Í­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¡Ö\f2...\fP¡×¤Ç½ª¤ï¤é¤Ê¤¤°ú¿ô¤ò1¤Ä»ØÄꤹ¤ë¤È¡¢»ØÄꤷ¤¿¥¯¥é¥¹Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤¬Í­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++ñ°ì¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤³¤ì¤é¤Î¥¹¥¤¥Ã¥Á¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤òÊ£¿ô»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢»ØÄꤷ¤¿¥¹¥¤¥Ã¥Á¤¬½çÈ֤˽èÍý¤µ¤ì¤Æ¤«¤é¥¯¥é¥¹¤¬¥í¡¼¥É¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¤¿¤È¤¨¤Ð¡¢¥Ñ¥Ã¥±¡¼¥¸\f2com.wombat.fruitbat\fP(¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤ò´Þ¤à)Æâ¤Ç¤Î¤ß¥¢¥µ¡¼¥·¥ç¥ó¤òÍ­¸ú¤Ë¤·¤Æ¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++java \-ea:com.wombat.fruitbat... <Main Class>
++.fl
++\fP
++.fi
++\f3\-enableassertions\fP¤ª¤è¤Ó\f3\-ea\fP¥¹¥¤¥Ã¥Á¤Ï¡¢\f2¤¹¤Ù¤Æ¤Î\fP¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ª¤è¤Ó¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤ËŬÍѤµ¤ì¤Þ¤¹¡£¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤Ë¤Ï¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¤³¤Î¥ë¡¼¥ë¤Ë¤Ï1¤ÄÎã³°¤¬¤¢¤ê¤Þ¤¹¡£¤½¤ì¤Ï¡¢°ú¿ô¤Ê¤·¤Î·Á¼°¤Ç¤³¤Î¥¹¥¤¥Ã¥Á¤ò»ØÄꤹ¤ë¤È¡¢¤½¤Î»ØÄ꤬¥·¥¹¥Æ¥à¤ËŬÍÑ\f2¤µ¤ì¤Ê¤¤\fP¡¢¤È¤¤¤¦¤³¤È¤Ç¤¹¡£¤³¤ÎÎã³°¤òÍøÍѤ¹¤ì¤Ð¡¢¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤ò½ü¤¯¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤ò´Êñ¤ËÍ­¸ú¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤ò̵¸ú¤Ë¤¹¤ë¤¿¤á¤Ë¡¢Ê̤Υ¹¥¤¥Ã¥Á¤¬ÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¸å¤Î\f3\-enablesystemassertions\fP¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-enablesystemassertions
++.TP 3
++\-esa
++¤¹¤Ù¤Æ¤Î¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ\f2¥¢¥µ¡¼¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥¹¥Æ¡¼¥¿¥¹\fP¤ò\f2true\fP¤ËÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-disablesystemassertions
++.TP 3
++\-dsa
++¤¹¤Ù¤Æ¤Î¥·¥¹¥Æ¥à¡¦¥¯¥é¥¹Æâ¤Ç¥¢¥µ¡¼¥·¥ç¥ó¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-help¤Þ¤¿¤Ï\-?
++»ÈÍÑÊýË¡¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-jar
++JAR¥Õ¥¡¥¤¥ë¤Ë¥«¥×¥»¥ë²½¤µ¤ì¤¿¥×¥í¥°¥é¥à¤ò¼Â¹Ô¤·¤Þ¤¹¡£ºÇ½é¤Î°ú¿ô¤Ï¡¢µ¯Æ°¥¯¥é¥¹¤Î̾Á°¤Ç¤Ï¤Ê¤¯¡¢JAR¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬µ¡Ç½¤¹¤ë¤Ë¤Ï¡¢JAR¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë\f3¡ÖMain\-Class:\fP\f4classname\fP\f3¡×\fP¤È¤¤¤¦·Á¼°¤Î¹Ô¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2classname\fP¤Ë¤Ï¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î³«»Ï°ÌÃ֤Ȥ·¤Æµ¡Ç½¤¹¤ë\f2public\ static\ void\ main(String[]\ args)\fP¥á¥½¥Ã¥É¤ò´Þ¤à¥¯¥é¥¹¤ò»ØÄꤷ¤Þ¤¹¡£JAR¥Õ¥¡¥¤¥ë¤È¤½¤Î¥Þ¥Ë¥Õ¥§¥¹¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢jar(1)¤È¡¢
++.na
++\f2Java¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/deployment/jar/¤Î¡ÖTrail: Jar Files¡×¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£\
++.br
++.br
++¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢»ØÄꤷ¤¿JAR¥Õ¥¡¥¤¥ë¤¬¤¹¤Ù¤Æ¤Î¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¤Î¥½¡¼¥¹¤Ë¤Ê¤ê¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¾¤ÎÀßÄê¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¡Öjava \-jar¡×¥ª¥×¥·¥ç¥ó¤Ç¼Â¹Ô¤Ç¤­¤ëJAR¥Õ¥¡¥¤¥ë¤Ï¡¢¼Â¹Ô¸¢¸Â¤Î¥»¥Ã¥È¤òÊÝ»ý¤·¤Æ¤¤¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢¡Öjava \-jar¡×¤ò»ÈÍѤ·¤Ê¤¤¤Ç¼Â¹Ô¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£
++.na
++\f2Java Archive(JAR)¥Õ¥¡¥¤¥ë\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/index.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-javaagent:jarpath[=options]
++Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¥¨¡¼¥¸¥§¥ó¥È¤ò¥í¡¼¥É¤·¤Þ¤¹¡£
++.na
++\f2java.lang.instrument\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/lang/instrument/package\-summary.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-jre\-restrict\-search
++¥æ¡¼¥¶¡¼¡¦¥×¥é¥¤¥Ù¡¼¥È¤ÊJRE¤ò¥Ð¡¼¥¸¥ç¥ó¸¡º÷¤Ë´Þ¤á¤Þ¤¹¡£
++.TP 3
++\-no\-jre\-restrict\-search
++¥æ¡¼¥¶¡¼¡¦¥×¥é¥¤¥Ù¡¼¥È¤ÊJRE¤ò¥Ð¡¼¥¸¥ç¥ó¸¡º÷¤«¤é½ü³°¤·¤Þ¤¹¡£
++.TP 3
++\-showversion
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ³¹Ô¤·¤Þ¤¹¡£(´ØÏ¢¹àÌÜ: \f3\-version\fP¡£)
++.TP 3
++\-splash:imagepath
++\f2imagepath\fP¤Ë»ØÄꤵ¤ì¤¿²èÁü¤ò´Þ¤à¥¹¥×¥é¥Ã¥·¥å²èÌ̤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-verbose
++.TP 3
++\-verbose:class
++¥¯¥é¥¹¤¬¥í¡¼¥É¤µ¤ì¤ë¤¿¤Ó¤Ë¥¯¥é¥¹¤Ë´Ø¤¹¤ë¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-verbose:gc
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤¬È¯À¸¤¹¤ë¤¿¤Ó¤ËÊó¹ð¤·¤Þ¤¹¡£
++.TP 3
++\-verbose:jni
++¥Í¥¤¥Æ¥£¥Ö¡¦¥á¥½¥Ã¥É¤Î»ÈÍѤª¤è¤Ó¤½¤Î¾¤ÎJava Native Interface(JNI)¥¢¥¯¥Æ¥£¥Ó¥Æ¥£¤Ë´Ø¤¹¤ë¾ðÊó¤òÊó¹ð¤·¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£(´ØÏ¢¹àÌÜ: \f3\-showversion\fP¡£)
++.TP 3
++\-version:release
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë¤¬¡¢\f2release\fP¤Ç»ØÄꤵ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó¤òɬÍפȤ·¤Æ¤¤¤ë¤³¤È¤ò¼¨¤·¤Þ¤¹¡£µ¯Æ°¤µ¤ì¤¿java¥³¥Þ¥ó¥É¤Î¥Ð¡¼¥¸¥ç¥ó¤¬¤³¤Î»ØÄêÆâÍƤòËþ¤¿¤µ¤º¡¢¤«¤ÄŬÀڤʼÂÁõ¤¬¥·¥¹¥Æ¥à¾å¤Ç¸«¤Ä¤«¤Ã¤¿¾ì¹ç¤Ë¤Ï¡¢¤½¤ÎŬÀڤʼÂÁõ¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.br
++.br
++\f2release\fP¤Ç¤Ï¡¢ÆÃÄê¤Î¥Ð¡¼¥¸¥ç¥ó¤ò»ØÄê¤Ç¤­¤ë¤Î¤ß¤Ç¤Ê¤¯¡¢¥Ð¡¼¥¸¥ç¥óʸ»úÎó¤È¸Æ¤Ð¤ì¤ë¥Ð¡¼¥¸¥ç¥ó¤Î¥ê¥¹¥È¤ò»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥óʸ»úÎó¤Ï¡¢¤¤¤¯¤Ä¤«¤Î¥Ð¡¼¥¸¥ç¥óÈϰϤò¶õÇò¤Ç¶èÀڤä¿·Á¼°¤Î½ç½øÉÕ¤­¥ê¥¹¥È¤Ç¤¹¡£¥Ð¡¼¥¸¥ç¥óÈϰϤϡ¢¥Ð¡¼¥¸¥ç¥óID¡¢¥Ð¡¼¥¸¥ç¥óID¤Î¸å¤Ë¥¢¥¹¥¿¥ê¥¹¥¯(*)¤òÉղä·¤¿¤â¤Î¡¢¥Ð¡¼¥¸¥ç¥óID¤Î¸å¤Ë¥×¥é¥¹µ­¹æ(+)¤òÉղä·¤¿¤â¤Î¡¢2¤Ä¤Î¥Ð¡¼¥¸¥ç¥óÈϰϤò¥¢¥ó¥Ñ¥µ¥ó¥É(&)¤Ç·ë¹ç¤·¤¿¤â¤Î¡¢¤Î¤¤¤º¤ì¤«¤Ë¤Ê¤ê¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¥×¥ì¥Õ¥£¥Ã¥¯¥¹°ìÃפò¡¢¥×¥é¥¹µ­¹æ¤Ï»ØÄꤵ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó°Ê¾å¤ò¡¢¥¢¥ó¥Ñ¥µ¥ó¥É¤Ï2¤Ä¤Î¥Ð¡¼¥¸¥ç¥óÈϰϤÎÏÀÍýÀѤò¡¢¤½¤ì¤¾¤ì°ÕÌ£¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\-version:"1.6.0_13 1.6*&1.6.0_10+"
++.fl
++\fP
++.fi
++¾åµ­¤Î°ÕÌ£¤Ï¡¢¥Ð¡¼¥¸¥ç¥ó1.6.0_13¡¢1.6¤ò¥Ð¡¼¥¸¥ç¥óID¥×¥ì¥Õ¥£¥Ã¥¯¥¹¤Ë»ý¤Ä1.6.0_10°Ê¾å¤Î¥Ð¡¼¥¸¥ç¥ó¡¢¤Î¤¤¤º¤ì¤«¤ò¥¯¥é¥¹¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë¤¬É¬ÍפȤ·¤Æ¤¤¤ë¡¢¤È¤¤¤¦¤³¤È¤Ç¤¹¡£¥Ð¡¼¥¸¥ç¥óʸ»úÎó¤Î¸·Ì©¤Ê¹½Ê¸¤äÄêµÁ¤Ë¤Ä¤¤¤Æ¤Ï¡¢¡ÖJava Network Launching Protocol&API Specification(JSR\-56)¡×¤Î¡ÖAppendix A¡×¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++JAR¥Õ¥¡¥¤¥ë¤Î¾ì¹ç¤ÏÄ̾¥Ð¡¼¥¸¥ç¥óÍ×·ï¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤹ¤ë¤è¤ê¤â¡¢JAR¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ë¥Õ¥§¥¹¥ÈÆâ¤Ë»ØÄꤹ¤ë¤³¤È¤¬¿ä¾©¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.br
++.br
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Î»ÈÍѤ˴ؤ¹¤ë½ÅÍפʥݥꥷ¡¼¾ðÊó¤Ë¤Ä¤¤¤Æ¤Ï¡¢¸å½Ò¤ÎÃí°Õ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SS
++Èóɸ½à¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-X
++Èóɸ½à¥ª¥×¥·¥ç¥ó¤Ë´Ø¤¹¤ë¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-Xint
++¥¤¥ó¥¿¥×¥ê¥¿ÀìÍѥ⡼¥É¤ÇÆ°ºî¤·¤Þ¤¹¡£¥Í¥¤¥Æ¥£¥Ö¡¦¥³¡¼¥É¤Ø¤Î¥³¥ó¥Ñ¥¤¥ë¤Ï̵¸ú¤Ë¤Ê¤ê¡¢¤¹¤Ù¤Æ¤Î¥Ð¥¤¥È¥³¡¼¥É¤¬¥¤¥ó¥¿¥×¥ê¥¿¤Ë¤è¤Ã¤Æ¼Â¹Ô¤µ¤ì¤Þ¤¹¡£Java HotSpot VM¤ËÂбþ¤¹¤ë¥³¥ó¥Ñ¥¤¥é¤¬Ä󶡤¹¤ë¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¾å¤ÎÍøÅÀ¤Ï¡¢¤³¤Î¥â¡¼¥É¤Ç¤Ï¼Â¸½¤µ¤ì¤Þ¤»¤ó¡£
++.TP 3
++\-Xbatch
++¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¡¦¥³¥ó¥Ñ¥¤¥ë¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£Ä̾VM¤Ç¤Ï¡¢¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¡¦¥³¥ó¥Ñ¥¤¥ë¤¬½ªÎ»¤¹¤ë¤Þ¤Ç¡¢¥á¥½¥Ã¥É¤ò¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¡¦¥¿¥¹¥¯¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤·¡¢¥¤¥ó¥¿¥×¥ê¥¿¡¦¥â¡¼¥É¤Ç¥á¥½¥Ã¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£\f2\-Xbatch\fP¥Õ¥é¥°¤ò»ØÄꤹ¤ë¤È¡¢¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¡¦¥³¥ó¥Ñ¥¤¥ë¤¬Ìµ¸ú¤Ë¤Ê¤ê¡¢¤¹¤Ù¤Æ¤Î¥á¥½¥Ã¥É¤Î¥³¥ó¥Ñ¥¤¥ë¤¬´°Î»¤¹¤ë¤Þ¤Ç¥Õ¥©¥¢¥°¥é¥¦¥ó¥É¡¦¥¿¥¹¥¯¤È¤·¤Æ½èÍý¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-Xbootclasspath:bootclasspath
++¥Ö¡¼¥È¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤ª¤è¤ÓZIP¥¢¡¼¥«¥¤¥Ö¤Î¥ê¥¹¥È¤ò¥³¥í¥ó¤Ç¶èÀڤäƻØÄꤷ¤Þ¤¹¡£»ØÄꤷ¤¿¥Ñ¥¹¤Ë¸ºß¤¹¤ë¥Ö¡¼¥È¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¡¢Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥àJDK¤Ë´Þ¤Þ¤ì¤ë¥Ö¡¼¥È¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¤«¤ï¤ê¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£\f2Ãí°Õ: rt.jarÆâ¤Î¥¯¥é¥¹¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤¹¤ëÌÜŪ¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢¥·¥¹¥Æ¥à¤ËÇÛÃÖ¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£Java Runtime Environment¥Ð¥¤¥Ê¥ê¡¦¥³¡¼¥É¡¦¥é¥¤¥»¥ó¥¹°ãÈ¿¤Ë¤Ê¤ê¤Þ¤¹¡£\fP
++.TP 3
++\-Xbootclasspath/a:path
++¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤ª¤è¤ÓZIP¥¢¡¼¥«¥¤¥Ö¤Î¥Ñ¥¹¤ò¥³¥í¥ó¤Ç¶èÀڤäƻØÄꤷ¤Þ¤¹¡£¥Ñ¥¹¤Ï¥Ç¥Õ¥©¥ë¥È¤Î¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¸å¤ËÄɲ䵤ì¤Þ¤¹¡£
++.TP 3
++\-Xbootclasspath/p:path
++¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤ª¤è¤ÓZIP¥¢¡¼¥«¥¤¥Ö¤Î¥Ñ¥¹¤ò¥³¥í¥ó¤Ç¶èÀڤäƻØÄꤷ¤Þ¤¹¡£¥Ñ¥¹¤Ï¥Ç¥Õ¥©¥ë¥È¤Î¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÁ°¤ËÄɲ䵤ì¤Þ¤¹¡£\f2Ãí°Õ: rt.jarÆâ¤Î¥¯¥é¥¹¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤¹¤ëÌÜŪ¤Ç¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢¥·¥¹¥Æ¥à¤ËÇÛÃÖ¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£Java Runtime Environment¥Ð¥¤¥Ê¥ê¡¦¥³¡¼¥É¡¦¥é¥¤¥»¥ó¥¹°ãÈ¿¤Ë¤Ê¤ê¤Þ¤¹¡£\fP
++.TP 3
++\-Xcheck:jni
++Java Native Interface(JNI)µ¡Ç½¤ËÂФ·¤ÆÄɲåÁ¥§¥Ã¥¯¤ò¹Ô¤¤¤Þ¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢Java²¾ÁÛ¥Þ¥·¥ó¤ÏJNI¥ê¥¯¥¨¥¹¥È¤ò½èÍý¤¹¤ëÁ°¤Ë¡¢JNI´Ø¿ô¤ËÅϤµ¤ì¤ë¥Ñ¥é¥á¡¼¥¿¤È¡¢¼Â¹Ô´Ä¶­¤Î¥Ç¡¼¥¿¤ò¸¡¾Ú¤·¤Þ¤¹¡£Ìµ¸ú¤Ê¥Ç¡¼¥¿¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Í¥¤¥Æ¥£¥Ö¡¦¥³¡¼¥É¤ËÌäÂ꤬¤¢¤ë¤³¤È¤ò¼¨¤·¤Æ¤¤¤ë¤¿¤á¡¢Java²¾ÁÛ¥Þ¥·¥ó¤ÏÃ×̿Ū¥¨¥é¡¼¤òȯÀ¸¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹Äã²¼¤¬Í½ÁÛ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-Xfuture
++¥¯¥é¥¹¤È¥Õ¥¡¥¤¥ë¤Î·Á¼°¤ò¸·Ì©¤Ë¥Á¥§¥Ã¥¯¤·¤Þ¤¹¡£²¼°Ì¸ß´¹À­¤òÊݤĤ¿¤á¡¢JDK¤Î²¾ÁÛ¥Þ¥·¥ó¤¬¼Â¹Ô¤¹¤ë¥Ç¥Õ¥©¥ë¥È¤Î·Á¼°¥Á¥§¥Ã¥¯¤Ï¡¢JDK¥½¥Õ¥È¥¦¥§¥¢¤Î¥Ð¡¼¥¸¥ç¥ó1.1.x¤¬¼Â¹Ô¤¹¤ë¥Á¥§¥Ã¥¯¤ÈƱÄøÅ٤θ·Ì©¤µ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£\f3\-Xfuture\fP¥Õ¥é¥°¤ò»ØÄꤹ¤ë¤È¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë·Á¼°¤Î»ÅÍͤؤνàµò¤ò¶¯²½¤¹¤ë¤¿¤á¤Î¤è¤ê¸·Ì©¤Ê¥Á¥§¥Ã¥¯¤¬Í­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë¤Î¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï¡¢¤è¤ê¸·Ì©¤Ê¥Á¥§¥Ã¥¯¤¬¥Ç¥Õ¥©¥ë¥È¤Ë¤Ê¤ë¤¿¤á¡¢¿·¤·¤¤¥³¡¼¥É¤ò³«È¯¤¹¤ë¤È¤­¤Ë¤Ï¤³¤Î¥Õ¥é¥°¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.TP 3
++\-Xnoclassgc
++¥¯¥é¥¹¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥í¡¼¥ÉºÑ¥¯¥é¥¹¤«¤é¥á¥â¥ê¡¼¤¬²óÉü¤µ¤ì¤ë¤³¤È¤¬¤Ê¤¯¤Ê¤ë¤¿¤á¡¢Á´ÂÎŪ¤Ê¥á¥â¥ê¡¼»ÈÍÑÎ̤¬ÁýÂ礷¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¤ÏOutOfMemoryError¤¬¥¹¥í¡¼¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-Xincgc
++¥¤¥ó¥¯¥ê¥á¥ó¥¿¥ë¡¦¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥¿¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¥¤¥ó¥¯¥ê¥á¥ó¥¿¥ë¡¦¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥¿¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£Í­¸ú¤Ë¤¹¤ë¤È¡¢¥×¥í¥°¥é¥à¤Î¼Â¹ÔÃæ¤Ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¤Ë¤è¤ë°ì»þÄä»ß¤¬È¯À¸¤·¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£¥¤¥ó¥¯¥ê¥á¥ó¥¿¥ë¡¦¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥¿¤Ï¡¢¥×¥í¥°¥é¥à¤ÈƱ»þ¤Ë¼Â¹Ô¤¹¤ë¤³¤È¤¬¤¢¤ê¡¢¤³¤Î¾ì¹ç¡¢¥×¥í¥°¥é¥à¤ÎÍøÍѤǤ­¤ë¥×¥í¥»¥Ã¥µÇ½ÎϤ¬Äã²¼¤·¤Þ¤¹¡£
++.TP 3
++\-Xloggc:file
++\-verbose:gc¤ÈƱÍͤ˥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤¬È¯À¸¤¹¤ë¤¿¤Ó¤ËÊó¹ð¤·¤Þ¤¹¤¬¡¢¤½¤Î¥Ç¡¼¥¿¤ò\f2file\fP¤Ëµ­Ï¿¤·¤Þ¤¹¡£\f2\-verbose:gc\fP¤ò»ØÄꤷ¤¿¤È¤­¤ËÊó¹ð¤µ¤ì¤ë¾ðÊó¤Î¾¤Ë¡¢Êó¹ð¤µ¤ì¤ë³Æ¥¤¥Ù¥ó¥È¤ÎÀèƬ¤Ë¡¢ºÇ½é¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤«¤é¤Î·Ð²á»þ´Ö(ÉÃñ°Ì)¤¬ÉÕ¤±²Ã¤¨¤é¤ì¤Þ¤¹¡£
++.br
++.br
++¥Í¥Ã¥È¥ï¡¼¥¯¤Î¥ì¥¹¥Ý¥ó¥¹»þ´Ö¤Ë¤è¤Ã¤ÆJVM¤Î¼Â¹Ô®ÅÙ¤¬Äã²¼¤¹¤ë¤Î¤òÈò¤±¤ë¤¿¤á¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Î³ÊǼÀè¤Ï¡¢¾ï¤Ë¥í¡¼¥«¥ë¡¦¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤¬ËþÇդˤʤë¤È¡¢¥Õ¥¡¥¤¥ë¤ÏÀÚ¤êµÍ¤á¤é¤ì¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤Ë¥Ç¡¼¥¿¤¬°ú³¤­µ­Ï¿¤µ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤È\f2\-verbose:gc\fP¤ÎξÊý¤¬¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤¬Í¥À褵¤ì¤Þ¤¹¡£
++.TP 3
++\-Xmnsize¤Þ¤¿¤Ï\-XX:NewSize
++¼ã¤¤À¤Âå(¥Ê¡¼¥µ¥ê)¤Î¥µ¥¤¥º¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Xmsn
++¥á¥â¥ê¡¼³äÅö¥×¡¼¥ë¤Î½é´ü¥µ¥¤¥º¤ò¥Ð¥¤¥È¿ô¤Ç»ØÄꤷ¤Þ¤¹¡£»ØÄꤹ¤ëÃͤϡ¢1MB¤è¤êÂ礭¤¤1024¤ÎÇÜ¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥­¥í¥Ð¥¤¥È¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢Ê¸»ú\f2k\fP¤Þ¤¿¤Ï\f2K\fP¤òÉÕ¤±¤Þ¤¹¡£¥á¥¬¥Ð¥¤¥È¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢Ê¸»ú\f2m\fP¤Þ¤¿¤Ï\f2M\fP¤òÉÕ¤±¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤϡ¢¼Â¹Ô»þ¤Ë¥·¥¹¥Æ¥à¹½À®¤Ë´ð¤Å¤¤¤ÆÁªÂò¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2HotSpot Ergonomics\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++Îã:
++.nf
++\f3
++.fl
++ \-Xms6291456
++.fl
++ \-Xms6144k
++.fl
++ \-Xms6m
++.fl
++
++.fl
++\fP
++.fi
++.TP 3
++\-Xmxn
++¥á¥â¥ê¡¼³äÅö¥×¡¼¥ë¤ÎºÇÂ祵¥¤¥º¤ò¥Ð¥¤¥È¿ô¤Ç»ØÄꤷ¤Þ¤¹¡£»ØÄꤹ¤ëÃͤϡ¢2MB¤è¤êÂ礭¤¤1024¤ÎÇÜ¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥­¥í¥Ð¥¤¥È¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢Ê¸»ú\f2k\fP¤Þ¤¿¤Ï\f2K\fP¤òÉÕ¤±¤Þ¤¹¡£¥á¥¬¥Ð¥¤¥È¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢Ê¸»ú\f2m\fP¤Þ¤¿¤Ï\f2M\fP¤òÉÕ¤±¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤϡ¢¼Â¹Ô»þ¤Ë¥·¥¹¥Æ¥à¹½À®¤Ë´ð¤Å¤¤¤ÆÁªÂò¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2HotSpot Ergonomics\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++Îã:
++.nf
++\f3
++.fl
++ \-Xmx83886080
++.fl
++ \-Xmx81920k
++.fl
++ \-Xmx80m
++.fl
++
++.fl
++\fP
++.fi
++Solaris 7¤ª¤è¤ÓSolaris 8 SPARC¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¾ì¹ç¤Î¤³¤ÎÃͤξå¸Â¤Ï¡¢¤ª¤è¤½4000m¤«¤é¥ª¡¼¥Ð¡¼¥Ø¥Ã¥É¤ÎÎ̤ò°ú¤¤¤¿¤â¤Î¤Ç¤¹¡£Solaris 2.6¤ª¤è¤Óx86¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¾ì¹ç¤Î¾å¸Â¤Ï¡¢¤ª¤è¤½2000m¤«¤é¥ª¡¼¥Ð¡¼¥Ø¥Ã¥É¤ÎÎ̤ò°ú¤¤¤¿¤â¤Î¤Ç¤¹¡£Linux¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¾ì¹ç¤Î¾å¸Â¤Ï¡¢¤ª¤è¤½2000m¤«¤é¥ª¡¼¥Ð¡¼¥Ø¥Ã¥É¤ÎÎ̤ò°ú¤¤¤¿¤â¤Î¤Ç¤¹¡£
++.TP 3
++\-Xprof
++¼Â¹ÔÃæ¤Î¥×¥í¥°¥é¥à¤Î¥×¥í¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¡¢¥×¥í¥Õ¥¡¥¤¥ë¡¦¥Ç¡¼¥¿¤òɸ½à½ÐÎϤ˽ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥×¥í¥°¥é¥à³«È¯ÍѤΥ桼¥Æ¥£¥ê¥Æ¥£¤È¤·¤ÆÄ󶡤µ¤ì¤Æ¤¤¤Þ¤¹¡£ËÜÈÖ²ÔƯ¥·¥¹¥Æ¥à¤Ç¤Î»ÈÍѤòÌÜŪ¤È¤·¤¿¤â¤Î¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.TP 3
++\-Xrs
++Java²¾ÁÛ¥Þ¥·¥ó(JVM)¤Ë¤è¤ë¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¡¦¥·¥°¥Ê¥ë¤Î»ÈÍѤò¸º¤é¤·¤Þ¤¹¡£
++.br
++.br
++°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï¡¢Java¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òÃá½øÀµ¤·¤¯¥·¥ã¥Ã¥È¥À¥¦¥ó¤¹¤ë¤¿¤á¤Î¥·¥ã¥Ã¥È¥À¥¦¥ó¡¦¥Õ¥Ã¥¯µ¡Ç½¤¬Äɲ䵤ì¤Þ¤·¤¿¡£¤³¤Îµ¡Ç½¤Ë¤è¤ê¡¢JVM¤¬ÆÍÁ³½ªÎ»¤·¤¿¾ì¹ç¤Ç¤â¡¢¥·¥ã¥Ã¥È¥À¥¦¥ó»þ¤Ë¥æ¡¼¥¶¡¼¡¦¥¯¥ê¡¼¥ó¡¦¥¢¥Ã¥×¥³¡¼¥É(¥Ç¡¼¥¿¥Ù¡¼¥¹Àܳ¤Î¥¯¥í¡¼¥º¤Ê¤É)¤ò¼Â¹Ô¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤·¤¿¡£
++.br
++.br
++Sun¼Ò¤ÎJVM¤Ï¡¢¥·¥°¥Ê¥ë¤ò¥­¥ã¥Ã¥Á¤¹¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢JVM¤Î°Û¾ï½ªÎ»¤Î¤¿¤á¤Î¥·¥ã¥Ã¥È¥À¥¦¥ó¡¦¥Õ¥Ã¥¯¤ò¼ÂÁõ¤·¤Þ¤¹¡£JVM¤Ï¡¢SIGHUP¡¢SIGINT¤ª¤è¤ÓSIGTERM¤ò»ÈÍѤ·¤Æ¡¢¥·¥ã¥Ã¥È¥À¥¦¥ó¡¦¥Õ¥Ã¥¯¤Î¼Â¹Ô¤ò³«»Ï¤·¤Þ¤¹¡£
++.br
++.br
++JVM¤Ï¡¢¥Ç¥Ð¥Ã¥°¤ÎÌÜŪ¤Ç¥¹¥ì¥Ã¥É¡¦¥¹¥¿¥Ã¥¯¤ò¥À¥ó¥×¤¹¤ë¤È¤¤¤¦¡¢1.2¤è¤êÁ°¤«¤é¤¢¤ëµ¡Ç½¤ò¼Â¸½¤¹¤ë¤¿¤á¤Ë¤â¡¢Æ±Íͤε¡¹½¤ò»ÈÍѤ·¤Þ¤¹¡£Sun¼Ò¤ÎJVM¤Ï¡¢¥¹¥ì¥Ã¥É¡¦¥À¥ó¥×¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤ËSIGQUIT¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++JVM¤òËä¤á¹þ¤ó¤Ç¤¤¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬SIGINT¤äSIGTERM¤Ê¤É¤Î¥·¥°¥Ê¥ë¤òÉÑÈˤ˥ȥé¥Ã¥×¤¹¤ëɬÍפ¬¤¢¤ë¤È¡¢JVM¤½¤Î¤â¤Î¤Î¥·¥°¥Ê¥ë¡¦¥Ï¥ó¥É¥é¤Î½èÍý¤Ë»Ù¾ã¤¬½Ð¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£\f3\-Xrs\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¤³¤ÎÌäÂê¤ËÂнè¤Ç¤­¤Þ¤¹¡£Sun¼Ò¤ÎJVM¤ËÂФ·¤Æ\f3\-Xrs\fP¤ò»ÈÍѤ¹¤ë¤È¡¢SIGINT¡¢SIGTERM¡¢SIGHUP¤ª¤è¤ÓSIGQUIT¤ËÂФ¹¤ë¥·¥°¥Ê¥ë¡¦¥Þ¥¹¥¯¤ÏJVM¤Ë¤è¤Ã¤ÆÊѹ¹¤µ¤ì¤º¡¢¤³¤ì¤é¤Î¥·¥°¥Ê¥ë¤ËÂФ¹¤ë¥·¥°¥Ê¥ë¡¦¥Ï¥ó¥É¥é¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Þ¤»¤ó¡£
++.br
++.br
++\f3\-Xrs\fP¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¼¡¤Î2¤Ä¤Î±Æ¶Á¤¬¤¢¤ê¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++SIGQUIT¤Ë¤è¤ë¥¹¥ì¥Ã¥É¡¦¥À¥ó¥×¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.TP 2
++o
++¥·¥ã¥Ã¥È¥À¥¦¥ó¡¦¥Õ¥Ã¥¯½èÍý¤Î¼Â¹Ô¤Ï¡¢JVM¤¬½ªÎ»¤·¤è¤¦¤È¤·¤Æ¤¤¤ë»þÅÀ¤ÇSystem.exit()¤ò¸Æ¤Ó½Ð¤¹¤Ê¤É¤·¤Æ¡¢¥æ¡¼¥¶¡¼¡¦¥³¡¼¥É¦¤Ç¹Ô¤¦É¬Íפ¬¤¢¤ê¤Þ¤¹¡£
++.RE
++.TP 3
++\-Xssn
++¥¹¥ì¥Ã¥É¤Î¥¹¥¿¥Ã¥¯¡¦¥µ¥¤¥º¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-XX:AllocationPrefetchStyle=n
++³äÅöÃæ¤Ë»ÈÍѤµ¤ì¤ë¥×¥ê¥Õ¥§¥Ã¥Á¤Î¥¹¥¿¥¤¥ë¤òÀßÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï2¤Ç¤¹¡£
++.br
++.TP 3
++\-XX:+AggressiveOpts
++ÀѶËŪ¤ÊºÇŬ²½¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:+|\-DisableAttachMechanism
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥Ä¡¼¥ë(\f2jmap\fP¤ª¤è¤Ó\f2jconsole\fP¤Ê¤É)¤¬JVM¤ËÀܳ¤Ç¤­¤ë¤«¤É¤¦¤«¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¤³¤Îµ¡Ç½¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢Àܳ¤ÏÍ­¸ú¤Ç¤¹¡£»ÈÍÑÎã:
++.nf
++\f3
++.fl
++ java \-XX:+DisableAttachMechanism
++.fl
++\fP
++.fi
++.TP 3
++\-XXLargePageSizeInBytes=n
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥é¡¼¥¸¡¦¥Ú¡¼¥¸¤ÎºÇÂ祵¥¤¥º¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-XX:MaxGCPauseMillis=n
++ºÇÂçGCµÙ»ß»þ´Ö¤Î¥¿¡¼¥²¥Ã¥È¤òÀßÄꤷ¤Þ¤¹¡£
++.br
++¤³¤ì¤Ï¥½¥Õ¥È¡¦¥´¡¼¥ë¤Î¤¿¤á¡¢JVM¤Ï¼Â¸½¤Î¤¿¤á¤ËºÇÁ±¤ÎÅØÎϤò¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤ÇÀßÄꤵ¤ì¤Æ¤¤¤ëºÇÂçÃͤϤ¢¤ê¤Þ¤»¤ó¡£
++.TP 3
++\-XX:NewSize
++¼ã¤¤À¤Âå(¥Ê¡¼¥µ¥ê)¤Î¥µ¥¤¥º¤òÀßÄꤷ¤Þ¤¹¡£\f3\-Xmn\fP\f4size\fP¤ÈƱ¤¸¤Ç¤¹¡£
++.TP 3
++\-XX:ParallelGCThreads=n
++¥Ñ¥é¥ì¥ë¡¦¥³¥ì¥¯¥¿Æâ¤ÎGC¥¹¥ì¥Ã¥É¤Î¿ô¤òÀßÄꤷ¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:PredictedClassLoadCount=n
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢ºÇ½é¤Ë\f3UnlockExperimentalVMOptions\fP¥Õ¥é¥°¤òÀßÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬Â¿¿ô¤Î¥¯¥é¥¹¤ò¥í¡¼¥É¤¹¤ë¾ì¹ç¤Ç¡¢ÆäË\f3class.forName()\fP¤¬ÉÑÈˤ˻ÈÍѤµ¤ì¤ë¾ì¹ç¤Ï\f3PredictedClassLoadCount\fP¥Õ¥é¥°¤ò»ÈÍѤ·¤Þ¤¹¡£¿ä¾©Ãͤϡ¢\f3\-verbose:class\fP¤«¤é¤Î½ÐÎϤ˼¨¤µ¤ì¤Æ¤¤¤ë¥í¡¼¥ÉºÑ¥¯¥é¥¹¤Î¿ô¤Ç¤¹¡£
++.br
++»ÈÍÑÎã:
++.nf
++\f3
++.fl
++ java \-XX:+UnlockExperimentalVMOptions \-XX:PredictedClassLoadCount=60013
++.fl
++\fP
++.fi
++.TP 3
++\-XX:+PrintCompilation
++HotSpot¥À¥¤¥Ê¥ß¥Ã¥¯¡¦¥é¥ó¥¿¥¤¥à¡¦¥³¥ó¥Ñ¥¤¥é¤«¤é¤Î¾ÜºÙ½ÐÎϤò°õºþ¤·¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:+PrintGCDetails \-XX:+PrintGCTimeStamps
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó½ÐÎϤò¥¿¥¤¥à¥¹¥¿¥ó¥×¤È¤È¤â¤Ë°õºþ¤·¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:SoftRefLRUPolicyMSPerMB=0
++¤³¤Î¥Õ¥é¥°¤Ï¡¢¥½¥Õ¥È¥¦¥§¥¢»²¾È¤ÎÀѶËŪ½èÍý¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥Õ¥é¥°¤Ï¡¢HotSpot GC¤¬¥½¥Õ¥È¥¦¥§¥¢»²¾È¥«¥¦¥ó¥È¤Î±Æ¶Á¤ò¼õ¤±¤ë¾ì¹ç¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-XX:TLABSize=n
++¥¹¥ì¥Ã¥É¡¦¥í¡¼¥«¥ë³äÅö¥Ð¥Ã¥Õ¥¡(TLAB)¤¬HotSpot¤Ç¥Ç¥Õ¥©¥ë¥È¤ÇÍ­¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£HotSpot¤Ç¤Ï¡¢TLAB¤Î¥µ¥¤¥º¤ò³äÅö¥Ñ¥¿¡¼¥ó¤Ë´ð¤Å¤¤¤Æ¼«Æ°Åª¤Ë·èÄꤷ¤Þ¤¹¡£\f3\-XX:TLABSize\fP¥ª¥×¥·¥ç¥ó¤ÇTLAB¤Î¥µ¥¤¥º¤òÈùÄ´À°¤Ç¤­¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:+UnlockCommercialFeatures
++¤³¤Î¥Õ¥é¥°¤Ï¡¢¾¦Íѵ¡Ç½¤Î»ÈÍѤòǽưŪ¤Ë¥í¥Ã¥¯²ò½ü¤¹¤ë¾ì¹ç¤Ë»ÈÍѤ·¤Þ¤¹¡£¾¦Íѵ¡Ç½¤È¤Ï¡¢
++.na
++\f2Oracle Java SE Products Web¥Ú¡¼¥¸\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/terms/products/index.html¤Çµ¬Äꤵ¤ì¤ëÀ½ÉÊ"Oracle Java SE Advanced"¤Þ¤¿¤Ï"Oracle Java SE Suite"¤Ç¤¹¡£
++.br
++¤³¤Î¥Õ¥é¥°¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤ÏJava²¾ÁÛ¥Þ¥·¥ó¤ò»ÈÍѲÄǽ¤Ê¾¦Íѵ¡Ç½¤Ê¤·¤Ç¼Â¹Ô¤¹¤ë¤³¤È¤Ç¤¹¡£¤¤¤Ã¤¿¤ó¾¦Íѵ¡Ç½¤òÍ­¸ú¤Ë¤¹¤ë¤È¡¢¼Â¹Ô»þ¤Ë¤½¤Î»ÈÍѤò̵¸ú¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.TP 3
++\-XX:+UseAltSigs
++VM¤Ç¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç\f2SIGUSR1\fP¤ª¤è¤Ó\f2SIGUSR2\fP¤ò»ÈÍѤ·¤Þ¤¹¤¬¡¢\f2SIGUSR1\fP¤ª¤è¤Ó\f2SIGUSR2\fP¤ò¥·¥°¥Ê¥ëÏ¢º¿¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤È¶¥¹ç¤¹¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£\f2\-XX:+UseAltSigs\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢VM¤Ë¥Ç¥Õ¥©¥ë¥È¤È¤·¤Æ\f2SIGUSR1\fP¤È\f2SIGUSR2\fP°Ê³°¤Î¥·¥°¥Ê¥ë¤ò»ÈÍѤµ¤»¤Þ¤¹¡£
++.TP 3
++\-XX:+|\-UseCompressedOops
++64¥Ó¥Ã¥ÈJVM¤Ç°µ½Ì»²¾È¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£
++.br
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¥Ç¥Õ¥©¥ë¥È¤Çtrue¤Ç¤¹¡£
++.br
++.TP 3
++\-XX:+UseConcMarkSweepGC¤Þ¤¿¤Ï\-XX:+UseG1GC
++¤³¤ì¤é¤Î¥Õ¥é¥°¤ÏConcurrent Mark Sweep (CMS)¤Þ¤¿¤ÏG1¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:+|\-UseLargePages
++¤³¤Î¥Õ¥é¥°¤Ï¡¢¥é¡¼¥¸¡¦¥Ú¡¼¥¸¡¦¥µ¥Ý¡¼¥È¤òÍ­¸ú¤Ë¤¹¤ë¾ì¹ç¤Ë»ÈÍѤ·¤Þ¤¹¡£¥é¡¼¥¸¡¦¥Ú¡¼¥¸¤Ï¡¢Solaris¤Ç¤Ï¥Ç¥Õ¥©¥ë¥È¤ÇÍ­¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
++.br
++.TP 3
++\-XX:+UseParallelOldGC
++¥Ñ¥é¥ì¥ë¡¦¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥¿¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤³¤ì¤Ï¥¹¥ë¡¼¥×¥Ã¥È¤ª¤è¤ÓÊ¿¶Ñ¥ì¥¹¥Ý¥ó¥¹»þ´Ö¤ËÂФ·¤ÆºÇŬ²½¤µ¤ì¤Þ¤¹¡£
++.br
++.RE
++
++.LP
++.SH "Ãí°Õ"
++.LP
++.LP
++\f3\-version:\fP\f2release\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢¥ê¥ê¡¼¥¹»ØÄê¤ÎÊ£»¨¤µ¤ËÀ©¸Â¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤À¤·¡¢²Äǽ¤Ê¥ê¥ê¡¼¥¹»ØÄê¤Î¸Â¤é¤ì¤¿¥µ¥Ö¥»¥Ã¥È¤Î¤ß¤¬Å¬Àڤʥµ¥¦¥ó¥É¡¦¥Ý¥ê¥·¡¼¤òɽ¸½¤Ç¤­¡¢¤½¤ì¤é¤Î¤ß¤¬´°Á´¤Ë¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£¤½¤ì¤é¤Î¥Ý¥ê¥·¡¼¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++1.
++Ǥ°Õ¤Î¥Ð¡¼¥¸¥ç¥ó¡£¤³¤ì¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Ê¤¤¤³¤È¤Çɽ¸½¤Ç¤­¤Þ¤¹¡£
++.TP 3
++2.
++¤¢¤ëÆÃÄê¤Î¥Ð¡¼¥¸¥ç¥óID¤è¤ê¤âÂ礭¤¤Ç¤°Õ¤Î¥Ð¡¼¥¸¥ç¥ó¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++"1.6.0_10+"
++.fl
++\fP
++.fi
++¤³¤Î¾ì¹ç¡¢\f21.6.0_10\fP¤è¤ê¤âÂ礭¤¤Ç¤°Õ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó¤ÇÆÃÄê¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬Æ³Æþ¤µ¤ì¤¿(¤¢¤ë¤¤¤Ï¤½¤Î¥Ð¥°¤¬½¤Àµ¤µ¤ì¤¿)¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£
++.TP 3
++3.
++¤¢¤ëÆÃÄê¤Î¥Ð¡¼¥¸¥ç¥óID¤è¤ê¤âÂ礭¤¤¥Ð¡¼¥¸¥ç¥ó¤Ç¡¢¤½¤Î¥ê¥ê¡¼¥¹¡¦¥Õ¥¡¥ß¥ê¤Î¾å¸Â¤Ë¤è¤Ã¤ÆÀ©¸Â¤µ¤ì¤ë¤â¤Î¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++"1.6.0_10+&1.6*"
++.fl
++\fP
++.fi
++.TP 3
++4.
++¾å¤Î¹àÌÜ2¤È¹àÌÜ3¤Î¡ÖOR¡×¼°¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++"1.6.0_10+&1.6* 1.7+"
++.fl
++\fP
++.fi
++¤³¤ì¤Ï¹àÌÜ2¤Ë»÷¤Æ¤¤¤Þ¤¹¤¬¡¢¤¢¤ëÊѹ¹¤¬ÆÃÄê¤Î¥ê¥ê¡¼¥¹(1.7)¤ÇƳÆþ¤µ¤ì¤¿¤¬¡¢¤½¤ÎƱ¤¸Êѹ¹¤¬°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Î¥¢¥Ã¥×¥Ç¡¼¥È¤Ç¤âÍøÍѲÄǽ¤Ë¤Ê¤Ã¤¿¡¢¤È¤¤¤¦¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£
++.RE
++
++.LP
++.SH "¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¡¦¥Á¥å¡¼¥Ë¥ó¥°¤ÎÎã"
++.LP
++.LP
++¥¹¥ë¡¼¥×¥Ã¥È¤Þ¤¿¤Ï¥ì¥¹¥Ý¥ó¥¹»þ´Ö¤Î¹â®²½¤Î¤É¤Á¤é¤«¤òºÇŬ²½¤¹¤ë¤¿¤á¤Î¡¢»î¸³Åª¤Ê¥Á¥å¡¼¥Ë¥ó¥°¡¦¥Õ¥é¥°¤Î»ÈÍÑÎã¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.SS
++¥¹¥ë¡¼¥×¥Ã¥È¤ò¸þ¾å¤¹¤ë¤¿¤á¤Î¥Á¥å¡¼¥Ë¥ó¥°
++.LP
++.nf
++\f3
++.fl
++ java \-d64 \-server \-XX:+AggressiveOpts \-XX:+UseLargePages \-Xmn10g \-Xms26g \-Xmx26g
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¥ì¥¹¥Ý¥ó¥¹»þ´Ö¤ò®¤¯¤¹¤ë¤¿¤á¤Î¥Á¥å¡¼¥Ë¥ó¥°
++.LP
++.nf
++\f3
++.fl
++ java \-d64 \-XX:+UseG1GC \-Xms26g Xmx26g \-XX:MaxGCPauseMillis=500 \-XX:+PrintGCTimeStamps
++.fl
++\fP
++.fi
++
++.LP
++.SH "½ªÎ»¥¹¥Æ¡¼¥¿¥¹"
++.LP
++.LP
++°ìÈ̤ˡ¢¼¡¤Î½ªÎ»Ãͤ¬µ¯Æ°¥Ä¡¼¥ë¤«¤éÊÖ¤µ¤ì¤ë¤Î¤ÏÄ̾µ¯Æ°¸µ¤¬ÉÔÀµ¤Ê°ú¿ô¤Ç¸Æ¤Ó½Ð¤µ¤ì¤¿¤«¡¢¿¼¹ï¤Ê¥¨¥é¡¼¤¬È¯À¸¤·¤¿¤«¡¢¤¢¤ë¤¤¤ÏJava²¾ÁÛ¥Þ¥·¥ó¤«¤éÎã³°¤¬¥¹¥í¡¼¤µ¤ì¤¿¾ì¹ç¤Ç¤¹¡£¤¿¤À¤·Java¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢API¸Æ½Ð¤·\f2System.exit(exitValue)\fP¤ò»ÈÍѤ·¤ÆǤ°Õ¤ÎÃͤòÊÖ¤¹¤³¤È¤òÁªÂò¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f20\fP: Àµ¾ï½ªÎ»
++.TP 2
++o
++\f2>0\fP: ¥¨¥é¡¼È¯À¸
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++javac(1)
++.TP 2
++o
++jdb(1)
++.TP 2
++o
++javah(1)
++.TP 2
++o
++jar(1)
++.TP 2
++o
++.na
++\f2Java³ÈÄ¥µ¡Ç½¥Õ¥ì¡¼¥à¥ï¡¼¥¯\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
++.TP 2
++o
++.na
++\f2¥»¥­¥å¥ê¥Æ¥£\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/index.html
++.TP 2
++o
++.na
++\f2HotSpot VM Specific Options\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/tech/vmoptions\-jsp\-140102.html
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/javac.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/javac.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,1222 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javac 1 "07 May 2011"
++.TH javac 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++javac \- Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¥³¥ó¥Ñ¥¤¥é
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë
++.TP 2
++o
++Ãí¼á½èÍý
++.TP 2
++o
++·¿¤Î¸¡º÷
++.TP 2
++o
++¥×¥í¥°¥é¥Þ¥Æ¥£¥Ã¥¯¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++ \fP\f3javac\fP [ options ] [ sourcefiles ] [ classes ] [ @argfiles ]
++.fl
++
++.fl
++.fi
++
++.LP
++.LP
++°ú¿ô¤Ï½çÉÔƱ¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£
++.TP 3
++sourcefiles
++¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤ë1¤Ä°Ê¾å¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(MyClass.java¤Ê¤É)¡£
++.TP 3
++classes
++Ãí¼á¤Î½èÍýÂоݤȤʤë1¤Ä°Ê¾å¤Î¥¯¥é¥¹(MyPackage.MyClass¤Ê¤É)¡£
++.TP 3
++@argfiles
++¥ª¥×¥·¥ç¥ó¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤¿1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¡£¤³¤Î¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ç¤Ï\f2\-J\fP¥ª¥×¥·¥ç¥ó¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3javac\fP¥Ä¡¼¥ë¤Ï¡¢Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Çµ­½Ò¤µ¤ì¤¿¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÎÄêµÁ¤òÆɤ߼è¤ê¡¢¥Ð¥¤¥È¥³¡¼¥É¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹¡£¤Þ¤¿¡¢Java¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥¯¥é¥¹Æâ¤ÎÃí¼á¤Î½èÍý¤â¹Ô¤¤¤Þ¤¹¡£
++.LP
++.LP
++¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¥Õ¥¡¥¤¥ë̾¤ò\f3javac\fP¤ËÅϤ¹¤Ë¤Ï¡¢¼¡¤Î2¤Ä¤ÎÊýË¡¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¿ô¤¬¾¯¤Ê¤¤¾ì¹ç¤Ï¡¢¥Õ¥¡¥¤¥ë̾¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÇľÀÜ»ØÄꤷ¤Þ¤¹¡£
++.TP 2
++o
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¿ô¤¬Â¿¤¤¾ì¹ç¤Ï¡¢¥Õ¥¡¥¤¥ë̾¤ò¶õÇò¤Þ¤¿¤Ï²þ¹Ô¤Ç¶èÀڤäơ¢1¤Ä¤Î¥Õ¥¡¥¤¥ë¤ËÎóµó¤·¤Þ¤¹¡£¼¡¤Ë¡¢¤³¤Î¥ê¥¹¥È¡¦¥Õ¥¡¥¤¥ë̾¤ÎÀèƬ¤Ë\f3@\fP¤òÉÕ¤±¤Æ¡¢\f3javac\fP¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¥Õ¥¡¥¤¥ë̾¤Ï\f2.java\fP³ÈÄ¥»Ò¤ò¡¢¥¯¥é¥¹¤Î¥Õ¥¡¥¤¥ë̾¤Ï\f2.class\fP³ÈÄ¥»Ò¤ò»ý¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¤É¤Á¤é¤â¡¢³ºÅö¤¹¤ë¥¯¥é¥¹¤ËÂбþ¤¹¤ë¥ë¡¼¥È̾¤ò»ý¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2MyClass\fP¤È¤¤¤¦Ì¾Á°¤Î¥¯¥é¥¹¤Ï¡¢\f2MyClass.java\fP¤È¤¤¤¦Ì¾Á°¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ëµ­½Ò¤µ¤ì¤Þ¤¹¡£¤³¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢\f2MyClass.class\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ð¥¤¥È¥³¡¼¥É¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++ÆâÉô¥¯¥é¥¹¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤ë¤È¡¢ÄɲäΥ¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ï¡¢\f2MyClass$MyInnerClass.class\fP¤Î¤è¤¦¤Ë¡¢³°Éô¥¯¥é¥¹Ì¾¤ÈÆâÉô¥¯¥é¥¹Ì¾¤òÁȤ߹礻¤¿¤â¤Î¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ä¥ê¡¼¤òÈ¿±Ç¤·¤¿¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ä¥ê¡¼¤ËÇÛÃÖ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¤¹¤Ù¤Æ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò\f3/workspace\fP¤ËÃÖ¤¤¤Æ¤¤¤ë¾ì¹ç¡¢\f2com.mysoft.mypack.MyClass\fP¤Î¥½¡¼¥¹¡¦¥³¡¼¥É¤Ï\f3/workspace/com/mysoft/mypack/MyClass.java\fP¤Ë¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¡¢³Æ¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÂбþ¤¹¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤·¤Þ¤¹¡£Ê̤νÐÎÏÀè¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢\f3\-d\fP¤ò»ÈÍѤ·¤Þ¤¹(¤³¤Î¸å¤Î¥ª¥×¥·¥ç¥ó¤ò»²¾È)¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ë¤Ï¡¢¸½ºß¤Î³«È¯´Ä¶­¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤ª¤ê¡¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤â¥µ¥Ý¡¼¥È¤µ¤ì¤ëɸ½à¥ª¥×¥·¥ç¥ó¤Î¥»¥Ã¥È¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì°Ê³°¤ÎÈóɸ½à¥ª¥×¥·¥ç¥ó¤Ï¡¢¸½ºß¤Î²¾ÁÛ¥Þ¥·¥ó¤ª¤è¤Ó¥³¥ó¥Ñ¥¤¥é¤Î¼ÂÁõ¤Ë¸ÇÍ­¤Î¥ª¥×¥·¥ç¥ó¤Ç¡¢¾­Íè¤ËÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£Èóɸ½à¥ª¥×¥·¥ç¥ó¤Ï¡¢\f3\-X\fP¤Ç»Ï¤Þ¤ê¤Þ¤¹¡£
++.LP
++.SS
++ɸ½à¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-Akey[=value]
++Ãí¼á¥×¥í¥»¥Ã¥µ¤ËÅϤµ¤ì¤ë¥ª¥×¥·¥ç¥ó¡£¤³¤ì¤é¤Ï¡¢javac¤Ë¤è¤Ã¤ÆľÀܲò¼á¤µ¤ì¤º¡¢¸Ä¡¹¤Î¥×¥í¥»¥Ã¥µ¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£\f2key\fP¤Ë¤Ï¡¢1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î¼±Ê̻Ҥò¡Ö.¡×¤Ç¶èÀڤ俤â¤Î¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-cppath¤Þ¤¿¤Ï\-classpathpath
++¥æ¡¼¥¶¡¼¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó(¾ì¹ç¤Ë¤è¤Ã¤Æ¤Ï)Ãí¼á¥×¥í¥»¥Ã¥µ¤ä¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¸¡º÷¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¡¦¥Ñ¥¹¤Ï\f3CLASSPATH\fP´Ä¶­ÊÑ¿ô¤Î¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£\f3CLASSPATH\fP¡¢\f3\-cp\fP¡¢\f3\-classpath\fP¤Î¤¤¤º¤ì¤â»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤Ê¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÀßÄê¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f3\-sourcepath\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤â¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤«¤é¸¡º÷¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f3\-processorpath\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢Ãí¼á¥×¥í¥»¥Ã¥µ¤â¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤«¤é¸¡º÷¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-Djava.ext.dirs=directories
++¥¤¥ó¥¹¥È¡¼¥ëºÑ³ÈÄ¥µ¡Ç½¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-Djava.endorsed.dirs=directories
++¾µÇ§¤µ¤ì¤¿É¸½à¥Ñ¥¹¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-d directory
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½ÐÎÏÀè¥Ç¥£¥ì¥¯¥È¥ê¤òÀßÄꤷ¤Þ¤¹¡£¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f3javac\fP¤Ç¤ÏºîÀ®¤µ¤ì¤Þ¤»¤ó¡£¥¯¥é¥¹¤¬¥Ñ¥Ã¥±¡¼¥¸¤Î°ìÉô¤Ç¤¢¤ë¾ì¹ç¡¢\f3javac\fP¤Ï¡¢É¬Íפ˱þ¤¸¤Æ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤·¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÈ¿±Ç¤·¤¿¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-d/home/myclasses\fP¤È»ØÄꤷ¡¢¥¯¥é¥¹¤Î̾Á°¤¬\f2com.mypackage.MyClass\fP¤Ç¤¢¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï\f2/home/myclasses/com/mypackage/MyClass.class\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++\f3\-d\fP¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f3javac\fP¤Ï³Æ¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¡¢¤½¤ÎÀ¸À®¸µ¤È¤Ê¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë³ÊǼ¤·¤Þ¤¹¡£
++.br
++.br
++\f3Ãí°Õ:\fP \f3\-d\fP¤Ç»ØÄꤷ¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ë¼«Æ°Åª¤Ë¤ÏÄɲ䵤ì¤Þ¤»¤ó¡£
++.TP 3
++\-deprecation
++¿ä¾©¤µ¤ì¤Ê¤¤¥á¥ó¥Ð¡¼¤ä¥¯¥é¥¹¤¬¡¢»ÈÍѤޤ¿¤Ï¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤ë¤¿¤Ó¤ËÀâÌÀ¤òɽ¼¨¤·¤Þ¤¹¡£\f3\-deprecation\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢\f3javac\fP¤Ï¡¢¿ä¾©¤µ¤ì¤Ê¤¤¥á¥ó¥Ð¡¼¤ä¥¯¥é¥¹¤ò»ÈÍѤޤ¿¤Ï¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÍ×Ìó¤òɽ¼¨¤·¤Þ¤¹¡£\f3\-deprecation\fP¤Ï\f3\-Xlint:deprecation\fP¤Î¾Êάɽµ­¤Ç¤¹¡£
++.TP 3
++\-encoding encoding
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°Ì¾(\f2EUC\-JP¤äUTF\-8\fP¤Ê¤É)¤ò»ØÄꤷ¤Þ¤¹¡£\f3\-encoding\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥³¥ó¥Ð¡¼¥¿¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-endorseddirs directories
++¾µÇ§¤µ¤ì¤¿É¸½à¥Ñ¥¹¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-extdirs directories
++\f2ext\fP¥Ç¥£¥ì¥¯¥È¥ê¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£\f2directories\fPÊÑ¿ô¤Ë¤Ï¡¢¥³¥í¥ó¤Ç¶èÀڤ俥ǥ£¥ì¥¯¥È¥ê¤Î¥ê¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£»ØÄꤷ¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î³ÆJAR¥¢¡¼¥«¥¤¥Ö¤«¤é¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¸¡º÷¤µ¤ì¤Þ¤¹¡£¸«¤Ä¤«¤Ã¤¿¤¹¤Ù¤Æ¤ÎJAR¥¢¡¼¥«¥¤¥Ö¤Ï¼«Æ°Åª¤Ë¥¯¥é¥¹¡¦¥Ñ¥¹¤Î°ìÉô¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë(°Û¤Ê¤ëJava¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ë¼ÂÁõ¤µ¤ì¤¿¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ä³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ËÂФ·¤Æ¥³¥ó¥Ñ¥¤¥ë¤ò¹Ô¤¦)¤ò¼Â¹Ô¤¹¤ë¾ì¹ç¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ï³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¡¦¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-g
++¥í¡¼¥«¥ëÊÑ¿ô¤ò´Þ¤à¤¹¤Ù¤Æ¤Î¥Ç¥Ð¥Ã¥°¾ðÊó¤òÀ¸À®¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¹ÔÈֹ椪¤è¤Ó¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¾ðÊó¤Î¤ß¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-g:none
++¥Ç¥Ð¥Ã¥°¾ðÊó¤òÀ¸À®¤·¤Þ¤»¤ó¡£
++.TP 3
++\-g:{keyword list}
++¥«¥ó¥Þ¤Ç¶èÀÚ¤é¤ì¤¿¥­¡¼¥ï¡¼¥É¡¦¥ê¥¹¥È¤Ë¤è¤ê»ØÄꤵ¤ì¤¿¡¢ÆÃÄê¤Î¼ïÎà¤Î¥Ç¥Ð¥Ã¥°¾ðÊó¤Î¤ß¤òÀ¸À®¤·¤Þ¤¹¡£¼¡¤Î¥­¡¼¥ï¡¼¥É¤¬Í­¸ú¤Ç¤¹¡£
++.RS 3
++.TP 3
++source
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥Ç¥Ð¥Ã¥°¾ðÊó
++.TP 3
++lines
++¹ÔÈÖ¹æ¤Î¥Ç¥Ð¥Ã¥°¾ðÊó
++.TP 3
++vars
++¥í¡¼¥«¥ëÊÑ¿ô¤Î¥Ç¥Ð¥Ã¥°¾ðÊó
++.RE
++.TP 3
++\-help
++ɸ½à¥ª¥×¥·¥ç¥ó¤Î·Á¼°¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-implicit:{class,none}
++°ÅÌÛŪ¤Ë¥í¡¼¥É¤µ¤ì¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ËÂФ¹¤ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÀ¸À®¤òÀ©¸æ¤·¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¼«Æ°À¸À®¤¹¤ë¤Ë¤Ï¡¢\f3\-implicit:class\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÀ¸À®¤òÍÞÀ©¤¹¤ë¤Ë¤Ï¡¢\f3\-implicit:none\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¤Î¥Ç¥Õ¥©¥ë¥ÈÆ°ºî¤Ï¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¼«Æ°À¸À®¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤Î¾ì¹ç¡¢¤½¤Î¤è¤¦¤Ê¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤¿»þ¤ËÃí¼á½èÍý¤â¼Â¹Ô¤µ¤ì¤ë¤È¡¢¥³¥ó¥Ñ¥¤¥é¤«¤é·Ù¹ð¤¬È¯¹Ô¤µ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬ÌÀ¼¨Åª¤ËÀßÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Ï¡¢·Ù¹ð¤Ïȯ¹Ô¤µ¤ì¤Þ¤»¤ó¡£·¿¤Î¸¡º÷¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Joption
++\f3javac\fP¤¬¸Æ¤Ó½Ð¤¹\f3java\fPµ¯Æ°¥Ä¡¼¥ë¤Ë¡¢\f2option\fP¤òÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤Æ¡¢Java¤Çµ­½Ò¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ëÇظå¤ÎVM¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¡¢¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.br
++.br
++\f3Ãí°Õ:\fP \f3CLASSPATH\fP¡¢\f3\-classpath\fP¡¢\f3\-bootclasspath\fP¤ª¤è¤Ó\f3\-extdirs\fP¤Ï¡¢\f3javac\fP¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤Ë»ÈÍѤ¹¤ë¥¯¥é¥¹¤ò»ØÄꤹ¤ë¤â¤Î¤Ç¤Ï\f2¤¢¤ê¤Þ¤»¤ó\fP¡£¤³¤Î¤è¤¦¤ÊÊýË¡¤Ç¥³¥ó¥Ñ¥¤¥é¤Î¼ÂÁõ¤òÁàºî¤¹¤ë¤³¤È¤Ï¡¢Ä̾ï¤Ï̵°ÕÌ£¤Ç¤¢¤ê¡¢¾ï¤Ë´í¸±¤òȼ¤¤¤Þ¤¹¡£¤³¤Î¤è¤¦¤ÊÊýË¡¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢\f3\-J\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢É¬Íפʥª¥×¥·¥ç¥ó¤òÇظå¤Î\f3java\fPµ¯Æ°¥Ä¡¼¥ë¤ËÅϤ·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-nowarn
++·Ù¹ð¥á¥Ã¥»¡¼¥¸¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£¤³¤ì¤Ï\f3\-Xlint:none\fP¤ÈƱ¤¸°ÕÌ£¤Ç¤¹¡£
++.TP 3
++\-proc: {none,only}
++Ãí¼á½èÍý¡¢¥³¥ó¥Ñ¥¤¥ë¡¢¤½¤ÎξÊý¡¢¤Î¤¤¤º¤ì¤ò¼Â¹Ô¤¹¤ë¤«¤òÀ©¸æ¤·¤Þ¤¹¡£\f3\-proc:none\fP¤Ï¡¢Ãí¼á½èÍý¤Ê¤·¤Ç¥³¥ó¥Ñ¥¤¥ë¤¬¼Â¹Ô¤µ¤ì¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£\f3\-proc:only\fP¤Ï¡¢Ãí¼á½èÍý¤Î¤ß¤¬¼Â¹Ô¤µ¤ì¡¢¸å³¤Î¥³¥ó¥Ñ¥¤¥ë¤Ï¤Þ¤Ã¤¿¤¯¼Â¹Ô¤µ¤ì¤Ê¤¤¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£
++.TP 3
++\-processor class1[,class2,class3...]
++¼Â¹Ô¤¹¤ëÃí¼á¥×¥í¥»¥Ã¥µ¤Î̾Á°¡£¤³¤ì¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Î¸¡º÷½èÍý¤Ï¾Êά¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-processorpath path
++Ãí¼á¥×¥í¥»¥Ã¥µ¤Î¸¡º÷¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹Æâ¤Ç¥×¥í¥»¥Ã¥µ¤Î¸¡º÷¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.TP 3
++\-s dir
++À¸À®¤µ¤ì¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î³ÊǼÀè¤È¤Ê¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤Þ¤¹¡£¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f3javac\fP¤Ç¤ÏºîÀ®¤µ¤ì¤Þ¤»¤ó¡£¥¯¥é¥¹¤¬¥Ñ¥Ã¥±¡¼¥¸¤Î°ìÉô¤Ë¤Ê¤Ã¤Æ¤¤¤¿¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÈ¿±Ç¤·¤¿¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë³ÊǼ¤·¤Þ¤¹¡£¤½¤ÎºÝ¡¢É¬Íפ˱þ¤¸¤Æ¥Ç¥£¥ì¥¯¥È¥ê¤òºîÀ®¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥æ¡¼¥¶¡¼¤¬\f3\-s/home/mysrc\fP¤È»ØÄꤷ¡¢¥¯¥é¥¹¤Î̾Á°¤¬\f2com.mypackage.MyClass\fP¤Ç¤¢¤Ã¤¿¾ì¹ç¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï\f2/home/mysrc/com/mypackage/MyClass.java\fPÆâ¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-source release
++¼õ¤±ÉÕ¤±¤ë¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¥Ð¡¼¥¸¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£\f2release\fP¤Ë¤Ï¼¡¤ÎÃͤò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.3
++¤³¤Î¥³¥ó¥Ñ¥¤¥é¤Ç¤Ï¡¢Java SE 1.3°Ê¹ß¤ËƳÆþ¤µ¤ì¤¿¥¢¥µ¡¼¥·¥ç¥ó¡¢Áí¾Î¤Þ¤¿¤Ï¾¤Î¸À¸ìµ¡Ç½¤ò¥µ¥Ý¡¼¥È\f2¤·¤Þ¤»¤ó\fP¡£
++.TP 3
++1.4
++Java SE 1.4¤ÇƳÆþ¤µ¤ì¤¿¡¢¥¢¥µ¡¼¥·¥ç¥ó¤ò´Þ¤à¥³¡¼¥É¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£
++.TP 3
++1.5
++Java SE 5¤ÇƳÆþ¤µ¤ì¤¿Áí¾Î¤ª¤è¤Ó¾¤Î¸À¸ìµ¡Ç½¤ò´Þ¤ó¤À¥³¡¼¥É¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£
++.TP 3
++5
++1.5¤ÈƱµÁ¤Ç¤¹¡£
++.TP 3
++1.6
++Java SE 6¤Ç¤Ï¸À¸ì¤ËÂФ¹¤ëÊѹ¹¤ÏƳÆþ¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£¤·¤«¤·¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¡¦¥¨¥é¡¼¤¬¡¢Java SE°ÊÁ°¤Î¤è¤¦¤Ê¡Ö·Ù¹ð¡×¤Ç¤Ï¤Ê¤¯¡¢¡Ö¥¨¥é¡¼¡×¤È¤·¤ÆÊó¹ð¤µ¤ì¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤·¤¿¡£
++.TP 3
++6
++1.6¤ÈƱµÁ¤Ç¤¹¡£
++.TP 3
++1.7
++¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥ÈÃͤǤ¹¡£Java SE 7¤ÇƳÆþ¤µ¤ì¤¿µ¡Ç½¤ò´Þ¤à¥³¡¼¥É¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£
++.TP 3
++7
++1.7¤ÈƱµÁ¤Ç¤¹¡£
++.RE
++.TP 3
++\-sourcepath sourcepath
++¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÎÄêµÁ¤ò¸¡º÷¤¹¤ë¥½¡¼¥¹¡¦¥³¡¼¥É¡¦¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ÈƱÍͤˡ¢¥½¡¼¥¹¡¦¥Ñ¥¹¤ÎÊ£¿ô¤Î¥¨¥ó¥È¥ê¤Ï¥³¥í¥ó(\f3:\fP)¤Ç¶èÀÚ¤ê¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Ñ¥¹¤Î¥¨¥ó¥È¥ê¤Ë¤Ï¡¢¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤Þ¤¿¤ÏZIP¥¢¡¼¥«¥¤¥Ö¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤Ï¥¢¡¼¥«¥¤¥ÖÆâ¤Î¥í¡¼¥«¥ë¡¦¥Ñ¥¹Ì¾¤¬¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÈ¿±Ç¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++\f3Ãí°Õ:\fP ¥¯¥é¥¹¡¦¥Ñ¥¹¤«¤é¥¯¥é¥¹¤Î¤ß¤Ç¤Ê¤¯¤½¤Î¥½¡¼¥¹¤â¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢¤½¤Î¥¯¥é¥¹¤Ï¼«Æ°ºÆ¥³¥ó¥Ñ¥¤¥ë¤ÎÂоݤˤʤ뤳¤È¤¬¤¢¤ê¤Þ¤¹¡£·¿¤Î¸¡º÷¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-verbose
++¾ÜºÙ¤Ê½ÐÎϤòɽ¼¨¤·¤Þ¤¹¡£¥í¡¼¥É¤µ¤ì¤ë¥¯¥é¥¹¤ª¤è¤Ó¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤´¤È¤Î¾ðÊ󤬽ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-Werror
++·Ù¹ð¤¬È¯À¸¤·¤¿¾ì¹ç¤Ë¥³¥ó¥Ñ¥¤¥ë¤ò½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-X
++Èóɸ½à¥ª¥×¥·¥ç¥ó¤Ë´Ø¤¹¤ë¾ðÊó¤òɽ¼¨¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¡¦¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥¯¥é¥¹¤Î¥³¥ó¥Ñ¥¤¥ë¤Ï¡¢\f3javac\fP¤¬ÅºÉÕ¤µ¤ì¤Æ¤¤¤ë¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ª¤è¤Ó³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ËÂФ·¤Æ¹Ô¤ï¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢\f3javac\fP¤Ï¡¢°Û¤Ê¤ëJava¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ë¼ÂÁõ¤µ¤ì¤¿¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ª¤è¤Ó³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ËÂФ·¤Æ¥³¥ó¥Ñ¥¤¥ë¤ò¹Ô¤¦¡Ö\f2¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë\fP¡×¤â¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¤ò¹Ô¤¦¾ì¹ç¤Ï¡¢\f3\-bootclasspath\fP¤ª¤è¤Ó\f3\-extdirs\fP¤ò»ÈÍѤ¹¤ë¤³¤È¤¬½ÅÍפǤ¹¡£¤³¤Î¸å¤Î¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++\-target version
++»ØÄꤵ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó¤ÎVM¤ò¥¿¡¼¥²¥Ã¥È¤Ë¤·¤¿¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿¥¿¡¼¥²¥Ã¥È°Ê¹ß¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÆ°ºî¤·¤Þ¤¹¤¬¡¢¤½¤ì¤è¤êÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤ÎVM¤Ç¤ÏÆ°ºî¤·¤Þ¤»¤ó¡£Í­¸ú¤Ê¥¿¡¼¥²¥Ã¥È¤Ï¡¢\f31.1\fP¡¢\f31.2\fP¡¢\f31.3\fP¡¢\f31.4\fP¡¢\f31.5\fP(\f35\fP¤â²Ä)¡¢\f31.6\fP(\f36\fP¤â²Ä)¤ª¤è¤Ó\f31.7\fP(\f37\fP¤â²Ä)¤Ç¤¹¡£
++.LP
++\f3\-target\fP¤Î¥Ç¥Õ¥©¥ë¥È¤Ï¡¢¼¡¤Î¤è¤¦¤Ë\f3\-source\fP¤ÎÃͤˤè¤Ã¤Æ·è¤Þ¤ê¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\-source¤¬\f3»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿\fP¾ì¹ç¡¢\-target¤ÎÃͤÏ\f31.7\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\-source¤¬\f31.2\fP¤Î¾ì¹ç¡¢\-target¤ÎÃͤÏ\f31.4\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\-source¤¬\f31.3\fP¤Î¾ì¹ç¡¢\-target¤ÎÃͤÏ\f31.4\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\-source¤¬\f31.5\fP¤Î¾ì¹ç¡¢\-target¤ÎÃͤÏ\f31.7\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\-source¤¬\f31.6\fP¤Î¾ì¹ç¡¢\-target¤ÎÃͤÏ\f31.7\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\-source¤¬\f3¤½¤ì°Ê³°¤ÎÃͤξì¹ç¤Ï¤¹¤Ù¤Æ\fP¡¢\f3\-target\fP¤ÎÃͤÏ\f3\-source\fP¤ÎÃͤˤʤê¤Þ¤¹¡£
++.RE
++.TP 3
++\-bootclasspath bootclasspath
++»ØÄꤵ¤ì¤¿°ìÏ¢¤Î¥Ö¡¼¥È¡¦¥¯¥é¥¹¤ËÂФ·¤Æ¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¤ò¹Ô¤¤¤Þ¤¹¡£¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ÈƱÍͤˡ¢¥Ö¡¼¥È¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÊ£¿ô¤Î¥¨¥ó¥È¥ê¤Ï¥³¥í¥ó(\f3:\fP)¤Ç¶èÀÚ¤ê¤Þ¤¹¡£¥Ö¡¼¥È¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥¨¥ó¥È¥ê¤Ë¤Ï¡¢¥Ç¥£¥ì¥¯¥È¥ê¡¢JAR¥¢¡¼¥«¥¤¥Ö¤Þ¤¿¤ÏZIP¥¢¡¼¥«¥¤¥Ö¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++Èóɸ½à¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-Xbootclasspath/p:path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÁ°¤ËÄɲä·¤Þ¤¹¡£
++.TP 3
++\-Xbootclasspath/a:path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¸å¤ËÄɲä·¤Þ¤¹¡£
++.TP 3
++\-Xbootclasspath/:path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-Xlint
++¿ä¾©¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î·Ù¹ð¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï¡¢ÍøÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤Î·Ù¹ð¤òÍ­¸ú¤Ë¤¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.TP 3
++\-Xlint:all
++¿ä¾©¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î·Ù¹ð¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï¡¢ÍøÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤Î·Ù¹ð¤òÍ­¸ú¤Ë¤¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.TP 3
++\-Xlint:none
++¤¹¤Ù¤Æ¤Î·Ù¹ð¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-Xlint:name
++·Ù¹ð\f2name\fP¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ÇÍ­¸ú¤Ë¤Ç¤­¤ë·Ù¹ð¤Î¥ê¥¹¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢\-Xlint¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆÍ­¸ú¤Þ¤¿¤Ï̵¸ú¤Ë¤Ç¤­¤ë·Ù¹ð¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Xlint:\-name
++·Ù¹ð\f2name\fP¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç̵¸ú¤Ë¤Ç¤­¤ë·Ù¹ð¤Î¥ê¥¹¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢\-Xlint¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆÍ­¸ú¤Þ¤¿¤Ï̵¸ú¤Ë¤Ç¤­¤ë·Ù¹ð¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Xmaxerrs number
++°õºþ¤¹¤ë¥¨¥é¡¼¤ÎºÇÂç¿ô¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Xmaxwarns number
++°õºþ¤¹¤ë·Ù¹ð¤ÎºÇÂç¿ô¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Xstdout filename
++¥³¥ó¥Ñ¥¤¥é¤Î¥á¥Ã¥»¡¼¥¸¤ò¡¢»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤ËÁ÷¤ê¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Î¥á¥Ã¥»¡¼¥¸¤Ï\f2System.err\fP¤ËÁ÷¤é¤ì¤Þ¤¹¡£
++.TP 3
++\-Xprefer:{newer,source}
++¤¢¤ë·¿¤ËÂФ·¤Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎξÊý¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢¤½¤Î¤É¤Á¤é¤Î¥Õ¥¡¥¤¥ë¤òÆɤ߼è¤ë¤«¤ò»ØÄꤷ¤Þ¤¹(·¿¤Î¸¡º÷¤ò»²¾È)¡£\f2\-Xprefer:newer\fP¤ò»ÈÍѤ·¤¿¾ì¹ç¡¢¤¢¤ë·¿¤ËÂФ¹¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¿·¤·¤¤Êý¤¬Æɤ߼è¤é¤ì¤Þ¤¹(¥Ç¥Õ¥©¥ë¥È)¡£\f2\-Xprefer:source\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤¿¾ì¹ç¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬Æɤ߼è¤é¤ì¤Þ¤¹¡£\f2SOURCE\fP¤ÎÊݸ¥Ý¥ê¥·¡¼¤ò»ÈÍѤ·¤ÆÀë¸À¤µ¤ì¤¿Ãí¼á¤ËǤ°Õ¤ÎÃí¼á¥×¥í¥»¥Ã¥µ¤¬¥¢¥¯¥»¥¹¤Ç¤­¤ë¤è¤¦¤Ë¤¹¤ë¾ì¹ç¤Ï¡¢\f2\-Xprefer:source\fP¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Xpkginfo:{always,legacy,nonempty}
++¥Ñ¥Ã¥±¡¼¥¸¾ðÊó¥Õ¥¡¥¤¥ë¤Î½èÍý¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Xprint
++»ØÄꤵ¤ì¤¿·¿¤Î¥Æ¥­¥¹¥Èɽ¸½¤ò¥Ç¥Ð¥Ã¥°ÌÜŪ¤Ç½ÐÎϤ·¤Þ¤¹¡£Ãí¼á½èÍý¡¢¥³¥ó¥Ñ¥¤¥ë¤Î¤É¤Á¤é¤â¼Â¹Ô¤·¤Þ¤»¤ó¡£½ÐÎÏ·Á¼°¤ÏÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-XprintProcessorInfo
++¤¢¤ëÆÃÄê¤Î¥×¥í¥»¥Ã¥µ¤¬½èÍý¤ò°ÍÍꤵ¤ì¤Æ¤¤¤ëÃí¼á¤Ë´Ø¤¹¤ë¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-XprintRounds
++½é²ó¤ª¤è¤Ó¸å³¤ÎÃí¼á½èÍý¥é¥¦¥ó¥É¤Ë´Ø¤¹¤ë¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++\-Xlint¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆÍ­¸ú¤Þ¤¿¤Ï̵¸ú¤Ë¤Ç¤­¤ë·Ù¹ð
++.LP
++.LP
++\f3\-Xlint:\fP\f2name\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ·Ù¹ð\f2name\fP¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤¿¤À¤·¡¢\f2name\fP¤Ï¼¡¤Î·Ù¹ð̾¤Î¤¤¤º¤ì¤«¤Ë¤Ê¤ê¤Þ¤¹¡£Æ±Íͤˡ¢\f3\-Xlint:\-\fP\f2name\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ·Ù¹ð\f2name\fP¤ò̵¸ú¤Ë¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++cast
++ÉÔÍפǾéĹ¤Ê¥­¥ã¥¹¥È¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++String s = (String)"Hello!"
++.fl
++\fP
++.fi
++.TP 3
++classfile
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÆâÍƤ˴ØÏ¢¤·¤¿ÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£
++.TP 3
++deprecation
++Èó¿ä¾©¹àÌܤλÈÍѤˤĤ¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ java.util.Date myDate = new java.util.Date();
++.fl
++ int currentDay = myDate.getDay();
++.fl
++\fP
++.fi
++¥á¥½¥Ã¥É\f2java.util.Date.getDay\fP¤ÏJDK 1.1°Ê¹ß¤Ï¿ä¾©¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£
++.TP 3
++dep\-ann
++\f2@deprecated\fP Javadoc¥³¥á¥ó¥È¤Ç¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Æ¤¤¤ë¤¬¡¢\f2@Deprecated\fPÃí¼á¤¬ÉÕ¤¤¤Æ¤¤¤Ê¤¤¹àÌܤˤĤ¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * @deprecated As of Java SE 7, replaced by {@link #newMethod()}
++.fl
++ */
++.fl
++
++.fl
++ public static void deprecatedMethood() { }
++.fl
++
++.fl
++ public static void newMethod() { }
++.fl
++\fP
++.fi
++.TP 3
++divzero
++ÄêÀ°¿ô0¤Ç½ü»»¤µ¤ì¤ë¤³¤È¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ int divideByZero = 42 / 0;
++.fl
++\fP
++.fi
++.TP 3
++empty
++\f2if\fPʸ°Ê¹ß¤¬¶õ¤Îʸ¤Ç¤¢¤ë¤³¤È¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++class E {
++.fl
++ void m() {
++.fl
++ if (true) ;
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++.TP 3
++fallthrough
++fall\-through¥±¡¼¥¹¤Î\f2switch\fP¥Ö¥í¥Ã¥¯¤ò¥Á¥§¥Ã¥¯¤·¡¢¸¡½Ð¤µ¤ì¤¿¤â¤Î¤ËÂФ·¤Æ·Ù¹ð¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£Fall\-through¥±¡¼¥¹¤Ï¡¢\f2switch\fP¥Ö¥í¥Ã¥¯Æâ¤ÎºÇ¸å¤Î¥±¡¼¥¹¤ò½ü¤¯¥±¡¼¥¹¤Ç¤¹¡£¤³¤Î¥³¡¼¥É¤Ë¤Ï\f2break\fPʸ¤Ï´Þ¤Þ¤ì¤Þ¤»¤ó¡£¥³¡¼¥É¤Î¼Â¹Ô¤ò¤½¤Î¥±¡¼¥¹¤«¤é¼¡¤Î¥±¡¼¥¹¤Ø°ÜÆ°¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¤³¤Î\f2switch\fP¥Ö¥í¥Ã¥¯Æâ¤Î\f2case 1\fP¥é¥Ù¥ë¤Ë³¤¯¥³¡¼¥É¤Ï¡¢\f2break\fPʸ¤Ç½ª¤ï¤Ã¤Æ¤¤¤Þ¤»¤ó¡£
++.nf
++\f3
++.fl
++switch (x) {
++.fl
++case 1:
++.fl
++ System.out.println("1");
++.fl
++ // No break statement here.
++.fl
++case 2:
++.fl
++ System.out.println("2");
++.fl
++}
++.fl
++\fP
++.fi
++¤³¤Î¥³¡¼¥É¤Î¥³¥ó¥Ñ¥¤¥ë»þ¤Ë\f2\-Xlint:fallthrough\fP¥Õ¥é¥°¤¬»ÈÍѤµ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤ÏÅö³º¥±¡¼¥¹¤Î¹ÔÈÖ¹æ¤È¤È¤â¤Ë¡¢fall\-through¥±¡¼¥¹¤Î²ÄǽÀ­¤¬¤¢¤ë¤³¤È¤ò¼¨¤¹·Ù¹ð¤òȯ¹Ô¤·¤Þ¤¹¡£
++.TP 3
++finally
++Àµ¾ï¤Ë´°Î»¤Ç¤­¤Ê¤¤\f2finally\fPÀá¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ public static int m() {
++.fl
++ try {
++.fl
++ throw new NullPointerException();
++.fl
++ } catch (NullPointerException e) {
++.fl
++ System.err.println("Caught NullPointerException.");
++.fl
++ return 1;
++.fl
++ } finally {
++.fl
++ return 0;
++.fl
++ }
++.fl
++ }
++.fl
++\fP
++.fi
++¤³¤ÎÎã¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ï\f2finally\fP¥Ö¥í¥Ã¥¯¤Ë´Ø¤¹¤ë·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥á¥½¥Ã¥É¤¬¸Æ¤Ó½Ð¤µ¤ì¤ë¤È¡¢ÃÍ\f21\fP¤Ç¤Ï¤Ê¤¯\f20\fP¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£\f2finally\fP¥Ö¥í¥Ã¥¯¤Ï¡¢\f2try\fP¥Ö¥í¥Ã¥¯¤¬½ªÎ»¤¹¤ë¤Èɬ¤º¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢À©¸æ¤¬\f2catch\fP¤Ë°Ü¤µ¤ì¤¿¾ì¹ç¡¢¥á¥½¥Ã¥É¤Ï½ªÎ»¤·¤Þ¤¹¡£¤¿¤À¤·¡¢\f2finally\fP¥Ö¥í¥Ã¥¯¤Ï¼Â¹Ô¤µ¤ì¤ëɬÍפ¬¤¢¤ë¤¿¤á¡¢À©¸æ¤¬¤¹¤Ç¤Ë¤³¤Î¥á¥½¥Ã¥É¤Î³°Éô¤Ë°Ü¤µ¤ì¤Æ¤¤¤Æ¤â¡¢¤³¤Î¥Ö¥í¥Ã¥¯¤Ï¼Â¹Ô¤µ¤ì¤Þ¤¹¡£
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Î»ÈÍѤ˴ؤ¹¤ëÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¤³¤Î¼ï¤Î·Ù¹ð¤ÎÎã¤Ë¤Ä¤¤¤Æ¤Ï¡¢¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++overrides
++¥á¥½¥Ã¥É¤Î¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ë´Ø¤¹¤ëÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î2¤Ä¤Î¥¯¥é¥¹¤¬¤¢¤ë¤È¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++public class ClassWithVarargsMethod {
++.fl
++ void varargsMethod(String... s) { }
++.fl
++}
++.fl
++\fP
++.fi
++.nf
++\f3
++.fl
++public class ClassWithOverridingMethod extends ClassWithVarargsMethod {
++.fl
++ @Override
++.fl
++ void varargsMethod(String[] s) { }
++.fl
++}
++.fl
++\fP
++.fi
++¥³¥ó¥Ñ¥¤¥é¤Ï¼¡¤Î¤è¤¦¤Ê·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£
++.br
++.br
++\f2warning: [override] varargsMethod(String[]) in ClassWithOverridingMethod overrides varargsMethod(String...) in ClassWithVarargsMethod; overriding method is missing '...'\fP
++.br
++.br
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢varargs¥á¥½¥Ã¥É¤ò¸¡½Ð¤¹¤ë¤È¡¢varargs¤Î²¾¥Ñ¥é¥á¡¼¥¿¤òÇÛÎó¤ËÊÑ´¹¤·¤Þ¤¹¡£¥á¥½¥Ã¥É\f2ClassWithVarargsMethod.varargsMethod\fP¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ïvarargs¤Î²¾¥Ñ¥é¥á¡¼¥¿\f2String... s\fP¤ò²¾¥Ñ¥é¥á¡¼¥¿\f2String[] s\fP¤ËÊÑ´¹¤·¤Þ¤¹¡£String[] s¤Ï¡¢¥á¥½¥Ã¥É\f2ClassWithOverridingMethod.varargsMethod\fP¤Î²¾¥Ñ¥é¥á¡¼¥¿¤ËÂбþ¤¹¤ëÇÛÎó¤Ç¤¹¡£¤½¤Î·ë²Ì¡¢¤³¤ÎÎã¤Ç¤Ï¥³¥ó¥Ñ¥¤¥ë¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.TP 3
++path
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Î̵¸ú¤Ê¥Ñ¥¹Í×ÁǤȸºß¤·¤Ê¤¤¥Ñ¥¹¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹(¥¯¥é¥¹¡¦¥Ñ¥¹¡¢¥½¡¼¥¹¡¦¥Ñ¥¹¤Ê¤É¤Î¥Ñ¥¹´ØÏ¢)¡£¤³¤Î¤è¤¦¤Ê·Ù¹ð¤ò\f2@SuppressWarnings\fPÃí¼á¤ÇÍÞÀ©¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++javac \-Xlint:path \-classpath /nonexistentpath Example.java
++.fl
++\fP
++.fi
++.TP 3
++processing
++Ãí¼á½èÍý¤Ë´Ø¤¹¤ëÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¥³¥ó¥Ñ¥¤¥é¤¬¤³¤Î·Ù¹ð¤òÀ¸À®¤¹¤ë¤Î¤Ï¡¢Ãí¼á¤ò´Þ¤à¥¯¥é¥¹¤¬¤¢¤ë¤È¤­¤Ë¡¢»ÈÍѤ·¤Æ¤¤¤ëÃí¼á¥×¥í¥»¥Ã¥µ¤Ç¤½¤Î¥¿¥¤¥×¤ÎÎã³°¤ò½èÍý¤Ç¤­¤Ê¤¤¾ì¹ç¤Ç¤¹¡£Ã±½ã¤ÊÃí¼á¥×¥í¥»¥Ã¥µ¤ÎÎã¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.br
++.br
++\f3¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë\fP\f4AnnoProc.java\fP:
++.nf
++\f3
++.fl
++import java.util.*;
++.fl
++import javax.annotation.processing.*;
++.fl
++import javax.lang.model.*;
++.fl
++import javax.lang.model.element.*;
++.fl
++
++.fl
++@SupportedAnnotationTypes("NotAnno")
++.fl
++public class AnnoProc extends AbstractProcessor {
++.fl
++ public boolean process(Set<? extends TypeElement> elems, RoundEnvironment renv) {
++.fl
++ return true;
++.fl
++ }
++.fl
++
++.fl
++ public SourceVersion getSupportedSourceVersion() {
++.fl
++ return SourceVersion.latest();
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++\f3¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë\fP\f4AnnosWithoutProcessors.java\fP\f3:\fP
++.nf
++\f3
++.fl
++@interface Anno { }
++.fl
++
++.fl
++@Anno
++.fl
++class AnnosWithoutProcessors { }
++.fl
++\fP
++.fi
++¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢Ãí¼á¥×¥í¥»¥Ã¥µ\f2AnnoProc\fP¤ò¥³¥ó¥Ñ¥¤¥ë¤·¡¢¤³¤ÎÃí¼á¥×¥í¥»¥Ã¥µ¤ò¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë\f2AnnosWithoutProcessors.java\fP¤ËÂФ·¤Æ¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% \fP\f3javac AnnoProc.java\fP
++.fl
++% \f3javac \-cp . \-Xlint:processing \-processor AnnoProc \-proc:only AnnosWithoutProcessors.java\fP
++.fl
++.fi
++¥³¥ó¥Ñ¥¤¥é¤¬¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë\f2AnnosWithoutProcessors.java\fP¤ËÂФ·¤ÆÃí¼á¥×¥í¥»¥Ã¥µ¤ò¼Â¹Ô¤¹¤ë¤È¡¢¼¡¤Î·Ù¹ð¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f2warning: [processing] No processor claimed any of these annotations: Anno\fP
++.br
++.br
++¤³¤ÎÌäÂê¤ò²ò·è¤¹¤ë¤Ë¤Ï¡¢¥¯¥é¥¹\f2AnnosWithoutProcessors\fP¤ÇÄêµÁ¤ª¤è¤Ó»ÈÍѤµ¤ì¤ëÃí¼á¤Î̾Á°¤ò\f2Anno\fP¤«¤é\f2NotAnno\fP¤ËÊѹ¹¤·¤Þ¤¹¡£
++.TP 3
++rawtypes
++raw·¿¤ËÂФ¹¤ë̤¸¡ººÁàºî¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤Îʸ¤Ç¤Ï¡¢\f2rawtypes\fP·Ù¹ð¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++void countElements(List l) { ... }
++.fl
++\fP
++.fi
++¼¡¤Îʸ¤Ç¤Ï¡¢\f2rawtypes\fP·Ù¹ð¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£
++.nf
++\f3
++.fl
++void countElements(List<?> l) { ... }
++.fl
++\fP
++.fi
++\f2List\fP¤Ïraw·¿¤Ç¤¹¡£¤¿¤À¤·¡¢\f2List<?>\fP¤Ï¥¢¥ó¥Ð¥¦¥ó¥É·Á¼°¤Î¥ï¥¤¥ë¥É¥«¡¼¥É¤Î¥Ñ¥é¥á¡¼¥¿²½¤µ¤ì¤¿·¿¤Ç¤¹¡£\f2List\fP¤Ï¥Ñ¥é¥á¡¼¥¿²½¤µ¤ì¤¿¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ê¤Î¤Ç¡¢É¬¤º¤½¤Î·¿°ú¿ô¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢\f2List\fP¤Î²¾°ú¿ô¤Ï¥¢¥ó¥Ð¥¦¥ó¥É·Á¼°¤Î¥ï¥¤¥ë¥É¥«¡¼¥É(\f2?\fP)¤ò»ÈÍѤ·¤Æ¤½¤Î²¾·¿¥Ñ¥é¥á¡¼¥¿¤È¤·¤Æ»ØÄꤵ¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢\f2countElements\fP¥á¥½¥Ã¥É¤Ï\f2List\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤É¤Î¥¤¥ó¥¹¥¿¥ó¥¹²½¤â¼õ¤±ÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.TP 3
++serial
++ľÎó²½²Äǽ¥¯¥é¥¹¤Ë\f2serialVersionUID\fPÄêµÁ¤¬¤Ê¤¤¤³¤È¤ò·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++public class PersistentTime implements Serializable
++.fl
++{
++.fl
++ private Date time;
++.fl
++
++.fl
++ public PersistentTime() {
++.fl
++ time = Calendar.getInstance().getTime();
++.fl
++ }
++.fl
++
++.fl
++ public Date getTime() {
++.fl
++ return time;
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++¥³¥ó¥Ñ¥¤¥é¤Ï¼¡¤Î·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£
++.br
++.br
++\f2warning: [serial] serializable class PersistentTime has no definition of serialVersionUID\fP
++.br
++.br
++ľÎó²½²Äǽ¥¯¥é¥¹¤¬\f2serialVersionUID\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥£¡¼¥ë¥É¤òÌÀ¼¨Åª¤ËÀë¸À¤·¤Ê¤¤¾ì¹ç¡¢Ä¾Îó²½¥é¥ó¥¿¥¤¥à¤Ï¡ÖJava¥ª¥Ö¥¸¥§¥¯¥ÈľÎó²½»ÅÍ͡פÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ë¡¢¥¯¥é¥¹¤ÎÍÍ¡¹¤Ê¦Ì̤˴ð¤Å¤¤¤Æ¡¢¥¯¥é¥¹¤Î\f2serialVersionUID\fP¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤò·×»»¤·¤Þ¤¹¡£¤¿¤À¤·¡¢¤¹¤Ù¤Æ¤ÎľÎó²½²Äǽ¥¯¥é¥¹¤¬\f2serialVersionUID\fPÃͤòÌÀ¼¨Åª¤ËÀë¸À¤¹¤ë¤³¤È¤ò¶¯¤¯¤ªÁ¦¤á¤·¤Þ¤¹¡£ ¤³¤ì¤Ï¡¢\f2serialVersionUID\fPÃͤò·×»»¤¹¤ë¥Ç¥Õ¥©¥ë¥È¤Î¥×¥í¥»¥¹¤¬¡¢¥³¥ó¥Ñ¥¤¥é¤Î¼ÂÁõ¤Ë¤è¤Ã¤Æ°Û¤Ê¤ë²ÄǽÀ­¤Î¤¢¤ë¥¯¥é¥¹¤Î¾ÜºÙ¤Ë¤­¤ï¤á¤Æ±Æ¶Á¤ò¼õ¤±¤ä¤¹¤¯¡¢Ä¾Îó²½Éü¸µÃæ¤Ëͽ´ü¤·¤Ê¤¤\f2InvalidClassExceptions\fP¤¬È¯À¸¤¹¤ë²ÄǽÀ­¤¬¤¢¤ë¤¿¤á¤Ç¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢Java¥³¥ó¥Ñ¥¤¥é¤Î¼ÂÁõ¤¬°Û¤Ê¤Ã¤Æ¤â\f2serialVersionUID\fPÃͤΰì´ÓÀ­¤ò³ÎÊݤˤ¹¤ë¤Ë¤Ï¡¢Ä¾Îó²½²Äǽ¥¯¥é¥¹¤¬\f2serialVersionUID\fPÃͤòÌÀ¼¨Åª¤ËÀë¸À¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++static
++static¤Î»ÈÍѤ˴ؤ¹¤ëÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++class XLintStatic {
++.fl
++ static void m1() { }
++.fl
++ void m2() { this.m1(); }
++.fl
++}
++.fl
++\fP
++.fi
++¥³¥ó¥Ñ¥¤¥é¤Ï¼¡¤Î·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++warning: [static] static method should be qualified by type name, XLintStatic, instead of by an expression
++.fl
++\fP
++.fi
++¤³¤ÎÌäÂê¤ò²ò·è¤¹¤ë¤¿¤á¤Ë¡¢¼¡¤Î¤è¤¦¤Ëstatic¥á¥½¥Ã¥É\f2m1\fP¤ò¸Æ¤Ó½Ð¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++XLintStatic.m1();
++.fl
++\fP
++.fi
++¤¢¤ë¤¤¤Ï¡¢\f2static\fP¥­¡¼¥ï¡¼¥É¤ò¥á¥½¥Ã¥É\f2m1\fP¤ÎÀë¸À¤«¤éºï½ü¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.TP 3
++try
++try\-with\-resourcesʸ¤ò´Þ¤à¡¢\f2try\fP¥Ö¥í¥Ã¥¯¤Î»ÈÍѤ˴ؤ¹¤ëÌäÂê¤Ë¤Ä¤¤¤Æ·Ù¹ð¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2try\fPʸ¤ÇÀë¸À¤µ¤ì¤¿¥ê¥½¡¼¥¹\f2ac\fP¤¬»ÈÍѤµ¤ì¤Ê¤¤¤¿¤á¤Ë¡¢¼¡¤Îʸ¤ËÂФ·¤Æ·Ù¹ð¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++try ( AutoCloseable ac = getResource() ) {
++.fl
++ // do nothing
++.fl
++}
++.fl
++\fP
++.fi
++.TP 3
++unchecked
++Java¸À¸ì»ÅÍͤǻØÄꤵ¤ì¤Æ¤¤¤ë̤¸¡ººÊÑ´¹·Ù¹ð¤Î¾ÜºÙ¤ò¼¨¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ List l = new ArrayList<Number>();
++.fl
++ List<String> ls = l; // unchecked warning
++.fl
++\fP
++.fi
++·¿¤Î¾ÃµîÃæ¤Ë¡¢·¿\f2ArrayList<Number>\fP¤ª¤è¤Ó\f2List<String>\fP¤Ï¤½¤ì¤¾¤ì\f2ArrayList\fP¤ª¤è¤Ó\f2List\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++ÊÑ¿ô\f2ls\fP¤Ë¤Ï¥Ñ¥é¥á¡¼¥¿²½¤µ¤ì¤¿·¿\f2List<String>\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹¡£\f2l\fP¤Ë¤è¤Ã¤Æ»²¾È¤µ¤ì¤ë\f2List\fP¤¬\f2ls\fP¤ËÂåÆþ¤µ¤ì¤ë¤È¡¢¥³¥ó¥Ñ¥¤¥é¤Ï̤¸¡ºº·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£¥³¥ó¥Ñ¥¤¥é¤Ï\f2l\fP¤¬\f2List<String>\fP·¿¤ò»²¾È¤¹¤ë¤«¤É¤¦¤«¤ò¥³¥ó¥Ñ¥¤¥ë»þ¤ËȽÃǤǤ­¤Þ¤»¤ó¡£¤Þ¤¿¡¢JVM¤¬¼Â¹Ô»þ¤Ë¤½¤ì¤òȽÃǤǤ­¤Ê¤¤¤³¤È¤âǧ¼±¤·¤Æ¤¤¤Þ¤¹¡£l¤ÏList<String>·¿¤ò»²¾È¤·¤Þ¤»¤ó¡£¤½¤Î·ë²Ì¡¢¥Ò¡¼¥×±øÀ÷¤¬È¯À¸¤·¤Þ¤¹¡£
++.br
++.br
++¾Ü¤·¤¯ÀâÌÀ¤¹¤ë¤È¡¢¥Ò¡¼¥×±øÀ÷¾õÂÖ¤¬È¯À¸¤¹¤ë¤Î¤Ï¡¢\f2List\fP¥ª¥Ö¥¸¥§¥¯¥È\f2l\fP(¤½¤Îstatic·¿¤Ï\f2List<Number>\fP)¤¬Ê̤Î\f2List\fP¥ª¥Ö¥¸¥§¥¯¥È\f2ls\fP(°Û¤Ê¤ëstatic·¿\f2List<String>\fP¤ò»ý¤Ä)¤ËÂåÆþ¤µ¤ì¤ë¾ì¹ç¤Ç¤¹¡£¤·¤«¤·¡¢¥³¥ó¥Ñ¥¤¥é¤Ç¤Ï¤³¤ÎÂåÆþ¤ò¤¤¤Þ¤À¤Ëµö²Ä¤·¤Æ¤¤¤Þ¤¹¡£Áí¾Î¤ò¥µ¥Ý¡¼¥È¤·¤Ê¤¤Java SE¤Î¥Ð¡¼¥¸¥ç¥ó¤È¤Î²¼°Ì¸ß´¹À­¤ò³ÎÊݤ¹¤ë¤¿¤á¤Ë¡¢¤³¤ÎÂåÆþ¤òµö²Ä¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£·¿¾Ãµî¤Î¤¿¤á¤Ë¡¢\f2List<Number>\fP¤È\f2List<String>\fP¤Ï\f2List\fP¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤Î·ë²Ì¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¥ª¥Ö¥¸¥§¥¯¥È\f2l\fP(\f2List\fP¤È¤¤¤¦raw·¿¤ò»ý¤Ä)¤ò¥ª¥Ö¥¸¥§¥¯¥È\f2ls\fP¤ËÂåÆþ¤¹¤ë¤³¤È¤òµö²Ä¤·¤Þ¤¹¡£
++.TP 3
++varargs
++²ÄÊÑ°ú¿ô(varargs)¥á¥½¥Ã¥É¡¢ÆäËÈó¶ñ¾Ý²½²Äǽ°ú¿ô¤ò´Þ¤à¤â¤Î¤Î»ÈÍѤ¬°ÂÁ´¤Ç¤Ê¤¤¤³¤È¤ò·Ù¹ð¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++public class ArrayBuilder {
++.fl
++ public static <T> void addToList (List<T> listArg, T... elements) {
++.fl
++ for (T x : elements) {
++.fl
++ listArg.add(x);
++.fl
++ }
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¥á¥½¥Ã¥É\f2ArrayBuilder.addToList\fP¤ÎÄêµÁ¤Ë´Ø¤¹¤ë¼¡¤Î·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++warning: [varargs] Possible heap pollution from parameterized vararg type T
++.fl
++\fP
++.fi
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢varargs¥á¥½¥Ã¥É¤ò¸¡½Ð¤¹¤ë¤È¡¢varargs¤Î²¾¥Ñ¥é¥á¡¼¥¿¤òÇÛÎó¤ËÊÑ´¹¤·¤Þ¤¹¡£¤·¤«¤·¡¢Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Ç¤Ï¡¢¥Ñ¥é¥á¡¼¥¿²½¤µ¤ì¤¿·¿¤ÎÇÛÎó¤ÎºîÀ®¤òµö²Ä¤·¤Æ¤¤¤Þ¤»¤ó¡£¥á¥½¥Ã¥É\f2ArrayBuilder.addToList\fP¤Ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ïvarargs¤Î²¾¥Ñ¥é¥á¡¼¥¿\f2T... elements\fP¤ò²¾¥Ñ¥é¥á¡¼¥¿\f2T[] elements\fP(ÇÛÎó)¤ËÊÑ´¹¤·¤Þ¤¹¡£¤·¤«¤·¡¢·¿¾Ãµî¤Î¤¿¤á¤Ë¡¢¥³¥ó¥Ñ¥¤¥é¤Ïvarargs¤Î²¾¥Ñ¥é¥á¡¼¥¿¤ò\f2Object[] elements\fP¤ËÊÑ´¹¤·¤Þ¤¹¡£¤½¤Î·ë²Ì¡¢¥Ò¡¼¥×±øÀ÷¤¬È¯À¸¤¹¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë"
++.LP
++.LP
++javac¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤òû¤¯¤·¤¿¤ê´Ê·é¤Ë¤·¤¿¤ê¤¹¤ë¤¿¤á¤Ë¡¢\f2javac\fP¥³¥Þ¥ó¥É¤ËÂФ¹¤ë°ú¿ô(\f2\-J\fP¥ª¥×¥·¥ç¥ó¤ò½ü¤¯)¤ò´Þ¤à1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤ÎÊýË¡¤ò»ÈÍѤ¹¤ë¤È¡¢¤É¤Î¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¾å¤Ç¤â¡¢Ç¤°Õ¤ÎŤµ¤Îjavac¥³¥Þ¥ó¥É¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢javac¤Î¥ª¥×¥·¥ç¥ó¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò¼«Í³¤ËÁȤ߹礻¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£¥Õ¥¡¥¤¥ëÆâ¤Î³Æ°ú¿ô¤Ï¡¢¥¹¥Ú¡¼¥¹¤Þ¤¿¤Ï²þ¹Ô¤Ç¶èÀÚ¤ê¤Þ¤¹¡£¥Õ¥¡¥¤¥ë̾¤Ë¶õÇò¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë̾Á´ÂΤòÆó½Å°úÍÑÉä¤Ç°Ï¤ß¤Þ¤¹¡£
++.LP
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸«¤¿ÁêÂХѥ¹¤Ë¤Ê¤ê¤Þ¤¹¡£°ú¿ô¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤«¤é¸«¤¿ÁêÂХѥ¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¥ê¥¹¥È¤Ç¤Ï¡¢¥ï¥¤¥ë¥É¥«¡¼¥É(*)¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2*.java\fP¤È¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó¡£°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î°ú¿ô¤Ç\f2@\fPʸ»ú¤ò»ÈÍѤ·¤Æ¡¢Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤òºÆµ¢Åª¤Ë²ò¼á¤¹¤ë¤³¤È¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤Þ¤¿¡¢\f2\-J\fP¥ª¥×¥·¥ç¥ó¤â¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ïµ¯Æ°¥Ä¡¼¥ë¤ËÅϤµ¤ì¤Þ¤¹¤¬¡¢µ¯Æ°¥Ä¡¼¥ë¤Ç¤Ï°ú¿ô¥Õ¥¡¥¤¥ë¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¤«¤é¤Ç¤¹¡£
++.LP
++.LP
++javac¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢³Æ°ú¿ô¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤È¥Õ¥¡¥¤¥ë̾¤ÎÀèƬ¤Ë\f2@\fPʸ»ú¤òÉÕ¤±¤ÆÅϤ·¤Þ¤¹¡£javac¤Ï¡¢\f2@\fPʸ»ú¤Ç»Ï¤Þ¤ë°ú¿ô¤ò¸«¤Ä¤±¤ë¤È¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤ÎÆâÍƤòŸ³«¤·¤Æ°ú¿ô¥ê¥¹¥È¤ËÁÞÆþ¤·¤Þ¤¹¡£
++.LP
++.SS
++°ú¿ô¥Õ¥¡¥¤¥ë¤ò1¤Ä»ØÄꤹ¤ëÎã
++.LP
++.LP
++¡Ö\f2argfile\fP¡×¤È¤¤¤¦Ì¾Á°¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤¹¤Ù¤Æ¤Îjavac°ú¿ô¤ò³ÊǼ¤¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac @argfile\fP
++.fl
++.fi
++
++.LP
++.LP
++¤³¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¼¡¤ÎÎã¤Ç¼¨¤µ¤ì¤Æ¤¤¤ë2¤Ä¤Î¥Õ¥¡¥¤¥ë¤ÎÆâÍƤòξÊý¤È¤âÆþ¤ì¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.SS
++°ú¿ô¥Õ¥¡¥¤¥ë¤ò2¤Ä»ØÄꤹ¤ëÎã
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢javac¥ª¥×¥·¥ç¥óÍѤË1¥Õ¥¡¥¤¥ë¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾ÍѤË1¥Õ¥¡¥¤¥ë¤È¤¤¤¦¤è¤¦¤Ë¡¢2¤Ä¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¤Ê¤ª¡¢¤³¤Î¸å¤Î¥ê¥¹¥È¤Ç¤Ï¡¢¹Ô¤Î·Ñ³ʸ»ú¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó¡£
++.LP
++.LP
++¼¡¤ÎÆâÍƤò´Þ¤à¡¢¡Ö\f2options\fP¡×¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ \-d classes
++.fl
++ \-g
++.fl
++ \-sourcepath /java/pubs/ws/1.3/src/share/classes
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤ÎÆâÍƤò´Þ¤à\f2classes\fP¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ MyClass1.java
++.fl
++ MyClass2.java
++.fl
++ MyClass3.java
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ\f3javac\fP¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ % \fP\f3javac @options @classes\fP
++.fl
++
++.fl
++.fi
++
++.LP
++.SS
++¥Ñ¥¹ÉÕ¤­¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤ÎÎã
++.LP
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥Ñ¥¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤½¤Î¥Õ¥¡¥¤¥ëÆâ¤Ë»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤Ï¡¢¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸«¤¿ÁêÂХѥ¹¤Ë¤Ê¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢²¼¤ÎÎã¤Î¾ì¹ç¤Ï¡¢\f2path1\fP¤ä\f2path2\fP¤«¤é¸«¤¿ÁêÂХѥ¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac @path1/options @path2/classes\fP
++.fl
++.fi
++
++.LP
++.SH "Ãí¼á½èÍý"
++.LP
++.LP
++\f3javac\fP¤¬Ãí¼á½èÍý¤òľÀÜ¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤ë¤¿¤á¡¢ÆÈΩ¤·¤¿Ãí¼á½èÍý¥Ä¡¼¥ë¤Ç¤¢¤ë\f3apt\fP¤ò»ÈÍѤ¹¤ëɬÍפ¬¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿¡£
++.LP
++.LP
++Ãí¼á½èÍý¤ÎAPI¤Ï¡¢\f2javax.annotation.processing\fP¤ª¤è¤Ó\f2javax.lang.model\fP¥Ñ¥Ã¥±¡¼¥¸¤È¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Æâ¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.SS
++Ãí¼á½èÍý¤Î³µÍ×
++.LP
++.LP
++\f3\-proc:none\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤ÆÃí¼á½èÍý¤¬Ìµ¸ú²½¤µ¤ì¤Ê¤¤¸Â¤ê¡¢¥³¥ó¥Ñ¥¤¥é¤Ï»ÈÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤ÎÃí¼á¥×¥í¥»¥Ã¥µ¤ò¸¡º÷¤·¤Þ¤¹¡£¸¡º÷¥Ñ¥¹¤Ï\f3\-processorpath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ»ØÄê¤Ç¤­¤Þ¤¹¡£¸¡º÷¥Ñ¥¹¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£¥×¥í¥»¥Ã¥µ¤Î¸¡º÷¤Ï¡¢¸¡º÷¥Ñ¥¹¾å¤Î\f2META\-INF/services/javax.annotation.processing.Processor\fP¤È¤¤¤¦Ì¾Á°¤Î¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¹½À®¥Õ¥¡¥¤¥ë¤Ë´ð¤Å¤¤¤Æ¹Ô¤ï¤ì¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢»ÈÍѤ¹¤ë¤¹¤Ù¤Æ¤ÎÃí¼á¥×¥í¥»¥Ã¥µ¤Î̾Á°¤ò¡¢1¹Ô¤Ë1¤Ä¤º¤Ä´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£¤Þ¤¿¡¢Ê̤ÎÊýË¡¤È¤·¤Æ¡¢\f3\-processor\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥×¥í¥»¥Ã¥µ¤òÌÀ¼¨Åª¤Ë»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ä¥¯¥é¥¹¤òÁöºº¤¹¤ë¤³¤È¤Ç¡¢¤É¤Î¤è¤¦¤ÊÃí¼á¤¬Â¸ºß¤·¤Æ¤¤¤ë¤«¤ò³Îǧ¤·½ª¤ï¤ë¤È¡¢¥×¥í¥»¥Ã¥µ¤ËÂФ·¤ÆÌä¹ç¤»¤ò¹Ô¤¤¡¢¤½¤ì¤é¤Î¥×¥í¥»¥Ã¥µ¤¬¤É¤ÎÃí¼á¤ò½èÍý¤Ç¤­¤ë¤Î¤«¤ò³Îǧ¤·¤Þ¤¹¡£°ìÃפ¹¤ë¤â¤Î¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢¤½¤Î¥×¥í¥»¥Ã¥µ¤¬¸Æ¤Ó½Ð¤µ¤ì¤Þ¤¹¡£³Æ¥×¥í¥»¥Ã¥µ¤Ï¡¢¼«¿È¤¬½èÍý¤¹¤ëÃí¼á¤ò¡ÖÍ×µá¡×¤Ç¤­¤Þ¤¹¡£¤½¤Î¾ì¹ç¡¢¤½¤ì¤é¤ÎÃí¼á¤ËÂФ¹¤ëÊÌ¤Î¥×¥í¥»¥Ã¥µ¤ò¸«¤Ä¤±¤ë»î¤ß¤Ï¹Ô¤ï¤ì¤Þ¤»¤ó¡£¤¹¤Ù¤Æ¤ÎÃí¼á¤¬Í׵ᤵ¤ì¤Æ¤·¤Þ¤¦¤È¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¤½¤ì°Ê¾å¥×¥í¥»¥Ã¥µ¤Î¸¡º÷¤ò¹Ô¤¤¤Þ¤»¤ó¡£
++.LP
++.LP
++¤¤¤º¤ì¤«¤Î¥×¥í¥»¥Ã¥µ¤Ë¤è¤Ã¤Æ¿·¤·¤¤¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤ë¤È¡¢Ãí¼á½èÍý¤Î2²óÌܤΥ饦¥ó¥É¤¬³«»Ï¤µ¤ì¤Þ¤¹¡£¿·¤·¤¯À¸À®¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬Áöºº¤µ¤ì¡¢Á°²ó¤ÈƱÍͤËÃí¼á¤¬½èÍý¤µ¤ì¤Þ¤¹¡£°ÊÁ°¤Î¥é¥¦¥ó¥É¤Ç¸Æ¤Ó½Ð¤µ¤ì¤¿¥×¥í¥»¥Ã¥µ¤Ï¤¹¤Ù¤Æ¡¢¸å³¤Î¤É¤Î¥é¥¦¥ó¥É¤Ç¤â¸Æ¤Ó½Ð¤µ¤ì¤Þ¤¹¡£¤³¤ì¤¬¡¢¿·¤·¤¤¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Ê¤¯¤Ê¤ë¤Þ¤Ç³¤­¤Þ¤¹¡£
++.LP
++.LP
++¤¢¤ë¥é¥¦¥ó¥É¤Ç¿·¤·¤¤¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢Ãí¼á¥×¥í¥»¥Ã¥µ¤¬¤¢¤È1²ó¤Î¤ß¸Æ¤Ó½Ð¤µ¤ì¡¢É¬ÍפʽèÍý¤ò¼Â¹Ô¤¹¤ëµ¡²ñ¤¬Í¿¤¨¤é¤ì¤Þ¤¹¡£ºÇ¸å¤Ë¡¢\f3\-proc:only\fP¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤµ¤ì¤Ê¤¤¸Â¤ê¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¸µ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈÀ¸À®¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹¡£
++.LP
++.SS
++°ÅÌÛŪ¤Ë¥í¡¼¥É¤µ¤ì¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢°ìÏ¢¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ëºÝ¤Ë¡¢Ê̤Υ½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò°ÅÌÛŪ¤Ë¥í¡¼¥É¤¹¤ë¤³¤È¤¬É¬Íפʾì¹ç¤¬¤¢¤ê¤Þ¤¹¡£(·¿¤Î¸¡º÷¤ò»²¾È)¡£¤½¤Î¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¤Ï¡¢¸½»þÅÀ¤Ç¤ÏÃí¼á½èÍý¤ÎÂоݤˤʤê¤Þ¤»¤ó¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢Ãí¼á½èÍý¤¬¼Â¹Ô¤µ¤ì¡¢¤«¤Ä°ÅÌÛŪ¤Ë¥í¡¼¥É¤µ¤ì¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬1¤Ä¤Ç¤â¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤¿¾ì¹ç¤Ë¥³¥ó¥Ñ¥¤¥é¤Ï·Ù¹ð¤òȯ¹Ô¤·¤Þ¤¹¡£¤³¤Î·Ù¹ð¤òÍÞÀ©¤¹¤ëÊýË¡¤Ë¤Ä¤¤¤Æ¤Ï¡¢\-implicit¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "·¿¤Î¸¡º÷"
++.LP
++.LP
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë·¿¤ÎÄêµÁ¤¬¸«¤Ä¤«¤é¤Ê¤¤¤È¤­¡¢¥³¥ó¥Ñ¥¤¥é¤ÏÄ̾¤½¤Î·¿¤Ë´Ø¤¹¤ë¾ðÊó¤òɬÍפȤ·¤Þ¤¹¡£¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ç»ÈÍѤµ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢³ÈÄ¥¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¤¢¤ë¤¤¤Ï¼ÂÁõ¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¹¤Ù¤Æ¤Ë¤Ä¤¤¤Æ¡¢·¿¤Î¾ðÊó¤òɬÍפȤ·¤Þ¤¹¡£¤³¤ì¤Ë¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÇÌÀ¼¨Åª¤Ë¤Ï¸ÀµÚ¤µ¤ì¤Æ¤¤¤Ê¤¯¤Æ¤â¡¢·Ñ¾µ¤òÄ̤¸¤Æ¾ðÊó¤òÄ󶡤¹¤ë¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤â´Þ¤Þ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢\f3java.applet.Applet\fP¤ò¥µ¥Ö¥¯¥é¥¹¤Ë¤·¤¿¾ì¹ç¡¢\f3¥¢¥×¥ì¥Ã¥È¤Î\fPÁÄÀè¤Î¥¯¥é¥¹(\f3java.awt.Panel\fP¡¢\f3java.awt.Container\fP¡¢\f3java.awt.Component\fP¡¢\f3java.lang.Object\fP)¤ò»ÈÍѤ·¤Æ¤¤¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢·¿¤Î¾ðÊó¤¬É¬Íפˤʤë¤È¡¢¤½¤Î·¿¤òÄêµÁ¤·¤Æ¤¤¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òõ¤·¤Þ¤¹¡£¤Þ¤º¡¢¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤È³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ò¸¡º÷¤·¡¢Â³¤¤¤Æ¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹(¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê)¤ò¸¡º÷¤·¤Þ¤¹¡£¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ï¡¢\f3CLASSPATH\fP´Ä¶­ÊÑ¿ô¤òÀßÄꤷ¤ÆÄêµÁ¤¹¤ë¤«¡¢¤Þ¤¿¤Ï\f3\-classpath\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤ÆÀßÄꤷ¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÀßÄê¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\-sourcepath¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ñ¥¹¤«¤é¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤·¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤«¤é¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎξÊý¤ò¸¡º÷¤·¤Þ¤¹¡£
++.LP
++.LP
++\f3\-bootclasspath\fP¥ª¥×¥·¥ç¥ó¤È\f3\-extdirs\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢Ê̤Υ֡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ä³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤³¤Î¸å¤Î¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¡¦¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++·¿¤Î¸¡º÷¤ËÀ®¸ù¤·¤¿¤È¤­¤ËÆÀ¤é¤ì¤ë·ë²Ì¤Ï¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¡¢¤Þ¤¿¤Ï¤½¤ÎξÊý¤Ç¤¢¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£Î¾Êý¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢¤½¤Î¤É¤Á¤é¤ò»ÈÍѤ¹¤ë¤«¤ò\-Xprefer¥ª¥×¥·¥ç¥ó¤Ç¥³¥ó¥Ñ¥¤¥é¤Ë»Ø¼¨¤Ç¤­¤Þ¤¹¡£\f3newer\fP¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï2¤Ä¤Î¥Õ¥¡¥¤¥ë¤Î¿·¤·¤¤Êý¤ò»ÈÍѤ·¤Þ¤¹¡£\f3source\fP¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï\f3newer\fP¤Ç¤¹¡£
++.LP
++.LP
++·¿¤Î¸¡º÷¼«ÂΤˤè¤Ã¤Æ¡¢¤Þ¤¿¤Ï\f3\-Xprefer\fP¤¬ÀßÄꤵ¤ì¤¿·ë²Ì¤È¤·¤ÆɬÍפʷ¿¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÆɤ߼è¤ê¡¢É¬ÍפʾðÊó¤ò¼èÆÀ¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥³¥ó¥Ñ¥¤¥ë¤â¹Ô¤¤¤Þ¤¹¡£\-implicit¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤½¤ÎÆ°ºî¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\f3none\fP¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£\f3class\fP¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ï¡¢Ãí¼á½èÍý¤Î´°Î»¸å¤Ë¡¢¤¢¤ë·¿¾ðÊó¤ÎɬÍ×À­¤òǧ¼±¤·¤Ê¤¤¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¤½¤Î·¿¾ðÊ󤬤¢¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¸«¤Ä¤«¤ê¡¢¤«¤Ä\f3\-implicit\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤¬Ãí¼á½èÍý¤ÎÂоݤȤʤ餺¤Ë¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤ë¤³¤È¤ò¡¢¥³¥ó¥Ñ¥¤¥é¤¬¥æ¡¼¥¶¡¼¤Ë·Ù¹ð¤·¤Þ¤¹¡£¤³¤Î·Ù¹ð¤ò̵¸ú¤Ë¤¹¤ë¤Ë¤Ï¡¢(¤½¤Î¥Õ¥¡¥¤¥ë¤¬Ãí¼á½èÍý¤ÎÂоݤȤʤë¤è¤¦¤Ë)¤½¤Î¥Õ¥¡¥¤¥ë¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤹ¤ë¤«¡¢¤¢¤ë¤¤¤Ï¤½¤Î¤è¤¦¤Ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÀ¸À®¤¹¤ëɬÍפ¬¤¢¤ë¤«¤É¤¦¤«¤ò\f3\-implicit\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ»ØÄꤷ¤Þ¤¹¡£
++.LP
++.SH "¥×¥í¥°¥é¥Þ¥Æ¥£¥Ã¥¯¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹"
++.LP
++.LP
++\f3javac\fP¤Ï¡¢\f2javax.tools\fP¥Ñ¥Ã¥±¡¼¥¸Æâ¤Î¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë¤è¤Ã¤ÆÄêµÁ¤µ¤ì¤ë¿·¤·¤¤Java Compiler API¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.LP
++.SS
++Îã
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é»ØÄꤵ¤ì¤¿°ú¿ô¤ò»ÈÍѤ·¤Æ¥³¥ó¥Ñ¥¤¥ë¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥³¡¼¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++JavaCompiler javac = ToolProvider.getSystemJavaCompiler();
++.fl
++int rc = javac.run(null, null, null, args);
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¾ì¹ç¡¢É¸½à½ÐÎÏ¥¹¥È¥ê¡¼¥à¤Ë¤¹¤Ù¤Æ¤Î¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤¬½ñ¤­½Ð¤µ¤ì¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é¸Æ¤Ó½Ð¤µ¤ì¤¿\f3javac\fP¤¬ÊÖ¤¹¤Î¤ÈƱ¤¸½ªÎ»¥³¡¼¥É¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2javax.tools.JavaCompiler\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¾å¤Î¾¤Î¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤Î½èÍý¤ä¥Õ¥¡¥¤¥ë¤ÎÆɼè¤ê¸µ/½ñ¹þ¤ßÀè¤ÎÀ©¸æ¤Ê¤É¤ò¹Ô¤¨¤Þ¤¹¡£
++.LP
++.SS
++µì¼°¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹
++.LP
++.LP
++\f3Ãí°Õ:\fP ¤³¤ÎAPI¤Ï¡¢²¼°Ì¸ß´¹À­¤ò³ÎÊݤ¹¤ë¤¿¤á¤Ë¤Î¤ß»Ä¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¿·¤·¤¤¥³¡¼¥É¤Ç¤Ï¡¢É¬¤ºÁ°½Ò¤ÎJava Compiler API¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f2com.sun.tools.javac.Main\fP¥¯¥é¥¹¤Ë¤Ï¡¢¥×¥í¥°¥é¥àÆ⤫¤é¥³¥ó¥Ñ¥¤¥é¤ò¸Æ¤Ó½Ð¤¹¤¿¤á¤Îstatic¥á¥½¥Ã¥É¤¬2¤ÄÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤½¤ì¤é¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++public static int compile(String[] args);
++.fl
++public static int compile(String[] args, PrintWriter out);
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2args\fP¥Ñ¥é¥á¡¼¥¿¤Ï¡¢javac¥×¥í¥°¥é¥à¤ËÄ̾ïÅϤµ¤ì¤ëǤ°Õ¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£¤½¤Î³µÍפˤĤ¤¤Æ¤Ï¡¢Á°½Ð¤Î·Á¼°¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f2out\fP¥Ñ¥é¥á¡¼¥¿¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Î¿ÇÃÇ¥á¥Ã¥»¡¼¥¸¤Î½ÐÎÏÀè¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++Ìá¤êÃͤϡ¢\f3javac\fP¤Î½ªÎ»ÃͤÈƱ¤¸¤Ç¤¹¡£
++.LP
++.LP
++̾Á°¤¬\f2com.sun.tools.javac\fP¤Ç»Ï¤Þ¤ë¥Ñ¥Ã¥±¡¼¥¸(Èó¸ø¼°¤Ë¤Ï\f2com.sun.tools.javac\fP¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤È¤·¤ÆÃΤé¤ì¤ë)¤Ë´Þ¤Þ¤ì¤ë¤½¤Î¾¤Î¥¯¥é¥¹¤ä¥á¥½¥Ã¥É¤Ï¡¢¤É¤ì¤â´°Á´¤ËÆâÉôÍѤǤ¢¤ê¡¢¤¤¤Ä¤Ç¤âÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "Îã"
++.LP
++.SS
++´Êñ¤Ê¥×¥í¥°¥é¥à¤Î¥³¥ó¥Ñ¥¤¥ë
++.LP
++.LP
++\f2Hello.java\fP¤È¤¤¤¦¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ç¡¢\f3greetings.Hello\fP¤È¤¤¤¦Ì¾Á°¤Î¥¯¥é¥¹¤òÄêµÁ¤·¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£\f2greetings\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎξÊý¤¬¤¢¤ë¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ç¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Î¤¹¤°²¼¤Ë¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤ò»ÈÍѤǤ­¤Þ¤¹¡£¤Þ¤¿¡¢\f3\-d\fP¤ò»ÈÍѤ·¤ÆÊ̤νÐÎÏÀè¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤹ¤ëɬÍפ⤢¤ê¤Þ¤»¤ó¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3ls\fP
++.fl
++greetings/
++.fl
++% \f3ls greetings\fP
++.fl
++Hello.java
++.fl
++% \f3cat greetings/Hello.java\fP
++.fl
++package greetings;
++.fl
++
++.fl
++public class Hello {
++.fl
++ public static void main(String[] args) {
++.fl
++ for (int i=0; i < args.length; i++) {
++.fl
++ System.out.println("Hello " + args[i]);
++.fl
++ }
++.fl
++ }
++.fl
++}
++.fl
++% \f3javac greetings/Hello.java\fP
++.fl
++% \f3ls greetings\fP
++.fl
++Hello.class Hello.java
++.fl
++% \f3java greetings.Hello World Universe Everyone\fP
++.fl
++Hello World
++.fl
++Hello Universe
++.fl
++Hello Everyone
++.fl
++.fi
++
++.LP
++.SS
++Ê£¿ô¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥³¥ó¥Ñ¥¤¥ë
++.LP
++.LP
++¼¡¤ÎÎã¤Ç¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸\f2greetings\fPÆâ¤Î¤¹¤Ù¤Æ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3ls\fP
++.fl
++greetings/
++.fl
++% \f3ls greetings\fP
++.fl
++Aloha.java GutenTag.java Hello.java Hi.java
++.fl
++% \f3javac greetings/*.java\fP
++.fl
++% \f3ls greetings\fP
++.fl
++Aloha.class GutenTag.class Hello.class Hi.class
++.fl
++Aloha.java GutenTag.java Hello.java Hi.java
++.fl
++.fi
++
++.LP
++.SS
++¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Î»ØÄê
++.LP
++.LP
++¾å¤ÎÎã¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¤¦¤Á1¤Ä¤òÊѹ¹¤·¡¢Êѹ¹¸å¤Î¥Õ¥¡¥¤¥ë¤òºÆ¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤È¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3pwd\fP
++.fl
++/examples
++.fl
++% \f3javac greetings/Hi.java\fP
++.fl
++.fi
++
++.LP
++.LP
++\f2greetings.Hi\fP¤Ï¡¢\f2greetings\fP¥Ñ¥Ã¥±¡¼¥¸Æâ¤Î¾¤Î¥¯¥é¥¹¤ò»²¾È¤·¤Æ¤¤¤ë¤¿¤á¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¤³¤ì¤é¤Î¥¯¥é¥¹¤òõ¤¹É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¾å¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤¬¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥ê¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤ÈƱ¤¸¤Ç¤¢¤ë¤¿¤á¡¢¥³¥ó¥Ñ¥¤¥ë¤ÏÀµ¾ï¤Ë¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤·¤«¤·¡¢¸½ºß¤É¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¤¤ë¤«¤Ë´Ø·¸¤Ê¤¯¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤òºÆ¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¾ì¹ç¤ò¹Í¤¨¤Æ¤ß¤Þ¤·¤ç¤¦¡£¤½¤Î¤è¤¦¤Ê¾ì¹ç¤Ï¡¢¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ë\f2/examples\fP¤òÄɲ乤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ë¥¨¥ó¥È¥ê¤òÄɲ乤ë¤Ë¤Ï¡¢\f3CLASSPATH\fP¤òÀßÄꤹ¤ëÊýË¡¤â¤¢¤ê¤Þ¤¹¤¬¡¢¤³¤³¤Ç¤Ï\f3\-classpath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac \-classpath /examples /examples/greetings/Hi.java\fP
++.fl
++.fi
++
++.LP
++.LP
++ºÆÅÙ\f2greetings.Hi\fP¤òÊѹ¹¤·¤Æ¥Ð¥Ê¡¼¡¦¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò»ÈÍѤ¹¤ë¤è¤¦¤Ë¤·¤¿¾ì¹ç¤Ï¡¢¤³¤Î¥Ð¥Ê¡¼¡¦¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤â¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤òÄ̤¸¤Æ¥¢¥¯¥»¥¹¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac \-classpath /examples:/lib/Banners.jar \\
++.fl
++ /examples/greetings/Hi.java\fP
++.fl
++.fi
++
++.LP
++.LP
++\f2greetings\fPÆâ¤Î¥¯¥é¥¹¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢\f2greetings\fP¤È¡¢¤½¤ì¤¬»ÈÍѤ¹¤ë¥¯¥é¥¹¤ÎξÊý¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3java \-classpath /examples:/lib/Banners.jar greetings.Hi\fP
++.fl
++.fi
++
++.LP
++.SS
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎʬΥ
++.LP
++.LP
++ÆäËÂ絬ÌÏ¥×¥í¥¸¥§¥¯¥È¤Î¾ì¹ç¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÊÌ¡¹¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤¯¤ÈÊØÍø¤Ê¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½ÐÎÏÀè¤òÊ̤˻ØÄꤹ¤ë¤Ë¤Ï¡¢\f3\-d\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¡¦¥Ñ¥¹¤Ë¤Ï¤Ê¤¤¤Î¤Ç¡¢\f3\-sourcepath\fP¤ò»ÈÍѤ·¤Æ¡¢¥³¥ó¥Ñ¥¤¥é¤¬¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸«¤Ä¤±¤ë¤³¤È¤¬¤Ç¤­¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3ls\fP
++.fl
++classes/ lib/ src/
++.fl
++% \f3ls src\fP
++.fl
++farewells/
++.fl
++% \f3ls src/farewells\fP
++.fl
++Base.java GoodBye.java
++.fl
++% \f3ls lib\fP
++.fl
++Banners.jar
++.fl
++% \f3ls classes\fP
++.fl
++% \f3javac \-sourcepath src \-classpath classes:lib/Banners.jar \\
++.fl
++ src/farewells/GoodBye.java \-d classes\fP
++.fl
++% \f3ls classes\fP
++.fl
++farewells/
++.fl
++% \f3ls classes/farewells\fP
++.fl
++Base.class GoodBye.class
++.fl
++.fi
++
++.LP
++.LP
++\f3Ãí°Õ:\fP ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Ï\f2src/farewells/Base.java\fP¤ò»ØÄꤷ¤Æ¤¤¤Þ¤»¤ó¤¬¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤â¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤Ã¤Æ¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¼«Æ°¥³¥ó¥Ñ¥¤¥ë¤ò´Æ»ë¤¹¤ë¤Ë¤Ï¡¢\f3\-verbose\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.SS
++¥¯¥í¥¹¥³¥ó¥Ñ¥¤¥ë¤ÎÎã
++.LP
++.LP
++¼¡¤ÎÎã¤Ï¡¢1.6 VM¾å¤ÇÆ°ºî¤¹¤ë¥³¡¼¥É¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤¿¤á¤Ë\f3javac\fP¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac \-source 1.6 \-target 1.6 \-bootclasspath jdk1.6.0/lib/rt.jar \\
++.fl
++ \-extdirs "" OldCode.java\fP
++.fl
++.fi
++
++.LP
++.LP
++\f2\-source 1.6\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê¡¢\f2OldCode.java\fP¤Î¥³¥ó¥Ñ¥¤¥ë¤Ë¤Ï¥Ð¡¼¥¸¥ç¥ó1.6(¤Þ¤¿¤Ï6)¤ÎJava¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£\f3\-target 1.6\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê¡¢1.6 VM¤È¸ß´¹À­¤Î¤¢¤ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤Û¤È¤ó¤É¤Î¾ì¹ç¡¢\f3\-target\fP¥ª¥×¥·¥ç¥ó¤ÎÃͤÏ\f3\-source\fP¥ª¥×¥·¥ç¥ó¤ÎÃͤˤʤê¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢\f3\-target\fP¥ª¥×¥·¥ç¥ó¤ò¾Êά¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3\-bootclasspath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢Å¬ÀڤʥС¼¥¸¥ç¥ó¤Î¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹(\f2rt.jar\fP¥é¥¤¥Ö¥é¥ê)¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£»ØÄꤷ¤Ê¤¤¾ì¹ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤Ã¤Æ¼¡¤Î·Ù¹ð¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++% \fP\f3javac \-source 1.6 OldCode.java\fP
++.fl
++warning: [options] bootstrap class path not set in conjunction with \-source 1.6
++.fl
++.fi
++
++.LP
++.LP
++ŬÀڤʥС¼¥¸¥ç¥ó¤Î¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢¥³¥ó¥Ñ¥¤¥é¤Ï¸Å¤¤¸À¸ì»ÅÍÍ(¤³¤ÎÎã¤Ç¤Ï¡¢¥Ð¡¼¥¸¥ç¥ó1.6¤ÎJava¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì)¤ò¿·¤·¤¤¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹¡£¤½¤Î·ë²Ì¡¢Â¸ºß¤·¤Ê¤¤¥á¥½¥Ã¥É¤Ø¤Î»²¾È¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¤³¤È¤¬¤¢¤ë¤¿¤á¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¸Å¤¤¥×¥é¥Ã¥È¥Õ¥©¡¼¥à(¤³¤Î¾ì¹ç¤ÏJava SE 6)¤ÇÆ°ºî¤·¤Ê¤¤²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++.na
++\f2javac¥¬¥¤¥É\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javac/index.html
++.TP 2
++o
++java(1) \- Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë
++.TP 2
++o
++jdb(1) \- Java¥Ç¥Ð¥Ã¥¬
++.TP 2
++o
++javah(1) \- C¥Ø¥Ã¥À¡¼¤È¥¹¥¿¥Ö¡¦¥Õ¥¡¥¤¥ë¡¦¥¸¥§¥Í¥ì¡¼¥¿
++.TP 2
++o
++javap(1) \- ¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ëµÕ¥¢¥»¥ó¥Ö¥é
++.TP 2
++o
++javadoc(1) \- API¥É¥­¥å¥á¥ó¥È¡¦¥¸¥§¥Í¥ì¡¼¥¿
++.TP 2
++o
++jar(1) \- JAR¥¢¡¼¥«¥¤¥Ö¡¦¥Ä¡¼¥ë
++.TP 2
++o
++.na
++\f2Java³ÈÄ¥µ¡Ç½¥Õ¥ì¡¼¥à¥ï¡¼¥¯\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/javadoc.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/javadoc.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,4 +19,4179 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javadoc 1 "07 May 2011"
++.TH javadoc 1 "05 Jul 2012"
++.SH "̾Á°"
++javadoc \- Java API¥É¥­¥å¥á¥ó¥È¡¦¥¸¥§¥Í¥ì¡¼¥¿
++.LP
++Java¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤«¤é¡¢API¥É¥­¥å¥á¥ó¥È¤ÎHTML¥Ú¡¼¥¸¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥É¥­¥å¥á¥ó¥È¤Ç¾Ò²ð¤µ¤ì¤Æ¤¤¤ëJavadoc¤ÎÎã¤Ï¡¢Solaris¤ò»ÈÍѤ·¤¿¾ì¹ç¤Î¤â¤Î¤Ç¤¹¡£
++.SH "·Á¼°"
++.LP
++\f4javadoc\fP\f2\ [\ \fP\f2options\fP\f2\ ]\ [\ packagenames\ ]\ [\ sourcefilenames\ ]\ [\ \-subpackages\fP\ \f2pkg1:pkg2:...\fP\f2\ ]\ [\ \fP\f2@argfiles\fP\f2\ ]\fP
++.LP
++°ú¿ô¤ò»ØÄꤹ¤ë½ç½ø¤ÏǤ°Õ¤Ç¤¹¡£Javadoc¥Ä¡¼¥ë¤Ç¤Î¡¢½èÍýÂоݤÎ\f2.java\fP¥Õ¥¡¥¤¥ë¤ò·èÄꤹ¤ëÊýË¡¤Î¾ÜºÙ¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½èÍý¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 3
++options
++¤³¤Î¥É¥­¥å¥á¥ó¥È¤ÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£Javadoc¥ª¥×¥·¥ç¥ó¤Îɸ½àŪ¤Ê»ÈÍÑÊýË¡¤Ë¤Ä¤¤¤Æ¤Ï¡¢»ÈÍÑÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++packagenames
++¶õÇòʸ»ú¤Ç¶èÀÚ¤é¤ì¤¿°ìÏ¢¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2java.lang\ java.lang.reflect\ java.awt\fP¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤ò¸ÄÊ̤˻ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥ï¥¤¥ë¥É¥«¡¼¥É¤Ï»ÈÍÑÉԲĤǤ¹¡£ºÆµ¢Åª½èÍý¤Î¤¿¤á¤Ë¤Ï¡¢\-subpackages¤ò»ÈÍѤ·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2\-sourcepath\fP¤ò»ÈÍѤ·¤Æ¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò¸¡º÷¤·¤Þ¤¹¡£Îã \- 1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È²½¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++sourcefilenames
++¶õÇòʸ»ú¤Ç¶èÀÚ¤é¤ì¤¿°ìÏ¢¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Ç¤¹¡£³Æ¥Õ¥¡¥¤¥ë¤Ï¡¢¥Ñ¥¹¤Ç»Ï¤Þ¤ê¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯(*)¤Ê¤É¤Î¥ï¥¤¥ë¥É¥«¡¼¥É¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤¬½èÍý¤¹¤ë¤Î¤Ï¡¢¥Õ¥¡¥¤¥ë̾¤¬¡Ö.java¡×¤È¤¤¤¦³ÈÄ¥»Ò¤Ç½ª¤ï¤ê¡¢¤½¤Î³ÈÄ¥»Ò¤ò½ü¤¤¤¿Ì¾Á°¤¬¼ÂºÝ¤ËÍ­¸ú¤Ê¥¯¥é¥¹Ì¾¤Ç¤¢¤ë¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Ç¤¹(Java¸À¸ì»ÅÍͤò»²¾È)¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥Ï¥¤¥Õ¥ó¤ò´Þ¤à̾Á°(\f2X\-Buffer\fP¤Ê¤É)¤ä¡¢¤½¤Î¾¤Î̵¸ú¤Êʸ»ú¤ò´Þ¤à̾Á°¤òÉÕ¤±¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢¤½¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ò¥É¥­¥å¥á¥ó¥È²½¤ÎÂоݤ«¤é½ü³°¤Ç¤­¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ä¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Î¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ÎÁ°¤Ë»ØÄꤷ¤¿¥Ñ¥¹¤Ë¤è¤Ã¤Æ¡¢javadoc¤¬¤½¤Î¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¾ì½ê¤¬·è¤Þ¤ê¤Þ¤¹¡£(Javadoc¥Ä¡¼¥ë¤Ï¡¢¤³¤ì¤é¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò¸¡º÷¤¹¤ë¤È¤­¤Ë\f2\-sourcepath\fP¤ò»ÈÍÑ\f2¤·¤Þ¤»¤ó\fP¡£)ÁêÂХѥ¹¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òµ¯ÅÀ¤È¤¹¤ë¤¿¤á¡¢\f2Button.java\fP¤òÅϤ¹¤³¤È¤Ï¡¢\f2./Button.java\fP¤òÅϤ¹¤³¤È¤ÈƱ¤¸¤Ç¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò¥ï¥¤¥ë¥É¥«¡¼¥É¤ò´Þ¤à¥Õ¥ë¥Ñ¥¹¤Ç»ØÄꤹ¤ë¤È¡¢\f2/home/src/java/awt/Graphics*.java\fP¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£Îã \- 1¤Ä°Ê¾å¤Î¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È²½¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤Þ¤¿¡¢Îã \- ¥Ñ¥Ã¥±¡¼¥¸¤È¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È²½¤Î¤è¤¦¤Ë¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤òº®ºß¤µ¤»¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-subpackages pkg1:pkg2:...
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤«¤é»ØÄꤵ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤ª¤è¤Ó¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Æâ¤ËºÆµ¢Åª¤Ë¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Þ¤¿¤Ï¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
++.TP 3
++@argfiles
++Javadoc¥ª¥×¥·¥ç¥ó¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¡¢¤ª¤è¤Ó¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤òǤ°Õ¤Î½ç½ø¤Çʤ٤¿¥ê¥¹¥È¤¬´Þ¤Þ¤ì¤ë1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤Ç¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ç¤Ï¡¢¥ï¥¤¥ë¥É¥«¡¼¥É(*)¤ª¤è¤Ó\f2\-J\fP¥ª¥×¥·¥ç¥ó¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó¡£
++.RE
++.SH "ÀâÌÀ"
++.LP
++\f3Javadoc\fP¥Ä¡¼¥ë¤Ï¡¢°ìÏ¢¤ÎJava¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë¤¢¤ëÀë¸À¤ª¤è¤Ó¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò²òÀϤ·¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ïpublic¥¯¥é¥¹¡¢protected¥¯¥é¥¹¡¢¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹(ƿ̾¤ÎÆâÉô¥¯¥é¥¹¤Ï½ü¤¯)¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤Ë¤Ä¤¤¤Æµ­½Ò¤·¤¿°ìÏ¢¤ÎHTML¥Ú¡¼¥¸¤òÀ¸À®¤·¤Þ¤¹¡£¤Þ¤¿¡¢API(¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥ß¥ó¥°¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹)¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®¤ä¡¢°ìÏ¢¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¼ÂÁõ¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®¤Ë»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸Á´ÂΡ¢¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¡¢¤Þ¤¿¤Ï¤½¤ÎξÊý¤ËÂФ·¤Æ¼Â¹Ô¤Ç¤­¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Á´ÂΤΥɥ­¥å¥á¥ó¥È²½¤ò¹Ô¤¦¤Ë¤Ï¡¢\f2\-subpackages\fP¤ò»ÈÍѤ·¤ÆºÇ¾å°Ì¥Ç¥£¥ì¥¯¥È¥ê¤«¤é²¼Êý¤ËºÆµ¢Åª¤Ë¤¿¤É¤ë¤«¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ÎÌÀ¼¨Åª¤Ê¥ê¥¹¥È¤òÅϤ·¤Þ¤¹¡£¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥É¥­¥å¥á¥ó¥È²½¤ò¹Ô¤¦¤Ë¤Ï¡¢¥½¡¼¥¹(.\f2.java\fP)¥Õ¥¡¥¤¥ë̾¤Î¥ê¥¹¥È¤òÅϤ·¤Þ¤¹¡£¶ñÂÎŪ¤ÊÎã¤Ï¡¢¤³¤Î¥É¥­¥å¥á¥ó¥È¤ÎºÇ¸å¤Ë¾Ò²ð¤·¤Þ¤¹¡£¼¡¤Ë¡¢Javadoc¤Ë¤è¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½èÍý¤Ë¤Ä¤¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£
++.SS
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½èÍý
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢ËöÈø¤¬¡Ö\f2.java\fP¡×¤Î¥Õ¥¡¥¤¥ë°Ê³°¤Ë¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Çµ­½Ò¤µ¤ì¤Æ¤¤¤ë¾¤Î¥Õ¥¡¥¤¥ë¤â½èÍý¤·¤Þ¤¹¡£¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤òÌÀ¼¨Åª¤ËÅϤ·¤ÆJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¾ì¹ç¡¢¤É¤Î\f2.java\fP¥Õ¥¡¥¤¥ë¤ò½èÍý¤¹¤ë¤«¤òÀµ³Î¤Ë»ØÄê¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢Â¿¤¯¤Î³«È¯¼Ô¤Ï¤³¤ÎÊýË¡¤Ç¤Ïºî¶È¤·¤Þ¤»¤ó¡£¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ¹¤Û¤¦¤¬´Êñ¤À¤«¤é¤Ç¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤òÌÀ¼¨Åª¤Ë»ØÄꤷ¤Ê¤¯¤Æ¤â¡¢Javadoc¥Ä¡¼¥ë¤Ï3¤Ä¤ÎÊýË¡¤Ç¼Â¹Ô¤Ç¤­¤Þ¤¹¡£¤½¤ì¤Ï¡¢(1)¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ¹¡¢(2)\f2\-subpackages\fP¤ò»ÈÍѤ¹¤ë¡¢(3)¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Ç¥ï¥¤¥ë¥É¥«¡¼¥É¤ò»ÈÍѤ¹¤ë(\f2*.java\fP)¡¢¤È¤¤¤¦ÊýË¡¤Ç¤¹¡£¤³¤ì¤é¤Î¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤¬\f2.java\fP¥Õ¥¡¥¤¥ë¤Î½èÍý¤ò¹Ô¤¦¤Î¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤¬¼¡¤Î¤¹¤Ù¤Æ¤ÎÍ×·ï¤òËþ¤¿¤¹¾ì¹ç¤Î¤ß¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++ÀÜÈø¼­¡Ö\f2.java\fP¡×¤ò½ü¤¤¤¿Ì¾Á°¤¬¼ÂºÝ¤ËÍ­¸ú¤Ê¥¯¥é¥¹Ì¾¤Ç¤¢¤ë¾ì¹ç(Í­¸ú¤Êʸ»ú¤Ë¤Ä¤¤¤Æ¤Ï¡¢Java¸À¸ì»ÅÍͤò»²¾È)
++.TP 2
++o
++¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Î¥ë¡¼¥È¤«¤éÁêÂÐŪ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ñ¥¹¤¬¡¢¶èÀÚ¤êʸ»ú¤ò¥É¥Ã¥È¤ËÊÑ´¹¤¹¤ë¤È¡¢¼ÂºÝ¤ËÍ­¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ç¤¢¤ë¾ì¹ç
++.TP 2
++o
++packageʸ¤ËÍ­¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸Ì¾(Á°²Õ¾ò½ñ¤­¤Ç»ØÄê)¤¬´Þ¤Þ¤ì¤ë¾ì¹ç
++.RE
++.LP
++\f3¥ê¥ó¥¯¤Î½èÍý\fP \- Javadoc¥Ä¡¼¥ë¤Ï¡¢½èÍý¤Î¼Â¹ÔÃæ¤Ë¡¢¤½¤Î¼Â¹Ô¤Ç¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤ª¤è¤Ó¥á¥ó¥Ð¡¼¤Î̾Á°¤ËÂФ·¤Æ¡¢¼«Æ°Åª¤ËÁê¸ß»²¾È¥ê¥ó¥¯¤òÄɲä·¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ê¥ê¥ó¥¯¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¾ì½ê¤ËÄɲ䵤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++Àë¸À(Ìá¤êÃͤη¿¡¢°ú¿ô¤Î·¿¡¢¥Õ¥£¡¼¥ë¥É¤Î·¿)
++.TP 2
++o
++\f2@see\fP¥¿¥°¤«¤éÀ¸À®¤µ¤ì¤¿¡Ö´ØÏ¢¹àÌܡץ»¥¯¥·¥ç¥ó
++.TP 2
++o
++\f2{@link}\fP¥¿¥°¤«¤éÀ¸À®¤µ¤ì¤¿¥¤¥ó¥é¥¤¥ó¡¦¥Æ¥­¥¹¥È
++.TP 2
++o
++\f2@throws\fP¥¿¥°¤«¤éÀ¸À®¤µ¤ì¤¿Îã³°¤Î̾Á°
++.TP 2
++o
++¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥ó¥Ð¡¼¤ËÂФ¹¤ë¡ÖÄêµÁ¡×¥ê¥ó¥¯¤È¡¢¥¯¥é¥¹¤Î¥á¥ó¥Ð¡¼¤ËÂФ¹¤ë¡Ö¥ª¡¼¥Ð¡¼¥é¥¤¥É¡×¥ê¥ó¥¯
++.TP 2
++o
++¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤ª¤è¤Ó¥á¥ó¥Ð¡¼¤ò¥ê¥¹¥È¤·¤Æ¤¤¤ë³µÍ×ɽ
++.TP 2
++o
++¥Ñ¥Ã¥±¡¼¥¸¤ª¤è¤Ó¥¯¥é¥¹¤Î·Ñ¾µ¥Ä¥ê¡¼
++.TP 2
++o
++º÷°ú
++.RE
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¤Î´û¸¤Î¥Æ¥­¥¹¥È(Ê̤ËÀ¸À®¤·¤¿¥Æ¥­¥¹¥È)¤ËÂФ·¤Æ¥Ï¥¤¥Ñ¡¼¥ê¥ó¥¯¤òÄɲ乤ë¤Ë¤Ï¡¢\f2\-link\fP¤ª¤è¤Ó\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤òÍøÍѤǤ­¤Þ¤¹¡£
++.LP
++\f3¤½¤Î¾¤Î½èÍý¤Ë¤Ä¤¤¤Æ¤Î¾ÜºÙ\fP \- Javadoc¥Ä¡¼¥ë¤Ï¡¢¼Â¹Ô¤¹¤ë¤¿¤Ó¤Ë1¤Ä¤Î´°Á´¤Ê¥É¥­¥å¥á¥ó¥È¤òºîÀ®¤·¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥È¤òÄɲÃÀ¸À®¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤Ä¤Þ¤ê¡¢Javadoc¥Ä¡¼¥ë¤Î°ÊÁ°¤Î¼Â¹Ô·ë²Ì¤ò½¤Àµ¤·¤¿¤ê¡¢¤½¤ÎÆâÍƤò\f2ľÀÜ\fPÁȤßÆþ¤ì¤¿¤ê¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤¿¤À¤·¡¢Á°½Ò¤Î¤è¤¦¤Ë¡¢Â¾¤Î¼Â¹Ô·ë²Ì¤Ë¥ê¥ó¥¯¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤¹¡£
++.LP
++¼ÂÁõ¾å¤ÎÍýͳ¤«¤é¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥¸¥ç¥Ö¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤Ëjava¥³¥ó¥Ñ¥¤¥é¤òɬÍפȤ·¡¢java¥³¥ó¥Ñ¥¤¥é¤Ë°Í¸¤·¤Æ¤¤¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2javac\fP¤Î°ìÉô¤ò¸Æ¤Ó½Ð¤·¤ÆÀë¸À¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹¤¬¡¢¥á¥ó¥Ð¡¼¤Î¼ÂÁõ¤Ï̵»ë¤·¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥¯¥é¥¹³¬Áؤò´Þ¤à¥¯¥é¥¹¤ÎË­ÉÙ¤ÊÆâÉôɽ¸½¤È¥¯¥é¥¹¤Î¡Ö»ÈÍѡ״ط¸¤ò¹½ÃÛ¤·¡¢¤½¤Î¾ðÊ󤫤éHTML¤òÀ¸À®¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤«¤é¡¢¥æ¡¼¥¶¡¼¤ÎÄ󶡤·¤¿¥É¥­¥å¥á¥ó¥È¤â¼èÆÀ¤·¤Þ¤¹¡£
++.LP
++¼ÂºÝ¤Ë¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥á¥½¥Ã¥ÉËÜÂΤò»ý¤¿¤Ê¤¤½ã¿è¤Ê¥¹¥¿¥Ö¡¦¥Õ¥¡¥¤¥ë¤Ç¤¢¤ë\f2.java\fP¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¤â¼Â¹Ô¤Ç¤­¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢API¤ÎºîÀ®»þ¤Ë¤Ï¡¢¼ÂÁõ¤òµ­½Ò¤¹¤ëÁ°¤ÎÀ߷פÎÁᤤÃʳ¬¤Ç¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òµ­½Ò¤·¤Æjavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.LP
++¥³¥ó¥Ñ¥¤¥é¤Ë°Í¸¤¹¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢HTML½ÐÎϤϡ¢¼ÂºÝ¤Î¼ÂÁõ¤ËÀµ³Î¤ËÂбþ¤·¤Þ¤¹¡£¼ÂºÝ¤Î¼ÂÁõ¤Ï¡¢ÌÀ¼¨Åª¤Ê¥½¡¼¥¹¡¦¥³¡¼¥É¤Ë¤Ç¤Ï¤Ê¤¯¡¢°ÅÌۤΥ½¡¼¥¹¡¦¥³¡¼¥É¤Ë°Í¸¤¹¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2.class\fP¥Õ¥¡¥¤¥ë¤Ë¤Ï¸ºß¤¹¤ë¤¬¥½¡¼¥¹¡¦¥³¡¼¥É¤Ë¤Ï¸ºß¤·¤Ê¤¤¥Ç¥Õ¥©¥ë¥È¡¦¥³¥ó¥¹¥È¥é¥¯¥¿(Java¸À¸ì»ÅÍͤò»²¾È)¤ò¥É¥­¥å¥á¥ó¥È²½¤·¤Þ¤¹¡£
++.LP
++Ä̾Javadoc¥Ä¡¼¥ë¤Ç¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥³¡¼¥É¤¬ÉÔ´°Á´¤Þ¤¿¤Ï¥¨¥é¡¼¤ò´Þ¤ó¤Ç¤¤¤ë¾ì¹ç¤Ç¤â¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤Ç¤­¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢¥Ç¥Ð¥Ã¥°¤ä¥È¥é¥Ö¥ë¥·¥å¡¼¥Æ¥£¥ó¥°¤ò´°Î»¤¹¤ëÁ°¤Ë¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2Java¸À¸ì»ÅÍÍ\fP¤Ë¤è¤ë¤È¡¢Ãê¾Ý¥á¥½¥Ã¥É¤ò´Þ¤à¥¯¥é¥¹¤Ï¡¢¤½¤ì¼«ÂΤòÃê¾Ý¤È¤·¤ÆÀë¸À¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£javac¥³¥ó¥Ñ¥¤¥é¤Ï¤³¤Î¥¨¥é¡¼¤ò¸¡½Ð¤¹¤ë¤ÈÄä»ß¤·¤Þ¤¹¤¬¡¢Javadoc¥Ä¡¼¥ë¤Ï¤³¤Î¥Á¥§¥Ã¥¯¤ò¹Ô¤ï¤º¡¢·Ù¹ð¤ò½Ð¤µ¤º¤Ë½èÍý¤ò³¹Ô¤·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î´ðËÜŪ¤Ê¥Á¥§¥Ã¥¯¤ò¹Ô¤¤¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò¤è¤ê¾Ü¤·¤¯¥Á¥§¥Ã¥¯¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢DocCheck¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢¥É¥­¥å¥á¥ó¥È¤ÎÆâÉô¹½Â¤¤ò¹½ÃÛ¤¹¤ëºÝ¡¢»²¾È¥¯¥é¥¹¤ò¤¹¤Ù¤Æ¥í¡¼¥É¤·¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¢³ÈÄ¥µ¡Ç½¡¢¤Þ¤¿¤Ï¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¤Ë¤«¤«¤ï¤é¤º¡¢¤¹¤Ù¤Æ¤Î»²¾È¥¯¥é¥¹¤ò¸¡º÷¤Ç¤­¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¤Î¸¡º÷ÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£Ä̾ºîÀ®¤¹¤ë¥¯¥é¥¹¤Ï¡¢³ÈÄ¥µ¡Ç½¤È¤·¤Æ¥í¡¼¥É¤¹¤ë¤«¡¢Javadoc¥Ä¡¼¥ë¤Î¥¯¥é¥¹¡¦¥Ñ¥¹Æâ¤ËÃÖ¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£
++.SS
++Javadoc¤Î¥É¥Ã¥¯¥ì¥Ã¥È
++.LP
++Javadoc¥Ä¡¼¥ë¤Î½ÐÎϤÎÆâÍƤȷÁ¼°¤Ï¡¢¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Æ¥«¥¹¥¿¥Þ¥¤¥º¤Ç¤­¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ë¤Ï¡¢É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤È¸Æ¤Ð¤ì¤ë¥Ç¥Õ¥©¥ë¥È¤Î¡ÖÁȹþ¤ß¡×¥É¥Ã¥¯¥ì¥Ã¥È¤¬¤¢¤ê¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ï¡¢HTML·Á¼°¤ÎAPI¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤ò½¤Àµ¤Þ¤¿¤Ï¥µ¥Ö¥¯¥é¥¹²½¤¹¤ë¤³¤È¤ä¡¢HTML¡¢XML¡¢MIF¡¢RTF¤Ê¤É¤Î¹¥¤ß¤Î½ÐÎÏ·Á¼°¤òÀ¸À®¤¹¤ëÆȼ«¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤òµ­½Ò¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£¥É¥Ã¥¯¥ì¥Ã¥È¤È¤½¤Î»ÈÍÑÊýË¡¤Ë¤Ä¤¤¤Æ¤Ï¡¢¼¡¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 2
++o
++.na
++\f2Javadoc¤Î¥É¥Ã¥¯¥ì¥Ã¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html
++.TP 2
++o
++\f2\-doclet\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó
++.RE
++.LP
++\f2\-doclet\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ç¥«¥¹¥¿¥à¡¦¥É¥Ã¥¯¥ì¥Ã¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Îɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹¡£javadoc¥Ä¡¼¥ë¤Ë¤Ï¡¢»ÈÍѤµ¤ì¤Æ¤¤¤ë¥É¥Ã¥¯¥ì¥Ã¥È¤Ë´Ø·¸¤Ê¤¯»ÈÍѤǤ­¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ç¤Ï¡¢¤³¤ì¤é¤Î¾¤Ë¡¢¤¤¤¯¤Ä¤«¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬Äɲ䵤ì¤Þ¤¹¡£¤É¤Á¤é¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤â¡¢¸å½Ò¤Î¥ª¥×¥·¥ç¥ó¤ÇÀâÌÀ¤·¤Þ¤¹¡£
++.SS
++´ØÏ¢¥É¥­¥å¥á¥ó¥È¤ª¤è¤Ó¥É¥Ã¥¯¥ì¥Ã¥È
++.RS 3
++.TP 2
++o
++.na
++\f2Javadoc¤Ë»Ü¤µ¤ì¤¿³ÈÄ¥µ¡Ç½\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html \- Javadoc¤ÇÄɲ䵤줿²þÎÉÅÀ¤Î¾ÜºÙ¡£
++.TP 2
++o
++.na
++\f2Javadoc FAQ\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137483.html \- ÉÑÈˤ˴󤻤é¤ì¤ë¼ÁÌä¤ËÂФ¹¤ë²óÅú¡¢Javadoc´ØÏ¢¤Î¥Ä¡¼¥ë¤Ë¤Ä¤¤¤Æ¤Î¾ðÊ󡢤ª¤è¤Ó¥Ð¥°¤Î²óÈòÊýË¡¡£
++.TP 2
++o
++.na
++\f2How to Write Doc Comments for Javadoc\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html \- ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Îµ­½ÒÊýË¡¤Ë´Ø¤¹¤ëSun¤Îµ¬Ìó¡£
++.TP 2
++o
++.na
++\f2API»ÅÍͤòµ­½Ò¤¹¤ë¤¿¤á¤ÎÍ×·ï\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-142372.html \- Java SE¥×¥é¥Ã¥È¥Õ¥©¡¼¥à»ÅÍͤòµ­½Ò¤¹¤ëºÝ¤Ë»ÈÍѤµ¤ì¤¿É¸½àÍ×·ï¡£¤³¤Î¾ðÊó¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È·Á¼°¤ÇAPI»ÅÍͤòµ­½Ò¤¹¤ë¾ì¹ç¤Ë¤â¡¢¤½¤Î¾¤Î·Á¼°¤Çµ­½Ò¤¹¤ë¾ì¹ç¤Ë¤âÌòΩ¤Á¤Þ¤¹¡£¸¡¾Ú²Äǽ¤Ê¥¢¥µ¡¼¥·¥ç¥ó¤òËþ¤¿¤¹¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥Õ¥£¡¼¥ë¥É¡¢¤ª¤è¤Ó¥á¥½¥Ã¥É¤Ë¤Ä¤¤¤Æ¤ÎÍ×·ï¤òÄê¤á¤Æ¤¤¤Þ¤¹¡£
++.TP 2
++o
++.na
++\f2¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î»ÅÍÍ\fP @
++.fi
++http://docs.oracle.com/javase/specs/ \- ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¥ª¥ê¥¸¥Ê¥ë»ÅÍͤˤĤ¤¤Æ¤Ï¡¢\f2Java Language Specification\fP (James Gosling¡¢Bill Joy¡¢Guy Steele¶¦Ãø)¤Î½éÈǤÎÂè18¾Ï¡¢Documentation Comments¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£(¤³¤Î¾Ï¤Ï¡¢Âè2ÈǤǤϺï½ü¤µ¤ì¤Þ¤·¤¿¡£)
++.TP 2
++o
++.na
++\f2DocCheck¥É¥Ã¥¯¥ì¥Ã¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-141437.html \- ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò¥Á¥§¥Ã¥¯¤·¡¢¸¡½Ð¤µ¤ì¤¿¥¨¥é¡¼¤äÉÔÀµ¤Î¥ì¥Ý¡¼¥È¤òÀ¸À®¤·¤Þ¤¹¡£Doc Check¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Î°ìÉô¤Ç¤¹¡£
++.RE
++.SS
++ÍѸì
++.LP
++\f2¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È\fP¡¢\f2doc¥³¥á¥ó¥È\fP¡¢\f2¼çÀâÌÀ\fP¡¢\f2¥¿¥°\fP¡¢\f2¥Ö¥í¥Ã¥¯¡¦¥¿¥°\fP¡¢¤ª¤è¤Ó\f2¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°\fP¤ÎÍѸì¤Ë¤Ä¤¤¤Æ¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÇÀâÌÀ¤·¤Þ¤¹¡£¼¡¤Î¤½¤Î¾¤ÎÍѸì¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Î¥³¥ó¥Æ¥­¥¹¥È¤ÇÆÃÄê¤Î°ÕÌ£¤ò»ý¤Á¤Þ¤¹¡£
++.RS 3
++.TP 3
++À¸À®¥É¥­¥å¥á¥ó¥È(generated document)
++Javadoc¥Ä¡¼¥ë¤¬Java¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤«¤éÀ¸À®¤·¤¿¥É¥­¥å¥á¥ó¥È¤Î¤³¤È¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤ÎÀ¸À®¥É¥­¥å¥á¥ó¥È¤ÏHTML·Á¼°¤Ç¡¢É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ë¤è¤Ã¤ÆºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++.TP 3
++̾Á°(name)
++Java¸À¸ì¤Ç½ñ¤«¤ì¤¿¥×¥í¥°¥é¥àÍ×ÁǤÎ̾Á°¡¢¤Ä¤Þ¤ê¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥Õ¥£¡¼¥ë¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤Þ¤¿¤Ï¥á¥½¥Ã¥É¤Î̾Á°¤Î¤³¤È¤Ç¤¹¡£Ì¾Á°¤Ï¡¢\f2java.lang.String.equals(java.lang.Object)\fP¤Î¤è¤¦¤Ê´°Á´½¤¾þ̾¤Ë¤¹¤ë¤³¤È¤â¡¢\f2equals(Object)\fP¤Î¤è¤¦¤ÊÉôʬ½¤¾þ̾¤Ë¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.TP 3
++¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹(documented classes)
++Javadoc¤Î¼Â¹Ô¤Ë¤è¤Ã¤Æ¾ÜºÙ¤Ê¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤ë¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤³¤È¤Ç¤¹¡£¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤Ë¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬»ÈÍѲÄǽ¤Ç¤¢¤ê¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òjavadoc¥³¥Þ¥ó¥É¤ËÅϤ¹É¬Íפ¬¤¢¤ê¡¢¥¢¥¯¥»¥¹½¤¾þ»Ò(public¡¢protected¡¢package\-private¤Þ¤¿¤Ïprivate)¤Ë¤è¤Ã¤Æ¥Õ¥£¥ë¥¿½èÍý¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤Ï¡¢javadoc¥Ä¡¼¥ë¤Î½ÐÎϤËÁȤ߹þ¤Þ¤ì¤ë¥¯¥é¥¹¡¢¤Ä¤Þ¤ê\f2Êñ´Þ¥¯¥é¥¹\fP¤È¤â¸Æ¤Ð¤ì¤Þ¤¹¡£
++.LP
++.TP 3
++Êñ´Þ¥¯¥é¥¹(included classes)
++Javadoc¥Ä¡¼¥ë¤Î¼Â¹Ô¤Ë¤è¤Ã¤Æ¾ÜºÙ¤Ê¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤ë¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤³¤È¤Ç¤¹¡£\f2¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹\fP¤ÈƱ¤¸¤Ç¤¹¡£
++.LP
++.TP 3
++½ü³°¥¯¥é¥¹(excluded classes)
++Javadoc¥Ä¡¼¥ë¤Î¼Â¹Ô¤Ë¤è¤Ã¤Æ¾ÜºÙ¤Ê¥É¥­¥å¥á¥ó¥È¤¬À¸À®\f2¤µ¤ì¤Ê¤¤\fP¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤³¤È¤Ç¤¹¡£
++.LP
++.TP 3
++»²¾È¥¯¥é¥¹(referenced classes)
++¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÎÄêµÁ(¼ÂÁõ)¤Þ¤¿¤Ï¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎÃæ¤ÇÌÀ¼¨Åª¤Ë»²¾È¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤³¤È¤Ç¤¹¡£»²¾È¤ÎÎã¤È¤·¤Æ¤Ï¡¢Ìá¤êÃͤη¿¡¢¥Ñ¥é¥á¡¼¥¿¤Î·¿¡¢¥­¥ã¥¹¥È¤Î·¿¡¢³ÈÄ¥¤µ¤ì¤¿¥¯¥é¥¹¡¢¼ÂÁõ¤µ¤ì¤¿¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿¥¯¥é¥¹¡¢¥á¥½¥Ã¥ÉËÜÂΤǻÈÍѤµ¤ì¤ë¥¯¥é¥¹¡¢@see¡¢{@link}¡¢{@linkplain}¡¢{@inheritDoc}¥¿¥°¤Ê¤É¤¬¤¢¤ê¤Þ¤¹¡£(¤³¤ÎÄêµÁ¤Ï
++.na
++\f21.3\fP @
++.fi
++http://docs.oracle.com/javase/1.3/docs/tooldocs/solaris/javadoc.html#referencedclasses¤«¤éÊѹ¹¤µ¤ì¤Æ¤¤¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£)Javadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ï¡¢Javadoc¤Î¥Ö¡¼¥È¡¦¥¯¥é¥¹¥Ñ¥¹¤ª¤è¤Ó¥¯¥é¥¹¥Ñ¥¹Æâ¤Ë¤¢¤ë¤¹¤Ù¤Æ¤Î»²¾È¥¯¥é¥¹¤ò¥á¥â¥ê¡¼¤Ë¥í¡¼¥É¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£(»²¾È¥¯¥é¥¹¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï¡¢¡Ö¥¯¥é¥¹¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡×¤È¤¤¤¦·Ù¹ð¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£)Javadoc¥Ä¡¼¥ë¤Ï¡¢¥¯¥é¥¹¤Î¸ºß¤È¤½¤Î¥á¥ó¥Ð¡¼¤Î´°Á´½¤¾þ̾¤òȽÊ̤¹¤ë¤Î¤ËɬÍ×½½Ê¬¤Ê¾ðÊó¤ò¡¢.class¥Õ¥¡¥¤¥ë¤«¤é°ú¤­½Ð¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.TP 3
++³°Éô»²¾È¥¯¥é¥¹(external referenced classes)
++»²¾È¥¯¥é¥¹¤Î¤¦¤Á¡¢Javadoc¤Î¼Â¹ÔÃæ¤Ë¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Ê¤¤¥¯¥é¥¹¤Î¤³¤È¤Ç¤¹¡£¤Ä¤Þ¤ê¡¢¤³¤ì¤é¤Î¥¯¥é¥¹¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÇJavadoc¥Ä¡¼¥ë¤ËÅϤµ¤ì¤Æ¤¤¤Þ¤»¤ó¡£À¸À®¥É¥­¥å¥á¥ó¥ÈÆâ¤Ç¤³¤ì¤é¤Î¥¯¥é¥¹¤Ë¥ê¥ó¥¯¤·¤Æ¤¤¤ë²Õ½ê¤Ï¡¢\f2³°Éô»²¾È\fP¤Þ¤¿¤Ï\f2³°Éô¥ê¥ó¥¯\fP¤È¸Æ¤Ð¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2java.awt\fP¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¤Æ¤Î¤ßJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤·¤¿¾ì¹ç¡¢\f2Object\fP¤Ê¤É¤Î\f2java.lang\fPÆâ¤Î¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤¬³°Éô»²¾È¥¯¥é¥¹¤Ë¤Ê¤ê¤Þ¤¹¡£³°Éô»²¾È¥¯¥é¥¹¤Ë¥ê¥ó¥¯¤¹¤ë¤Ë¤Ï¡¢\f2\-link\fP¤ª¤è¤Ó\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£³°Éô»²¾È¥¯¥é¥¹¤Ë¤Ï¡¢Ä̾綠¤Î¥½¡¼¥¹¡¦¥³¥á¥ó¥È¤òJavadoc¥Ä¡¼¥ë¤Î¼Â¹Ô¤ÇÍøÍѤǤ­¤Ê¤¤¤È¤¤¤¦½ÅÍפÊÆÃħ¤¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¤½¤ì¤é¤Î¥³¥á¥ó¥È¤ò·Ñ¾µ¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.RE
++.SH "¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë"
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢4¤Ä¤Î¥¿¥¤¥×¤Î°Û¤Ê¤ë¡Ö¥½¡¼¥¹¡×¥Õ¥¡¥¤¥ë¤«¤é½ÐÎϤòÀ¸À®¤·¤Þ¤¹¡£¤½¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢¥¯¥é¥¹¤ÎJava¸À¸ì¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(\f2.java\fP)¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¡¢³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¡¢¤ª¤è¤Ó¤½¤Î¾¤Î̤½èÍý¤Î¥Õ¥¡¥¤¥ë¤Ç¤¹¡£¤³¤³¤Ç¤Ï¡¢¥É¥­¥å¥á¥ó¥È²½¤·¤Ê¤¤¤¬¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Ë¸ºß¤¹¤ë¾ì¹ç¤¬¤¢¤ë¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ä¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤âÀâÌÀ¤·¤Þ¤¹¡£
++.SS
++¥¯¥é¥¹¡¦¥½¡¼¥¹¡¦¥³¡¼¥É¡¦¥Õ¥¡¥¤¥ë
++.LP
++¤½¤ì¤¾¤ì¤Î¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¤ª¤è¤Ó¤½¤Î¥á¥ó¥Ð¡¼¤Ï¡¢Æȼ«¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò»ý¤Ä¤³¤È¤¬¤Ç¤­¡¢¤½¤ì¤ò\f2.java\fP¥Õ¥¡¥¤¥ëÆâ¤ËÊÝ»ý¤·¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¾ÜºÙ¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.SS
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë
++.LP
++¤½¤ì¤¾¤ì¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢Æȼ«¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò»ý¤Ä¤³¤È¤¬¤Ç¤­¡¢¤½¤ì¤òÀìÍѤΡ֥½¡¼¥¹¡×¥Õ¥¡¥¤¥ë¤ËÊÝ»ý¤·¤Þ¤¹¡£¤½¤ÎÆâÍƤϡ¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î³µÍ×¥Ú¡¼¥¸¤ËÁȤ߹þ¤Þ¤ì¤Þ¤¹¡£¤³¤Î¥³¥á¥ó¥È¤Ë¤Ï¡¢Ä̾¤½¤Î¥Ñ¥Ã¥±¡¼¥¸Á´ÂΤËÅö¤Æ¤Ï¤Þ¤ë¥É¥­¥å¥á¥ó¥È¤òµ­½Ò¤·¤Þ¤¹¡£
++.LP
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¾ì¹ç¡¢¥³¥á¥ó¥È¤Î³ÊǼÀè¤È¤·¤Æ¡¢¼¡¤Î2¤Ä¤Î¥Õ¥¡¥¤¥ë¤Î¤¤¤º¤ì¤«¤òÁªÂò¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2package\-info.java\fP \- ¥Ñ¥Ã¥±¡¼¥¸Àë¸À¡¢¥Ñ¥Ã¥±¡¼¥¸Ãí¼á¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¢¤ª¤è¤ÓJavadoc¥¿¥°¤ò³ÊǼ¤Ç¤­¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤ˡ¢package.html¤è¤ê¤â¿ä¾©¤µ¤ì¤Þ¤¹¡£
++.TP 2
++o
++\f2package.html\fP \- ³ÊǼ¤Ç¤­¤ë¤Î¤Ï¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¤ÈJavadoc¥¿¥°¤Î¤ß¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Ãí¼á¤Ï³ÊǼ¤Ç¤­¤Þ¤»¤ó¡£
++.RE
++.LP
++³Æ¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢\f2package.html\fP¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï\f2package\-info.java\fP¥Õ¥¡¥¤¥ë¤Î¤¤¤º¤ì¤«¤ò1¤Ä»ý¤Ä¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤½¤ÎξÊý¤ò»ý¤Ä¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤³¤Î¤É¤Á¤é¤«¤Î¥Õ¥¡¥¤¥ë¤ò\f2.java\fP¥Õ¥¡¥¤¥ë¤È¤È¤â¤Ë¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼Æâ¤Î¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤ËÇÛÃÖ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++\f4package\-info.java\fP \- ¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¼¡¤Î¹½Â¤¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¤ò³ÊǼ¤Ç¤­¤Þ¤¹¡£¥³¥á¥ó¥È¤Ï¥Ñ¥Ã¥±¡¼¥¸Àë¸À¤ÎÁ°¤ËÇÛÃÖ¤·¤Þ¤¹¡£
++.LP
++¥Õ¥¡¥¤¥ë: \f2java/applet/package\-info.java\fP
++.nf
++\f3
++.fl
++/**
++.fl
++ * Provides the classes necessary to create an
++.fl
++ * applet and the classes an applet uses
++.fl
++ * to communicate with its applet context.
++.fl
++ * <p>
++.fl
++ * The applet framework involves two entities:
++.fl
++ * the applet and the applet context.
++.fl
++ * An applet is an embeddable window (see the
++.fl
++ * {@link java.awt.Panel} class) with a few extra
++.fl
++ * methods that the applet context can use to
++.fl
++ * initialize, start, and stop the applet.
++.fl
++ *
++.fl
++ * @since 1.0
++.fl
++ * @see java.awt
++.fl
++ */
++.fl
++package java.lang.applet;
++.fl
++\fP
++.fi
++.LP
++¥³¥á¥ó¥È¶èÀÚ¤êʸ»ú¤Î\f2/**\fP¤È\f2*/\fP¤Ï¸ºß¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢Ãæ´Ö¹Ô¤Î¹ÔƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¾Êά¤·¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£
++.LP
++\f4package.html\fP \- ¤³¤Î¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¼¡¤Î¹½Â¤¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¤ò³ÊǼ¤Ç¤­¤Þ¤¹¡£¥³¥á¥ó¥È¤Ï\f2<body>\fPÍ×ÁÇÆâ¤ËÇÛÃÖ¤·¤Þ¤¹¡£
++.LP
++¥Õ¥¡¥¤¥ë: \f2java/applet/package.html\fP
++.nf
++\f3
++.fl
++<HTML>
++.fl
++<BODY>
++.fl
++Provides the classes necessary to create an applet and the
++.fl
++classes an applet uses to communicate with its applet context.
++.fl
++<p>
++.fl
++The applet framework involves two entities: the applet
++.fl
++and the applet context. An applet is an embeddable
++.fl
++window (see the {@link java.awt.Panel} class) with a
++.fl
++few extra methods that the applet context can use to
++.fl
++initialize, start, and stop the applet.
++.fl
++
++.fl
++@since 1.0
++.fl
++@see java.awt
++.fl
++</BODY>
++.fl
++</HTML>
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤Ïñ¤Ê¤ëÄ̾ï¤ÎHTML¥Õ¥¡¥¤¥ë¤Ç¤¢¤ê¡¢¥Ñ¥Ã¥±¡¼¥¸Àë¸À¤ò´Þ¤ó¤Ç¤¤¤Ê¤¤ÅÀ¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ÎÆâÍƤϡ¢Â¾¤Î¤¹¤Ù¤Æ¤Î¥³¥á¥ó¥È¤ÈƱÍͤËHTML¤Çµ­½Ò¤·¤Þ¤¹¤¬¡¢Îã³°¤¬1¤Ä¤¢¤ê¤Þ¤¹¡£¤½¤ì¤Ï¡¢¤³¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ë¤Ï¡¢¥³¥á¥ó¥È¶èÀÚ¤êʸ»ú¤Ç¤¢¤ë\f2/**\fP¤È\f2*/\fP¡¢¤Þ¤¿¤Ï¹ÔƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¤ò´Þ¤á¤Ê¤¤¡¢¤È¤¤¤¦ÅÀ¤Ç¤¹¡£¥³¥á¥ó¥È¤ò½ñ¤¯¾ì¹ç¤Ï¡¢ºÇ½é¤Îʸ¤ò¥Ñ¥Ã¥±¡¼¥¸¤Î³µÍפȤ·¡¢\f2<body>\fP¤ÈºÇ½é¤Îʸ¤Î´Ö¤Ë¥¿¥¤¥È¥ë¤ä¤½¤Î¾¤Î¥Æ¥­¥¹¥È¤ò´Þ¤á¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¡¦¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤¹¤¬¡¢Â¾¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÈƱÍÍ¡¢¤¹¤Ù¤Æ¤Î¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤Ï¡¢¼çÀâÌÀ¤Î¸å¤ËÇÛÃÖ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2@see\fP¥¿¥°¤ò¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ËÄɲ乤ë¾ì¹ç¤Ë¤Ï¡¢´°Á´½¤¾þ̾¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2package.html\fP¤ÎÎã @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#packagecomments¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++\f3¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤Î½èÍý\fP \- Javadoc¥Ä¡¼¥ë¤Ï¡¢¼Â¹Ô»þ¤Ë¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ò¼«Æ°Åª¤Ë¸¡º÷¤·¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤ò¸«¤Ä¤±¤ë¤È¼¡¤Î½èÍý¤ò¹Ô¤¤¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++½èÍý¤Ç¤­¤ë¤è¤¦¤Ë¥³¥á¥ó¥È¤ò¥³¥Ô¡¼¤·¤Þ¤¹¡£(\f2package.html\fP¤Î¾ì¹ç¤Ç¤¢¤ì¤Ð¡¢\f2<body>\fP¤È\f2</body>\fP HTML¥¿¥°¤Î´Ö¤Ë¤¢¤ëÆâÍƤò¤¹¤Ù¤Æ¥³¥Ô¡¼¤·¤Þ¤¹¡£\f2<head>\fP¥»¥¯¥·¥ç¥ó¤ò´Þ¤á¡¢¤½¤³¤Ë\f2<title>\fP¤ä¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÃøºî¸¢µ­½Ò¤Ê¤É¤Î¾ðÊó¤òÇÛÃÖ¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¤¬¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤Ï¤½¤ì¤é¤Ï°ìÀÚɽ¼¨¤µ¤ì¤Þ¤»¤ó¡£)
++.TP 2
++o
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥¿¥°¤¬¤¢¤ì¤Ð¡¢¤¹¤Ù¤Æ½èÍý¤·¤Þ¤¹¡£
++.TP 2
++o
++À¸À®¤·¤¿¥Ñ¥Ã¥±¡¼¥¸¤Î³µÍ×¥Ú¡¼¥¸¤ÎºÇ¸å¤Ë¡¢½èÍý¤·¤¿¥Æ¥­¥¹¥È¤òÁÞÆþ¤·¤Þ¤¹(
++.na
++\f2¥Ñ¥Ã¥±¡¼¥¸¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/applet/package\-summary.html¤ò»²¾È)¡£
++.TP 2
++o
++¥Ñ¥Ã¥±¡¼¥¸¤Î³µÍ×¥Ú¡¼¥¸¤ÎÀèƬ¤Ë¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¤ÎºÇ½é¤Îʸ¤ò¥³¥Ô¡¼¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢³µÍ×¥Ú¡¼¥¸¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È¤Ë¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤È¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¤ÎºÇ½é¤Îʸ¤òÄɲä·¤Þ¤¹(
++.na
++\f2³µÍפÎÍ×Ìó\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/overview\-summary.html¤ò»²¾È)¡£Ê¸¤Î½ª¤ï¤ê¤Ï¡¢¥¯¥é¥¹¤ä¥á¥ó¥Ð¡¼¤Î¼çÀâÌÀ¤ÎºÇ½é¤Îʸ¤Î½ª¤ï¤ê¤ÈƱ¤¸¥ë¡¼¥ë¤Ë¤è¤Ã¤ÆȽÃǤµ¤ì¤Þ¤¹¡£
++.RE
++.SS
++³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë
++.LP
++¥É¥­¥å¥á¥ó¥È²½¤¹¤ë³Æ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥È¤Ï¡¢Æȼ«¤Î³µÍץɥ­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò»ý¤Ä¤³¤È¤¬¤Ç¤­¡¢¤½¤ì¤ÏÀìÍѤΡ֥½¡¼¥¹¡×¥Õ¥¡¥¤¥ë¤ËÊÝ»ý¤µ¤ì¤Þ¤¹¡£¤½¤ÎÆâÍƤϡ¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë³µÍ×¥Ú¡¼¥¸¤ËÁȤ߹þ¤Þ¤ì¤Þ¤¹¡£¤³¤Î¥³¥á¥ó¥È¤Ë¤Ï¡¢Ä̾¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥ÈÁ´ÂΤËÅö¤Æ¤Ï¤Þ¤ë¥É¥­¥å¥á¥ó¥È¤òµ­½Ò¤·¤Þ¤¹¡£
++.LP
++³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¤Ë¤Ï¡¢¥Õ¥¡¥¤¥ë¤ËǤ°Õ¤Î̾Á°(Ä̾ï¤Ï\f4overview.html\fP)¤òÉÕ¤±¡¢Ç¤°Õ¤Î¾ì½ê(Ä̾ï¤Ï¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤ÎºÇ¾å°Ì¥ì¥Ù¥ë)¤ËÇÛÃ֤Ǥ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2java.applet\fP¥Ñ¥Ã¥±¡¼¥¸¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬\f2/home/user/src/java/applet\fP¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤Ï\f2/home/user/src/overview.html\fP¤ËºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++°Û¤Ê¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥»¥Ã¥È¤ËÂФ·¤ÆJavadoc¤òÊ£¿ô²ó¼Â¹Ô¤¹¤ë¾ì¹ç¤Ï¡¢Æ±¤¸1¤Ä¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥»¥Ã¥È¤ËÂФ·¤ÆÊ£¿ô¤Î³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢ÆâÉô¥É¥­¥å¥á¥ó¥ÈÍѤË\-private¤ò»ØÄꤷ¤ÆJavadoc¤ò1²ó¼Â¹Ô¤·¤¿¸å¡¢¸ø³«¥É¥­¥å¥á¥ó¥ÈÍѤˤ½¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤ÇºÆÅټ¹Ԥ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢³Æ³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤Î1ʸÌܤǡ¢¤½¤Î¥É¥­¥å¥á¥ó¥È¤ò¸ø³«ÍѤޤ¿¤ÏÆâÉôÍѤȤ·¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£
++.LP
++³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ÎÆâÍƤϡ¢Á°½Ò¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ÈƱÍÍ¡¢HTML¤Çµ­½Ò¤µ¤ì¤¿1¤Ä¤ÎÂ礭¤Ê¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢Á°½Ò¤ÎÀâÌÀ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£Í×ÅÀ¤ò·«¤êÊÖ¤¹¤È¡¢¥³¥á¥ó¥È¤ò½ñ¤¯¾ì¹ç¤Ï¡¢ºÇ½é¤Îʸ¤ò¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥È¤Î³µÍפȤ·¡¢\f2<body>\fP¤ÈºÇ½é¤Îʸ¤Î´Ö¤Ë¥¿¥¤¥È¥ë¤ä¤½¤Î¾¤Î¥Æ¥­¥¹¥È¤ò´Þ¤á¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£³µÍ×¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Â¾¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÈƱ¤¸¤¯¡¢\f2{@link}\fP¤Ê¤É¤Î¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤ò½ü¤¯¤¹¤Ù¤Æ¤Î¥¿¥°¤Ï¡¢¼çÀâÌÀ¤Î¸å¤ËÇÛÃÖ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2@see\fP¥¿¥°¤òÄɲ乤ë¾ì¹ç¤Ë¤Ï¡¢´°Á´½¤¾þ̾¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++Javadoc¥Ä¡¼¥ë¤Î¼Â¹Ô»þ¤Ë¡¢\-overview¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¤è¤¦¤Ë½èÍý¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2<body>\fP¤È\f2</body>\fP¥¿¥°¤Î´Ö¤Ë¤¢¤ëÆâÍƤò¤¹¤Ù¤Æ½èÍýÂоݤȤ·¤Æ¥³¥Ô¡¼¤·¤Þ¤¹¡£
++.TP 2
++o
++³µÍ×¥¿¥°¤¬¤¢¤ì¤Ð¡¢¤¹¤Ù¤Æ½èÍý¤·¤Þ¤¹¡£
++.TP 2
++o
++À¸À®¤·¤¿³µÍ×¥Ú¡¼¥¸¤ÎºÇ¸å¤Ë¡¢½èÍý¤·¤¿¥Æ¥­¥¹¥È¤òÁÞÆþ¤·¤Þ¤¹(
++.na
++\f2³µÍפÎÍ×Ìó\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/overview\-summary.html¤ò»²¾È)¡£
++.TP 2
++o
++³µÍ×¥Ú¡¼¥¸¤ÎÀèƬ¤Ë¡¢³µÍ×¥³¥á¥ó¥È¤ÎºÇ½é¤Îʸ¤ò¥³¥Ô¡¼¤·¤Þ¤¹¡£
++.RE
++.SS
++¤½¤Î¾¤Î̤½èÍý¤Î¥Õ¥¡¥¤¥ë
++.LP
++¥½¡¼¥¹¤Ë¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ°¸Àè¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥³¥Ô¡¼¤µ¤ì¤ë¡¢¤½¤Î¾¤ÎǤ°Õ¤Î¥Õ¥¡¥¤¥ë¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£°ìÈ̤ˡ¢¤³¤Î¤è¤¦¤Ê¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥°¥é¥Õ¥£¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë¡¢¥µ¥ó¥×¥ë¤ÎJava¥½¡¼¥¹(.java)¤ª¤è¤Ó¥¯¥é¥¹(.class)¥Õ¥¡¥¤¥ë¡¢ÆâÍƤ¬Ä̾ï¤ÎJava¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î±Æ¶Á¤ò¼õ¤±¤Ê¤¤ÆÈΩ¤·¤¿HTML¥Õ¥¡¥¤¥ë¤Ê¤É¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++̤½èÍý¤Î¥Õ¥¡¥¤¥ë¤ò´Þ¤á¤ë¤Ë¤Ï¡¢¤½¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ò\f4doc\-files\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤­¤Þ¤¹¡£¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬³ÊǼ¤µ¤ì¤¿Ç¤°Õ¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£¤³¤Î¤è¤¦¤Ê¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤´¤È¤Ë1¤ÄÍѰդǤ­¤Þ¤¹¡£¥¤¥á¡¼¥¸¡¢¥µ¥ó¥×¥ë¡¦¥³¡¼¥É¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¡¢.class¥Õ¥¡¥¤¥ë¡¢¥¢¥×¥ì¥Ã¥È¡¢¤ª¤è¤ÓHTML¥Õ¥¡¥¤¥ë¤ò¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥Ü¥¿¥ó¤Î¥¤¥á¡¼¥¸\f2button.gif\fP¤ò\f2java.awt.Button\fP¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È¤Ë´Þ¤á¤ë¾ì¹ç¤Ë¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤ò\f2/home/user/src/java/awt/doc\-files/\fP¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤­¤Þ¤¹¡£¤Ê¤ª¡¢\f2doc\-files\fP¥Ç¥£¥ì¥¯¥È¥ê¤ò\f2/home/user/src/java/doc\-files\fP¤ËÃÖ¤¯¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤³¤ì¤Ï¡¢\f2java\fP¤¬¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤Ê¤¤¤«¤é¤Ç¤¹¡£¤Ä¤Þ¤ê¡¢java¤½¤Î¤â¤Î¤Ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬1¤Ä¤â³ÊǼ¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤é¤Ç¤¹¡£
++.LP
++¤³¤ì¤é¤Î̤½èÍý¤Î¥Õ¥¡¥¤¥ë¤Ø¤Î¥ê¥ó¥¯¤Ï¡¢¤¹¤Ù¤Æ¥Ï¡¼¥É¥³¡¼¥É¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢Javadoc¥Ä¡¼¥ë¤¬¤½¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ò¸«¤º¤Ë¡¢¥Ç¥£¥ì¥¯¥È¥ê¤È¤½¤ÎÆâÍƤò°¸Àè¤Ë¤½¤Î¤Þ¤Þ¥³¥Ô¡¼¤¹¤ë¤«¤é¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2Button.java\fP¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Î¥ê¥ó¥¯¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * This button looks like this:
++.fl
++ * <img src="doc\-files/Button.gif">
++.fl
++ */
++.fl
++\fP
++.fi
++.SS
++¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë
++.LP
++°ìÉô¤Î³«È¯¼Ô¤«¤é¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤òÂбþ¤¹¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¶á¤¯¤Î¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤ËÊݸ¤·¤¿¤¤¤È¤¤¤¦Í×˾¤¬¤¢¤ê¤Þ¤·¤¿¡£¤Ä¤Þ¤ê¡¢¤³¤ì¤é¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤Ï¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ËÊݸ¤·¤¿¤¤¤È¤¤¤¦¤³¤È¤Ç¤¹¡£
++.LP
++¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ÇÌÀ¼¨Åª¤ËÅϤ·¤ÆJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¾ì¹ç¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤ò°Õ¿ÞŪ¤Ë½ü³°¤·¤Æ¡¢½èÍý¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Þ¤¿¤Ï¥ï¥¤¥ë¥É¥«¡¼¥É¤ÇÅϤ¹¾ì¹ç¤Ï¡¢ÆÃÄê¤Î¥ë¡¼¥ë¤Ë½¾¤Ã¤Æ¡¢¤³¤ì¤é¤Î¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤¬½èÍý¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤È¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Î°ã¤¤¤Ï¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢Í­¸ú¤Ç¥³¥ó¥Ñ¥¤¥ë²Äǽ¤Ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ç¤¢¤ë¤Î¤ËÂФ·¤Æ¡¢¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¤½¤¦¤Ç¤Ï¤Ê¤¤¤È¤¤¤¦ÅÀ¤Ç¤¹¡£¤¿¤À¤·¡¢¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤â¡Ö.java¡×¤Ç½ª¤ï¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++\f3¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë\fP \- ³«È¯¼Ô¤Î¿¤¯¤Ï¡¢¤¢¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥³¥ó¥Ñ¥¤¥ë²Äǽ¤Ç¼Â¹Ô²Äǽ¤Ê¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤ò¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È\f2Ʊ¤¸\fP¥Ç¥£¥ì¥¯¥È¥ê¤ËÇÛÃÖ¤·¤¿¤¤¤È¹Í¤¨¤Æ¤¤¤Þ¤¹¡£¤·¤«¤·¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢Ì¾Á°¤Ê¤·¥Ñ¥Ã¥±¡¼¥¸¤Ê¤É¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¡¦¥Ñ¥Ã¥±¡¼¥¸¤È¤ÏÊ̤Υѥ屡¼¥¸¤Ë°¤µ¤»¤¿¤¤¤È¤â¹Í¤¨¤Æ¤¤¤Þ¤¹(¤½¤Î¤¿¤á¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ë¤Ïpackageʸ¤¬¤Ê¤¤¤«¡¢¤Þ¤¿¤Ï¥½¡¼¥¹¤È¤ÏÊ̤Îpackageʸ¤¬¤¢¤ê¤Þ¤¹)¡£¤³¤Î¤è¤¦¤Ê¾õ¶·¤Ç¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤵ¤ì¤Æ¤¤¤ë¥½¡¼¥¹¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò»ØÄꤷ¤Æ¤½¤Î¥½¡¼¥¹¤¬¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Æ¤¤¤ë¤È¤­¤Ë¡¢¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï·Ù¹ð¤Þ¤¿¤Ï¥¨¥é¡¼¤ò°ú¤­µ¯¤³¤·¤Þ¤¹¡£¤½¤Î¤è¤¦¤Ê¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ËÇÛÃÖ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2com.package1\fPÆâ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ËÂФ¹¤ë¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤òÄɲ乤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¥Ï¥¤¥Õ¥ó¤ò´Þ¤ó¤Ç¤¤¤ë¤¿¤á¤Ë¥Ñ¥Ã¥±¡¼¥¸Ì¾¤È¤·¤Æ¤Ï̵¸ú¤Ê̾Á°¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥êÆâ¤ËÇÛÃÖ¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ com/package1/test\-files/
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤Ç¡¢Javadoc¥Ä¡¼¥ë¤Ï·Ù¹ð¤Ê¤·¤Çtest¥Ç¥£¥ì¥¯¥È¥ê¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹¡£
++.LP
++¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬´Þ¤Þ¤ì¤ë¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Î¸ÄÊ̤μ¹Ԥǡ¢¥ï¥¤¥ë¥É¥«¡¼¥É¤ò´Þ¤ó¤À¥Æ¥¹¥È¡¦¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾(\f2com/package1/test\-files/*.java\fP¤Ê¤É)¤ÇÅϤ·¤Æ¥Æ¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤¹¤ë¤è¤¦¤ËÀßÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++\f3¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥Æ¥ó¥×¥ì¡¼¥È\fP \- ¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ï¡Ö.java¡×¤Ç½ª¤ï¤ë¤³¤È¤â¤¢¤ê¤Þ¤¹¤¬¡¢¥Æ¥ó¥×¥ì¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¥³¥ó¥Ñ¥¤¥ë¤Ç¤­¤Þ¤»¤ó¡£¥½¡¼¥¹¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤ËÊÝ»ý¤·¤¿¤¤¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥Æ¥ó¥×¥ì¡¼¥È¤¬¤¢¤ë¾ì¹ç¤Ï¡¢\f2Buffer\-Template.java\fP¤Î¤è¤¦¤Ë¥Ï¥¤¥Õ¥ó¤ä¤½¤Î¾¤Î̵¸ú¤ÊJavaʸ»ú¤ò̾Á°¤Ë´Þ¤á¤ë¤³¤È¤Ç¡¢¥Æ¥ó¥×¥ì¡¼¥È¤¬½èÍý¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£¤³¤ì¤Ï¡¢Javadoc¥Ä¡¼¥ë¤¬½èÍý¤¹¤ë¤Î¤Ï¡¢¡Ö.java¡×ÀÜÈø¼­¤ò½ü¤¤¤¿Ì¾Á°¤¬Í­¸ú¤Ê¥¯¥é¥¹Ì¾¤Ç¤¢¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¤ß¤Ç¤¢¤ë¤¿¤á¤Ç¤¹(Java¸À¸ì»ÅÍͤμ±Ê̻Ҥ˴ؤ¹¤ë¾ðÊó¤ò»²¾È)¡£
++.SH "À¸À®¤µ¤ì¤ë¥Õ¥¡¥¤¥ë"
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢Javadoc¤Ï¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤¹¤ëɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤Ï¡¢¼¡¤Î¥¿¥¤¥×¤Î¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£(¤½¤ì¤¾¤ì¤ÎHTML¥Ú¡¼¥¸¤Ï¡¢Ê̸ĤΥե¡¥¤¥ë¤ËÁêÅö¤·¤Þ¤¹¡£)Javadoc¤¬À¸À®¤¹¤ë¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ë¤Ï¡¢¥¯¥é¥¹¤ä¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î̾Á°¤Ë¤Á¤Ê¤ó¤À¤â¤Î¤È¡¢¤½¤¦¤Ç¤Ê¤¤¤â¤Î(\f2package\-summary.html¤Ê¤É\fP)¤Î2¤Ä¤Î¥¿¥¤¥×¤¬¤¢¤ê¤Þ¤¹¡£¸å¼Ô¤Î¥°¥ë¡¼¥×¤Î¥Õ¥¡¥¤¥ë̾¤Ë¤Ï¡¢Á°¼Ô¤Î¥°¥ë¡¼¥×¤È¥Õ¥¡¥¤¥ë̾¤¬¶¥¹ç¤·¤Ê¤¤¤è¤¦¤Ë¡¢¥Ï¥¤¥Õ¥ó¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++\f3´ðËÜÆâÍÆ¥Ú¡¼¥¸\fP
++.RS 3
++.TP 2
++o
++¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤´¤È¤Ë1¤Ä¤Î\f3¥¯¥é¥¹¡¦¥Ú¡¼¥¸¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¦¥Ú¡¼¥¸\fP(\f2¥¯¥é¥¹Ì¾\fP\f2.html\fP)
++.TP 2
++o
++¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤´¤È¤Ë1¤Ä¤Î\f3¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ú¡¼¥¸\fP(\f2package\-summary.html\fP)¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë¤¢¤ë\f2package.html\fP¤Þ¤¿¤Ï\f2package\-info.java\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ëÆâ¤ÎHTML¥Æ¥­¥¹¥È¤ò¤¹¤Ù¤ÆÁȤßÆþ¤ì¤Þ¤¹¡£
++.TP 2
++o
++¥Ñ¥Ã¥±¡¼¥¸¤Î¥»¥Ã¥ÈÁ´ÂΤËÂФ·¤Æ1¤Ä¤Î\f3³µÍ×¥Ú¡¼¥¸\fP(\f2overview\-summary.html\fP)¡£¤³¤ì¤Ï¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤ÎÀèƬ¥Ú¡¼¥¸¤Ë¤Ê¤ê¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2\-overview\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ëÆâ¤ÎHTML¥Æ¥­¥¹¥È¤ò¤¹¤Ù¤ÆÁȤßÆþ¤ì¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢Javadoc¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ·¤¿¾ì¹ç¤Ë¤Î¤ßºîÀ®¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢HTML¥Õ¥ì¡¼¥à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++.LP
++\f3Áê¸ß»²¾È¥Ú¡¼¥¸\fP
++.RS 3
++.TP 2
++o
++\f3¥Ñ¥Ã¥±¡¼¥¸¤Î¥»¥Ã¥ÈÁ´ÂΤËÂФ·¤Æ1¤Ä¤Î¥¯¥é¥¹³¬ÁØ¥Ú¡¼¥¸\fP(\f2overview\-tree.html\fP)¡£¤³¤Î¥Ú¡¼¥¸¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¡Ö³µÍספò¥¯¥ê¥Ã¥¯¤·¤Æ¤«¤é¡¢¡Ö³¬Áإĥ꡼¡×¤ò¥¯¥ê¥Ã¥¯¤·¤Þ¤¹¡£
++.TP 2
++o
++\f3¥Ñ¥Ã¥±¡¼¥¸¤´¤È¤Ë1¤Ä¤Î¥¯¥é¥¹³¬ÁØ¥Ú¡¼¥¸\fP(\f2package\-tree.html\fP)¡£¤³¤Î¥Ú¡¼¥¸¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢ÆÃÄê¤Î¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥Ú¡¼¥¸¤Ë°ÜÆ°¤·¡¢¡Ö³¬Áإĥ꡼¡×¤ò¥¯¥ê¥Ã¥¯¤·¤Æ¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î³¬Áؤòɽ¼¨¤·¤Þ¤¹¡£
++.TP 2
++o
++\f3¥Ñ¥Ã¥±¡¼¥¸¤´¤È¤Ë1¤Ä¤Î¡Ö»ÈÍѡץڡ¼¥¸\fP(\f2package\-use.html\fP)¤È¡¢¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤´¤È¤Ë1¤Ä¤º¤Ä¤Î¡Ö»ÈÍѡץڡ¼¥¸(\f2class\-use/\fP\f2¥¯¥é¥¹Ì¾\fP\f2.html\fP)¡£¤³¤Î¥Ú¡¼¥¸¤Ë¤Ï¡¢ÆÃÄê¤Î¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î°ìÉô¤ò»ÈÍѤ·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤Ë¤Ä¤¤¤Æµ­½Ò¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹A¤òÎã¤Ë¤·¤Æ¹Í¤¨¤ë¤È¡¢¤½¤Î¡Ö»ÈÍѡץڡ¼¥¸¤Ë¤Ï¡¢A¤Î¥µ¥Ö¥¯¥é¥¹¡¢A¤È¤·¤ÆÀë¸À¤µ¤ì¤¿¥Õ¥£¡¼¥ë¥É¡¢A¤òÊÖ¤¹¥á¥½¥Ã¥É¡¢A·¿¤Î¥Ñ¥é¥á¡¼¥¿¤ò»ý¤Ä¥á¥½¥Ã¥É¤ª¤è¤Ó¥³¥ó¥¹¥È¥é¥¯¥¿¤¬ÁȤ߹þ¤Þ¤ì¤Þ¤¹¡£¤³¤Î¥Ú¡¼¥¸¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¤Þ¤º¡¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë°ÜÆ°¤·¤Æ¤«¤é¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¡Ö»ÈÍѡץê¥ó¥¯¤ò¥¯¥ê¥Ã¥¯¤·¤Þ¤¹¡£
++.TP 2
++o
++\f3Èó¿ä¾©API¥Ú¡¼¥¸\fP(\f2deprecated\-list.html\fP)¡£¿ä¾©¤µ¤ì¤Ê¤¤Ì¾Á°¤¬¤¹¤Ù¤Æ¥ê¥¹¥È¤µ¤ì¤Þ¤¹¡£(Èó¿ä¾©Ì¾¤Ï¡¢°ìÈ̤˲þÎɤµ¤ì¤¿¤¿¤á¤Ë»ÈÍѤ¬¿ä¾©¤µ¤ì¤Æ¤¤¤Ê¤¤API¤Î̾Á°¤Ç¤¢¤ê¡¢Ä̾¤½¤ì¤ËÃÖ¤­´¹¤ï¤ë̾Á°¤¬Ä󼨤µ¤ì¤Æ¤¤¤Þ¤¹¡£Èó¿ä¾©API¤Ï¡¢¾­Íè¤Î¼ÂÁõ¤Ç¤Ïºï½ü¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£)
++.TP 2
++o
++\f3Äê¿ô¥Õ¥£¡¼¥ë¥ÉÃÍ¥Ú¡¼¥¸\fP(\f2constant\-values.html\fP)¡£static¥Õ¥£¡¼¥ë¥É¤ÎÃÍÍѤǤ¹¡£
++.TP 2
++o
++\f3ľÎ󲽤µ¤ì¤¿·Á¼°¥Ú¡¼¥¸\fP(\f2serialized\-form.html\fP)¡£Ä¾Îó²½²Äǽ¤«¤Ä³°Éô²½²Äǽ¤Ê¥¯¥é¥¹¤Ë´Ø¤¹¤ë¾ðÊóÍѤΥڡ¼¥¸¤Ç¤¹¡£¤³¤ì¤é¤Î³Æ¥¯¥é¥¹¤Ë¤Ï¡¢Ä¾Îó²½¥Õ¥£¡¼¥ë¥É¤ª¤è¤Ó¥á¥½¥Ã¥É¤Ë´Ø¤¹¤ëµ­½Ò¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤é¤Î¾ðÊó¤Ï¡¢API¤ò»ÈÍѤ¹¤ë³«È¯¼Ô¤Ç¤Ï¤Ê¤¯¡¢ºÆ¼ÂÁõ¼Ô¤ËɬÍפʾðÊó¤Ç¤¹¡£¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Ë¤³¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤Ï¤¢¤ê¤Þ¤»¤ó¤¬¡¢Ä¾Î󲽤µ¤ì¤¿¥¯¥é¥¹¤Ë°ÜÆ°¤·¤Æ¡¢¤½¤Î¥¯¥é¥¹¡¦¥³¥á¥ó¥È¤Ë¤¢¤ë¡Ö´ØÏ¢¹àÌܡץ»¥¯¥·¥ç¥ó¤Ç¡ÖľÎ󲽤µ¤ì¤¿·Á¼°¡×¤ò¥¯¥ê¥Ã¥¯¤¹¤ë¤È¡¢¤³¤Î¾ðÊó¤ò¼èÆÀ¤Ç¤­¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤ÏľÎ󲽤µ¤ì¤¿·Á¼°¥Ú¡¼¥¸¤ò¼«Æ°À¸À®¤·¤Þ¤¹¡£¤³¤Î¥Ú¡¼¥¸¤Ë¤Ï¡¢Serializable¤ò¼ÂÁõ¤¹¤ë¤¹¤Ù¤Æ¤Î¥¯¥é¥¹(public¤Þ¤¿¤ÏÈópublic)¤¬ÁȤ߹þ¤Þ¤ì¤ë¾¡¢\f2readObject\fP¥á¥½¥Ã¥É¤ä\f2writeObject\fP¥á¥½¥Ã¥É¡¢Ä¾Î󲽤µ¤ì¤¿¥Õ¥£¡¼¥ë¥É¡¢¤ª¤è¤Ó\f2@serial\fP¡¢\f2@serialField\fP¡¢\f2@serialData\fP¥¿¥°¤«¤é¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤âÁȤ߹þ¤Þ¤ì¤Þ¤¹¡£Ä¾Îó²½²Äǽ¤Êpublic¥¯¥é¥¹¤ò½ü³°¤¹¤ë¤Ë¤Ï¡¢¤½¤Î¥¯¥é¥¹(¤Þ¤¿¤Ï¤½¤Î¥¯¥é¥¹¤¬Â°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸)¤ò\f2@serial exclude\fP¤Ç¥Þ¡¼¥¯¤·¤Þ¤¹¡£Ä¾Îó²½²Äǽ¤Êpackage\-private¥¯¥é¥¹¤ò´Þ¤á¤ë¤Ë¤Ï¡¢¤½¤Î¥¯¥é¥¹(¤Þ¤¿¤Ï¤½¤Î¥¯¥é¥¹¤¬Â°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸)¤ò\f2@serial include\fP¤Ç¥Þ¡¼¥¯¤·¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó1.4¤Ç¤Ï¡¢\f2\-private\fP¥ª¥×¥·¥ç¥ó¤Î»ØÄê\f2¤Ê¤·\fP¤ÇJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¤³¤È¤Ë¤è¤ê¡¢public¥¯¥é¥¹¤ª¤è¤Óprivate¥¯¥é¥¹¤Î´°Á´¤ËľÎ󲽤µ¤ì¤¿·Á¼°¤òÀ¸À®¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++\f3º÷°ú\fP(\f2index\-*.html\fP)¡£¤¹¤Ù¤Æ¤Î¥¯¥é¥¹Ì¾¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹Ì¾¡¢¥³¥ó¥¹¥È¥é¥¯¥¿Ì¾¡¢¥Õ¥£¡¼¥ë¥É̾¡¢¤ª¤è¤Ó¥á¥½¥Ã¥É̾¤¬¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤Ëʤó¤Ç¤¤¤Þ¤¹¡£º÷°ú¤Ï¡¢Unicode¤ò°·¤¨¤ë¤è¤¦¤Ë¹ñºÝ²½¤µ¤ì¤Æ¤¤¤Þ¤¹¡£1¤Ä¤Î¥Õ¥¡¥¤¥ë¤È¤·¤ÆÀ¸À®¤¹¤ë¤³¤È¤â¡¢ÀèƬʸ»ú(±Ñ¸ì¤Î¾ì¹çA\-Z)¤´¤È¤ËÊÌ¡¹¤Î¥Õ¥¡¥¤¥ë¤È¤·¤ÆÀ¸À®¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.RE
++.LP
++\f3¥µ¥Ý¡¼¥È¡¦¥Õ¥¡¥¤¥ë\fP
++.RS 3
++.TP 2
++o
++\f3¥Ø¥ë¥×¡¦¥Ú¡¼¥¸\fP(\f2help\-doc.html\fP)¡£¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤äÁ°½Ò¤Î³Æ¥Ú¡¼¥¸¤Ë´Ø¤¹¤ëÀâÌÀ¤¬µ­ºÜ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\f2\-helpfile\fP¤ò»ÈÍѤ¹¤ë¤È¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥Ø¥ë¥×¡¦¥Õ¥¡¥¤¥ë¤ËÂå¤ï¤ëÆȼ«¤Î¥«¥¹¥¿¥à¡¦¥Ø¥ë¥×¡¦¥Õ¥¡¥¤¥ë¤òÄ󶡤Ǥ­¤Þ¤¹¡£
++.TP 2
++o
++ɽ¼¨ÍѤÎHTML¥Õ¥ì¡¼¥à¤òºîÀ®¤¹¤ë1¤Ä¤Î\f3index.html¥Õ¥¡¥¤¥ë\fP¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢¥Õ¥ì¡¼¥àÉÕ¤­¤ÎÀèƬ¥Ú¡¼¥¸¤òɽ¼¨¤¹¤ë¾ì¹ç¤Ë¥í¡¼¥É¤·¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¼«ÂΤˤϡ¢¥Æ¥­¥¹¥È¡¦¥³¥ó¥Æ¥ó¥Ä¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£
++.TP 2
++o
++Ê£¿ô¤Î\f3¥Õ¥ì¡¼¥à¡¦¥Õ¥¡¥¤¥ë\fP(\f2*\-frame.html\fP)¡£¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥ê¥¹¥È¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£HTML¥Õ¥ì¡¼¥à¤òɽ¼¨¤¹¤ë¤È¤­¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 2
++o
++\f3¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È\fP¥Õ¥¡¥¤¥ë(\f2package\-list\fP)¡£\f2\-link\fP¤ª¤è¤Ó\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤Ç»ÈÍѤµ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢HTML¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¯¥Æ¥­¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ç¤¢¤ê¡¢¤É¤Î¥ê¥ó¥¯¤«¤é¤â¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó¡£
++.TP 2
++o
++\f3¥¹¥¿¥¤¥ë¥·¡¼¥È\fP¡¦¥Õ¥¡¥¤¥ë(\f2stylesheet.css\fP)¡£À¸À®¤µ¤ì¤ë¥Ú¡¼¥¸¤Î°ìÉô¤ÎÍ×ÁǤˤĤ¤¤Æ¿§¡¢¥Õ¥©¥ó¥È¡¦¥Õ¥¡¥ß¥ê¡¢¥Õ¥©¥ó¥È¡¦¥µ¥¤¥º¡¢¥Õ¥©¥ó¥È¡¦¥¹¥¿¥¤¥ë¡¢¤ª¤è¤ÓÇÛÃÖ¤òÀ©¸æ¤·¤Þ¤¹¡£
++.TP 2
++o
++\f3doc\-files\fP¥Ç¥£¥ì¥¯¥È¥ê¡£°¸Àè¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥³¥Ô¡¼¤¹¤ë¥¤¥á¡¼¥¸¡¢¥µ¥ó¥×¥ë¡¦¥³¡¼¥É¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤Ê¤É¤Î¥Õ¥¡¥¤¥ë¤¬¤¹¤Ù¤Æ³ÊǼ¤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢¤¤¤«¤Ê¤ëÊýË¡¤Ç¤âJavadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ½èÍý¤µ¤ì¤Þ¤»¤ó¡£¤Ä¤Þ¤ê¡¢¥Õ¥¡¥¤¥ëÆâ¤Ëjavadoc¥¿¥°¤¬¤¢¤Ã¤Æ¤â̵»ë¤µ¤ì¤Þ¤¹¡£¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤ÎÃæ¤Ë¸ºß¤¹¤ë¾ì¹ç¤Ë¤Î¤ßÀ¸À®¤µ¤ì¤Þ¤¹¡£
++.RE
++.LP
++\f3HTML¥Õ¥ì¡¼¥à\fP
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢²¼¤Î¿Þ¤Ë¼¨¤¹¤è¤¦¤Ë¡¢2¡¢3¸Ä¤ÎHTML¥Õ¥ì¡¼¥à¤òÀ¸À®¤·¤Þ¤¹¡£1¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤·¤«¤Ê¤¤¾ì¹ç(¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤¬¤Ê¤¤¾ì¹ç)¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Î¥ê¥¹¥È¤ò¾Êά¤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆºÇÄã¸ÂɬÍפʿô¤Î¥Õ¥ì¡¼¥à¤òºîÀ®¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢Ã±°ì¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë°¤¹¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(*.java)¤Þ¤¿¤Ïñ°ì¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò°ú¿ô¤È¤·¤Æjavadoc¥³¥Þ¥ó¥É¤ËÅϤ¹¾ì¹ç¤Ï¡¢º¸Â¦¤ÎÎó¤Ë¥¯¥é¥¹¤Î¥ê¥¹¥È¤òɽ¼¨¤¹¤ë¥Õ¥ì¡¼¥à(C)¤¬1¤Ä¤Î¤ßºîÀ®¤µ¤ì¤Þ¤¹¡£Javadoc¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ·¤¿¾ì¹ç¤Ï¡¢³µÍ×¥Ú¡¼¥¸(Detail)¤Ë²Ã¤¨¤Æ¡¢¤¹¤Ù¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¥ê¥¹¥È¤¹¤ëÂè3¤Î¥Õ¥ì¡¼¥à(P)¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£¤³¤Î³µÍ×¥Ú¡¼¥¸¤Î¥Õ¥¡¥¤¥ë̾¤Ï¡¢\f2overview\-summary.html\fP¤Ç¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢Ê£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ·¤¿¾ì¹ç¤Ë¤Î¤ßºîÀ®¤µ¤ì¤Þ¤¹¡£¡Ö¥Õ¥ì¡¼¥à¤Ê¤·¡×¥ê¥ó¥¯¤ò¥¯¥ê¥Ã¥¯¤¹¤ë¤«¡¢overview\-summary.html¤òºÇ½é¤Ëɽ¼¨¤¹¤ë¤È¡¢¥Õ¥ì¡¼¥à¤ò¾Êά¤Ç¤­¤Þ¤¹¡£
++.LP
++HTML¥Õ¥ì¡¼¥à¤Ë´·¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ÆÃÄê¤Î¥Õ¥ì¡¼¥à¤ò°õºþ¤ª¤è¤Ó¥¹¥¯¥í¡¼¥ë¤¹¤ë¤Ë¤Ï¡¢¤½¤Î¥Õ¥ì¡¼¥à¤Ë\f2¥Õ¥©¡¼¥«¥¹\fP¤¬É¬ÍפǤ¢¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¥Õ¥ì¡¼¥à¤Ë¥Õ¥©¡¼¥«¥¹¤òÍ¿¤¨¤ë¤Ë¤Ï¡¢¤½¤Î¥Õ¥ì¡¼¥à¤ò¥¯¥ê¥Ã¥¯¤·¤Þ¤¹¡£¤³¤ì¤Ç¡¢Â¿¤¯¤Î¥Ö¥é¥¦¥¶¤Ç¤Ï¡¢Ìð°õ¥­¡¼¤ä¥Ú¡¼¥¸¡¦¥­¡¼¤ò»ÈÍѤ·¤Æ¤½¤Î¥Õ¥ì¡¼¥à¤ò¥¹¥¯¥í¡¼¥ë¤·¤¿¤ê¡¢¡Ö°õºþ¡×¥á¥Ë¥å¡¼¡¦¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¤½¤Î¥Õ¥ì¡¼¥à¤ò°õºþ¤·¤¿¤ê¤Ç¤­¤Þ¤¹¡£
++.LP
++HTML¥Õ¥ì¡¼¥à¤¬É¬Íפ«¤É¤¦¤«¤Ë¤è¤Ã¤Æ¡¢¼¡¤Î¤¤¤º¤ì¤«¤Î¥Õ¥¡¥¤¥ë¤ò³«»Ï¥Ú¡¼¥¸¤È¤·¤Æ¥í¡¼¥É¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2index.html\fP(¥Õ¥ì¡¼¥à¤¢¤ê)
++.TP 2
++o
++\f2overview\-summary.html\fP(¥Õ¥ì¡¼¥à¤Ê¤·)
++.RE
++.LP
++\f3À¸À®¤µ¤ì¤ë¥Õ¥¡¥¤¥ë¤Î¹½Â¤\fP
++.LP
++À¸À®¤µ¤ì¤ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢Java¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¥Ç¥£¥ì¥¯¥È¥ê³¬ÁؤËÊÔÀ®¤µ¤ì¤Þ¤¹¡£1¤Ä¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤­1¤Ä¤Î¥Ç¥£¥ì¥¯¥È¥ê¡¢¤È¤¤¤¦¹½Â¤¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++¤¿¤È¤¨¤Ð¡¢\f2java.applet.Applet\fP¥¯¥é¥¹ÍѤËÀ¸À®¤µ¤ì¤ë¥É¥­¥å¥á¥ó¥È¤Ï¡¢\f2java/applet/Applet.html\fP¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê¤Î̾Á°¤¬\f2apidocs\fP¤À¤È¤¹¤ë¤È¡¢java.applet¥Ñ¥Ã¥±¡¼¥¸¤Î¥Õ¥¡¥¤¥ë¤Î¹½Â¤¤Ï¡¢¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£Á°½Ò¤Î¤è¤¦¤Ë¡¢¡Öframe¡×¤È¤¤¤¦¸ì¤ò̾Á°¤Ë´Þ¤à¥Õ¥¡¥¤¥ë¤Ï¡¢¤¹¤Ù¤Æº¸¾å¤Þ¤¿¤Ïº¸²¼¤Î¥Õ¥ì¡¼¥à¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤ÎHTML¥Õ¥¡¥¤¥ë¤Ï¡¢¤¹¤Ù¤Æ±¦Â¦¤Î¥Õ¥ì¡¼¥à¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++Ãí°Õ \- ¥Ç¥£¥ì¥¯¥È¥ê¤Ï\f3ÂÀ»ú\fP¤Ç¼¨¤·¤Æ¤¤¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯(\f2*\fP)¤Ï¡¢Javadoc¤Ø¤Î°ú¿ô¤¬¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ç¤Ï¤Ê¤¯¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾(*.java)¤Ç¤¢¤ë¾ì¹ç¤Ë\f2¾Êά¤µ¤ì¤ë\fP¥Õ¥¡¥¤¥ë¤ª¤è¤Ó¥Ç¥£¥ì¥¯¥È¥ê¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£¤Þ¤¿¡¢°ú¿ô¤¬¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤Î¾ì¹ç¡¢\f2package\-list\fP¤ÏºîÀ®¤µ¤ì¤Þ¤¹¤¬¡¢¤½¤ÎÃæ¿È¤Ï¶õ¤Ç¤¹¡£doc\-files¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼Æâ¤Ë¸ºß¤¹¤ë¾ì¹ç¤Ë¤Î¤ß¡¢À¸À®Àè¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++
++.fl
++\fP\f3apidocs\fP Top directory
++.fl
++ index.html Initial page that sets up HTML frames
++.fl
++ * overview\-summary.html Lists all packages with first sentence summaries
++.fl
++ overview\-tree.html Lists class hierarchy for all packages
++.fl
++ deprecated\-list.html Lists deprecated API for all packages
++.fl
++ constant\-values.html Lists values of static fields for all packages
++.fl
++ serialized\-form.html Lists serialized form for all packages
++.fl
++ * overview\-frame.html Lists all packages, used in upper\-left frame
++.fl
++ allclasses\-frame.html Lists all classes for all packages, used in lower\-left frame
++.fl
++ help\-doc.html Lists user help for how these pages are organized
++.fl
++ index\-all.html Default index created without \-splitindex option
++.fl
++ \f3index\-files\fP Directory created with \-splitindex option
++.fl
++ index\-<number>.html Index files created with \-splitindex option
++.fl
++ package\-list Lists package names, used only for resolving external refs
++.fl
++ stylesheet.css HTML style sheet for defining fonts, colors and positions
++.fl
++ \f3java\fP Package directory
++.fl
++ \f3applet\fP Subpackage directory
++.fl
++ Applet.html Page for Applet class
++.fl
++ AppletContext.html Page for AppletContext interface
++.fl
++ AppletStub.html Page for AppletStub interface
++.fl
++ AudioClip.html Page for AudioClip interface
++.fl
++ * package\-summary.html Lists classes with first sentence summaries for this package
++.fl
++ * package\-frame.html Lists classes in this package, used in lower left\-hand frame
++.fl
++ * package\-tree.html Lists class hierarchy for this package
++.fl
++ package\-use Lists where this package is used
++.fl
++ \f3doc\-files\fP Directory holding image and example files
++.fl
++ \f3class\-use\fP Directory holding pages API is used
++.fl
++ Applet.html Page for uses of Applet class
++.fl
++ AppletContext.html Page for uses of AppletContext interface
++.fl
++ AppletStub.html Page for uses of AppletStub interface
++.fl
++ AudioClip.html Page for uses of AudioClip interface
++.fl
++ \f3src\-html\fP Source code directory
++.fl
++ \f3java\fP Package directory
++.fl
++ \f3applet\fP Subpackage directory
++.fl
++ Applet.html Page for Applet source code
++.fl
++ AppletContext.html Page for AppletContext source code
++.fl
++ AppletStub.html Page for AppletStub source code
++.fl
++ AudioClip.html Page for AudioClip source code
++.fl
++.fi
++.SS
++À¸À®¤µ¤ì¤ëAPIÀë¸À
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢¤½¤ì¤¾¤ì¤Î¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥Õ¥£¡¼¥ë¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤ª¤è¤Ó¥á¥½¥Ã¥É¤Îµ­½Ò¤ÎºÇ½é¤Ë¡¢¤½¤ÎAPIÍѤÎÀë¸À¤òÀ¸À®¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2Boolean\fP¥¯¥é¥¹¤ÎÀë¸À¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++\f2public final class Boolean\fP
++.br
++\f2extends Object\fP
++.br
++\f2implements Serializable\fP
++.LP
++¤Þ¤¿¡¢\f2Boolean.valueOf\fP¥á¥½¥Ã¥É¤ÎÀë¸À¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++\f2public static Boolean valueOf(String s)\fP
++.LP
++Javadoc¥Ä¡¼¥ë¤Ç¤Ï¡¢½¤¾þ»Ò\f2public\fP¡¢\f2protected\fP¡¢\f2private\fP¡¢\f2abstract\fP¡¢\f2final\fP¡¢\f2static\fP¡¢\f2transient\fP¡¢¤ª¤è¤Ó\f2volatile\fP¤òÁȤ߹þ¤à¤³¤È¤Ï¤Ç¤­¤Þ¤¹¤¬¡¢\f2synchronized\fP¤È\f2native\fP¤òÁȤ߹þ¤à¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤³¤ì¤é¸å¼Ô¤Î2¤Ä¤Î½¤¾þ»Ò¤Ï¡¢¼ÂÁõ¤Î¾ÜºÙ¤È¸«¤Ê¤µ¤ì¤Æ¤¤¤ë¤¿¤á¡¢API»ÅÍͤˤϴޤޤì¤Þ¤»¤ó¡£
++.LP
++API¤Ç¤Ï¡¢Ê¹ÔÀ­¥»¥Þ¥ó¥Æ¥£¥¯¥¹¤Ë¤Ä¤¤¤Æ¡¢¥­¡¼¥ï¡¼¥É\f2synchronized\fP¤Ë°Í¸¤¹¤ë¤Î¤Ç¤Ï¤Ê¤¯¡¢¥³¥á¥ó¥È¤Î¼çÀâÌÀ¤È¤·¤Æ¥É¥­¥å¥á¥ó¥È²½¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¡Ö1¤Ä¤Î\f2Enumeration\fP¤òÊ£¿ô¤Î¥¹¥ì¥Ã¥É¤«¤éʹԤ·¤Æ»ÈÍѤ¹¤ë¤³¤È¤Ï¤Ç¤­¤Ê¤¤¡×¤Î¤è¤¦¤Ëµ­½Ò¤·¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥È¤Ë¤Ï¡¢¤³¤ì¤é¤Î¥»¥Þ¥ó¥Æ¥£¥¯¥¹¤ò¼Â¸½¤¹¤ëÊýË¡¤òµ­½Ò¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤¿¤È¤¨¤Ð¡¢\f2Hashtable\fP¤Ï¥¹¥ì¥Ã¥É¥»¡¼¥Õ¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢¡Ö¥¨¥¯¥¹¥Ý¡¼¥È¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥á¥½¥Ã¥É¤òƱ´ü²½¤·¤Æ¤½¤ì¤ò¼Â¸½¤¹¤ë¡×¤Î¤è¤¦¤Ë»ØÄꤹ¤ëº¬µò¤Ï¤¢¤ê¤Þ¤»¤ó¡£¥Ð¥±¥Ã¥È¡¦¥ì¥Ù¥ë¤ÇÆâÉôŪ¤ËƱ´ü²½¤¹¤ë¸¢¸Â¤òÊÝÍ­¤·¤Æ¤ª¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤¹¤ì¤Ð¡¢¤è¤ê¹âÅÙ¤ÊʹÔÀ­¤¬Ä󶡤µ¤ì¤Þ¤¹¡£
++.SH "¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È"
++.LP
++¥ª¥ê¥¸¥Ê¥ë¤Î¡Ö¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î»ÅÍ͡פϡ¢´ØÏ¢¹àÌܤò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.SS
++¥½¡¼¥¹¡¦¥³¡¼¥É¤Ø¤Î¥³¥á¥ó¥È¤ÎÁÞÆþ
++.LP
++¥½¡¼¥¹¡¦¥³¡¼¥É¤ÎǤ°Õ¤Î¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ÎÀë¸À¤ÎÁ°¤Ë¡¢\f2¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È\fP("doc comments")¤òµ­½Ò¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£³Æ¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òºîÀ®¤Ç¤­¤Þ¤¹¡£¹½Ê¸¤Ï¼ã´³°Û¤Ê¤ê¤Þ¤¹¤¬¡¢³µÍפˤâ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òºîÀ®¤Ç¤­¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï¡¢Èó¸ø¼°¤Ë¡ÖJavadoc¥³¥á¥ó¥È¡×¤È¸Æ¤Ð¤ì¤Æ¤¤¤Þ¤¹(¤³¤ÎÍѸì¤Ï¾¦É¸´ØÏ¢¤Î»ÈÍÑÊýË¡¤Ë°ãÈ¿)¡£¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï¡¢¥³¥á¥ó¥È¤ò»Ï¤Þ¤ê¤ò¼¨¤¹Ê¸»úÎó\f2/**\fP¤È¡¢¥³¥á¥ó¥È¤ò½ª¤ï¤ê¤ò¼¨¤¹Ê¸»úÎó\f2*/\fP¤Î´Ö¤Ë¤¢¤ëʸ»ú¤«¤é¹½À®¤µ¤ì¤Þ¤¹¡£¹ÔƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¡¢³Æ¹Ô¤Ëµ­½Ò¤Ç¤­¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¸å½Ò¤·¤Þ¤¹¡£¥³¥á¥ó¥È¤Î¥Æ¥­¥¹¥È¤Ï¡¢Ê£¿ô¹Ô¤Ë¤ï¤¿¤Ã¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * This is the typical format of a simple documentation comment
++.fl
++ * that spans two lines.
++.fl
++ */
++.fl
++\fP
++.fi
++.LP
++¥¹¥Ú¡¼¥¹¤òÀáÌ󤹤ë¤Ë¤Ï¡¢¥³¥á¥ó¥È¤ò1¹Ô¤ËÆþ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/** This comment takes up only one line. */
++.fl
++\fP
++.fi
++.LP
++\f3¥³¥á¥ó¥È¤ÎÇÛÃÖ\fP \- ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ÎÀë¸À¤ÎľÁ°¤ËÃÖ¤«¤ì¤Æ¤¤¤ë¤È¤­¤Ë¤Î¤ßǧ¼±¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¹¤ÎÎã¡¢¥á¥½¥Ã¥É¤ÎÎã¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¥á¥½¥Ã¥É¤ÎËÜÂΤËÃÖ¤«¤ì¤Æ¤¤¤ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ç¤Ï¡¢1¤Ä¤ÎÀë¸Àʸ¤Ë¤Ä¤­1¤Ä¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¤ß¤¬Ç§¼±¤µ¤ì¤Þ¤¹¡£
++.LP
++¤è¤¯¤¢¤ë´Ö°ã¤¤¤Ï¡¢¥¯¥é¥¹¡¦¥³¥á¥ó¥È¤È¥¯¥é¥¹Àë¸À¤Î´Ö¤Ë\f2import\fPʸ¤òÃÖ¤¤¤Æ¤·¤Þ¤¦¤³¤È¤Ç¤¹¡£¤³¤Î¤è¤¦¤Êµ­½Ò¤Ï¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤Î¤è¤¦¤Ê¥¯¥é¥¹¡¦¥³¥á¥ó¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * This is the class comment for the class Whatever.
++.fl
++ */
++.fl
++
++.fl
++ import com.sun; // MISTAKE \- Important not to put import statement here
++.fl
++
++.fl
++ public class Whatever {
++.fl
++ }
++.fl
++\fP
++.fi
++.LP
++\f3¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï\fP\f4¼çÀâÌÀ\fP\f3¤Î¸å¤Ë\fP\f4¥¿¥°¡¦¥»¥¯¥·¥ç¥ó\fP\f3¤¬Â³¤¯\fP \- ³«»Ï¶èÀÚ¤êʸ»ú¤Ç¤¢¤ë\f2/**\fP¤Î¸å¤«¤é¥¿¥°¡¦¥»¥¯¥·¥ç¥ó¤Þ¤Ç¤¬\f2¼çÀâÌÀ\fP¤Ë¤Ê¤ê¤Þ¤¹¡£\f2¥¿¥°¡¦¥»¥¯¥·¥ç¥ó\fP¤Ï¡¢ÀèƬʸ»ú¤¬\f2@\fP¤Î¹Ô¤ÇÄêµÁ¤µ¤ì¤ëºÇ½é¤Î¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤«¤é»Ï¤Þ¤ê¤Þ¤¹(ÀèƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¡¢¶õÇòʸ»ú¡¢ÀèƬ¤Î¶èÀÚ¤êʸ»ú\f2/**\fP¤Ï½ü¤¯)¡£¼çÀâÌÀ¤òµ­½Ò¤»¤º¡¢¥¿¥°¡¦¥»¥¯¥·¥ç¥ó¤Î¤ß¤Î¥³¥á¥ó¥È¤òµ­½Ò¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¼çÀâÌÀ¤Ï¡¢¥¿¥°¡¦¥»¥¯¥·¥ç¥ó°Ê¹ß¤Ë³¤±¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¥¿¥°¤Î°ú¿ô¤Ï¡¢Ê£¿ô¹Ô¤Ë¤ï¤¿¤Ã¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£¥¿¥°¤Î¿ô¤ËÀ©¸Â¤Ï¤¢¤ê¤Þ¤»¤ó¡£²¿²ó¤âµ­½Ò¤Ç¤­¤ë¥¿¥°¤È¡¢1²ó¤·¤«µ­½Ò¤Ç¤­¤Ê¤¤¥¿¥°¤¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î\f2@see\fP¤«¤é¥¿¥°¡¦¥»¥¯¥·¥ç¥ó¤Ï»Ï¤Þ¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * This sentence would hold the main description for this doc comment.
++.fl
++ * @see java.lang.Object
++.fl
++ */
++.fl
++\fP
++.fi
++.LP
++\f3¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤È¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°\fP \- \f2¥¿¥°\fP¤Ï¡¢Javadoc¥Ä¡¼¥ë¤¬½èÍý¤Ç¤­¤ë¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤ÎÆÃÊ̤ʥ­¡¼¥ï¡¼¥É¤Ç¤¹¡£¥¿¥°¤Ë¤Ï2¤Ä¤Î¥¿¥¤¥×¤¬¤¢¤ê¤Þ¤¹¡£1¤Ä¤Ï\f2@tag\fP¤Î¤è¤¦¤Ëɽµ­¤µ¤ì¤ë¥Ö¥í¥Ã¥¯¡¦¥¿¥°(¡Ö¥¹¥¿¥ó¥É¥¢¥í¥ó¡¦¥¿¥°¡×¤È¤â¸Æ¤Ð¤ì¤ë)¡¢¤â¤¦1¤Ä¤Ï\f2{@tag}\fP¤Î¤è¤¦¤ËÃæ³ç¸Ì¤Ç°Ï¤ó¤Çɽµ­¤µ¤ì¤ë¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤Ç¤¹¡£¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤¬²ò¼á¤µ¤ì¤ë¤Ë¤Ï¡¢¹ÔƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¡¢¶õÇòʸ»ú¡¢¶èÀÚ¤êʸ»ú(\f2/**\fP)¤ò½ü¤¤¤Æ¡¢¹Ô¤ÎÀèƬ¤ËÃÖ¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢\f2@\fPʸ»ú¤ò¥Æ¥­¥¹¥ÈÆâ¤ÎÊ̤ξì½ê¤Ç»ÈÍѤ·¤Æ¤â¡¢¥¿¥°¤Î³«»Ï¤È¤·¤Æ²ò¼á¤µ¤ì¤Ê¤¤¤³¤È¤ò°ÕÌ£¤·¤Æ¤¤¤Þ¤¹¡£\f2@\fPʸ»ú¤ò»ÈÍѤ·¤Æ¹Ô¤ò³«»Ï¤·¤Æ¤â¡¢¤½¤ì¤¬²ò¼á¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤¹¤ë¤Ë¤Ï¡¢HTML¥¨¥ó¥Æ¥£¥Æ¥£\f2&#064;\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¤½¤ì¤¾¤ì¤Î¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤Ë¤Ï¡¢´ØÏ¢ÉÕ¤±¤é¤ì¤¿¥Æ¥­¥¹¥È¤¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¥Æ¥­¥¹¥È¤Ï¡¢¥¿¥°¤Î¸å¤«¤é¡¢¼¡¤Î¥¿¥°¤ÎÁ°¡¢¤Þ¤¿¤Ï¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎºÇ¸å¤Þ¤Ç¤Î´Ö¤Ëµ­½Ò¤µ¤ì¤¿¥Æ¥­¥¹¥È¤Ç¤¹(¥¿¥°¤Þ¤¿¤Ï¥³¥á¥ó¥È¶èÀÚ¤êʸ»ú¤ò½ü¤¯)¡£¤³¤Î´ØÏ¢¥Æ¥­¥¹¥È¤Ï¡¢Ê£¿ô¹Ô¤Ë¤ï¤¿¤Ã¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤Ï¡¢¥Æ¥­¥¹¥È¤òµ­½Ò¤Ç¤­¤ë¾ì½ê¤Ç¤¢¤ì¤Ð¤É¤³¤Ë¤Ç¤âÃÖ¤¯¤³¤È¤¬¤Ç¤­¡¢²ò¼á¤µ¤ì¤Þ¤¹¡£¼¡¤ÎÎã¤Ë¤Ï¥Ö¥í¥Ã¥¯¡¦¥¿¥°\f2@deprecated\fP¤È¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°\f2{@link}\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * @deprecated As of JDK 1.1, replaced by {@link #setBounds(int,int,int,int)}
++.fl
++ */
++.fl
++\fP
++.fi
++.LP
++\f3¥³¥á¥ó¥È¤ÏHTML¤Çµ­½Ò¤¹¤ë\fP \- ¥Æ¥­¥¹¥È¤ÏHTML¤Çµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢HTML¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ë¤³¤È¡¢¤ª¤è¤ÓHTML¥¿¥°¤ò»ÈÍѤǤ­¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£HTML¤Î¥Ð¡¼¥¸¥ç¥ó¤È¤·¤Æ¤Ï¡¢»ÈÍѤ¹¤ë¥Ö¥é¥¦¥¶¤¬¥µ¥Ý¡¼¥È¤¹¤ëǤ°Õ¤Î¥Ð¡¼¥¸¥ç¥ó¤ò»ÈÍѤǤ­¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ï¡¢¥«¥¹¥±¡¼¥Ç¥£¥ó¥°¡¦¥¹¥¿¥¤¥ë¡¦¥·¡¼¥È¤ª¤è¤Ó¥Õ¥ì¡¼¥à¤ò´Þ¤á¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È°Ê³°¤ÎÉôʬ¤ÇHTML 3.2¤Ë½àµò¤·¤¿¥³¡¼¥É¤òÀ¸À®¤¹¤ë¤è¤¦¤ËºîÀ®¤µ¤ì¤Æ¤¤¤Þ¤¹¡£(¤¿¤À¤·¡¢¥Õ¥ì¡¼¥à¡¦¥»¥Ã¥ÈÂбþ¤Î¤¿¤á¡¢À¸À®¤µ¤ì¤ë³Æ¥Õ¥¡¥¤¥ë¤Ë¤Ï¡ÖHTML 4.0¡×¤ÈÀèƬ¤Ëµ­½Ò¤µ¤ì¤Þ¤¹¡£)
++.LP
++¤¿¤È¤¨¤Ð¡¢¤è¤ê¾®¤µ¤¤(\f2<\fP)µ­¹æ¤ª¤è¤Ó¤è¤êÂ礭¤¤(\f2>\fP)µ­¹æ¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ï¡¢\f2<\fP¤ª¤è¤Ó\f2>\fP¤Èµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Æ±Íͤˡ¢¥¢¥ó¥Ñ¥µ¥ó¥É(\f2&\fP)¤Ï\f2&\fP¤Èµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤ÎÎã¤Ç¤Ï¡¢ÂÀ»ú¤ÎHTML¥¿¥°\f2<b>\fP¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£
++.LP
++¼¡¤Ë¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * This is a <b>doc</b> comment.
++.fl
++ * @see java.lang.Object
++.fl
++ */
++.fl
++\fP
++.fi
++.LP
++\f3¹ÔƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯\fP \- Javadoc¤Ë¤è¤ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î²òÀÏ»þ¤Ë¡¢³Æ¹Ô¤ÎÀèƬ¤Ë¤¢¤ë¥¢¥¹¥¿¥ê¥¹¥¯(\f2*\fP)ʸ»ú¤ÏÇË´þ¤µ¤ì¤Þ¤¹¡£ºÇ½é¤Î¥¢¥¹¥¿¥ê¥¹¥¯(\f2*\fP)ʸ»ú¤è¤êÁ°¤Ë¤¢¤ë¶õÇò¤ä¥¿¥Ö¤âÇË´þ¤µ¤ì¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó1.4¤«¤é¤Ï¡¢¹Ô¤ÎÀèƬ¤Î¥¢¥¹¥¿¥ê¥¹¥¯¤ò¾Êά¤·¤Æ¤â¡¢ÀèƬ¤Î¶õÇòʸ»ú¤Ïºï½ü¤µ¤ì¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿¡£¤³¤Î¤¿¤á¡¢¥³¡¼¥ÉÎã¤òľÀܥɥ­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î\f2<PRE>\fP¥¿¥°Æâ¤ËÄ¥¤êÉÕ¤±¤Æ¤â¡¢¥¤¥ó¥Ç¥ó¥È¤¬ÊÝ»ý¤µ¤ì¤Þ¤¹¡£Ä̾¥Ö¥é¥¦¥¶¤Ï¡¢¶õÇòʸ»ú¤ò¥¿¥Ö¤è¤ê¤â°ìΧ¤Ë²ò¼á¤·¤Þ¤¹¡£¥¤¥ó¥Ç¥ó¥È¤Îµ¯ÅÀ¤Ï(¶èÀÚ¤êʸ»ú\f2/**\fP¤Þ¤¿¤Ï\f2<PRE>\fP¥¿¥°¤Ç¤Ï¤Ê¤¯)º¸¥Þ¡¼¥¸¥ó¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++\f3ºÇ½é¤Îʸ\fP \- ³Æ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎºÇ½é¤Îʸ¤Ï¡¢Àë¸À¤µ¤ì¤Æ¤¤¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤Ë´Ø¤¹¤ë´Ê·é¤«¤Ä´°Á´¤ÊÍ×Ìóʸ¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Îʸ¤Ï¡¢¶õÇò¡¢¥¿¥Ö¡¢¤Þ¤¿¤Ï¹Ô½ªÎ»Ê¸»ú¤¬Â³¤¯ºÇ½é¤Î¥Ô¥ê¥ª¥É¡¢¤Þ¤¿¤ÏºÇ½é¤Î¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤¬¤¢¤ë°ÌÃ֤ǽª¤ï¤ê¤Þ¤¹¡£ºÇ½é¤Îʸ¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤ÆHTML¥Ú¡¼¥¸¤ÎÀèƬ¤Ë¤¢¤ë¥á¥ó¥Ð¡¼¤Î³µÍפÎÉôʬ¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.LP
++\f3Ê£¿ô¥Õ¥£¡¼¥ë¥É¤ÎÀë¸À\fP \- Java¤Ç¤Ï¡¢1¤Ä¤Îʸ¤ÇÊ£¿ô¤Î¥Õ¥£¡¼¥ë¥É¤òÀë¸À¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤Îʸ¤Ë¤Ï¡¢1¤Ä¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤·¤«µ­½Ò¤Ç¤­¤Þ¤»¤ó¡£¤½¤Î¥³¥á¥ó¥È¤¬¡¢¤¹¤Ù¤Æ¤Î¥Õ¥£¡¼¥ë¥É¤ËÂФ·¤Æ¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥Õ¥£¡¼¥ë¥É¤´¤È¤Ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢³Æ¥Õ¥£¡¼¥ë¥É¤òÊÌ¡¹¤Îʸ¤ÇÀë¸À¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï¡¢1¤Ä¤ÎÀë¸À¤È¤·¤Æµ­½Ò¤¹¤ë¤ÈÉÔŬÀڤǤ¹¡£¤³¤Î¾ì¹ç¤Ï¡¢Àë¸À¤ò2¤Ä¤Ëʬ¤±¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * The horizontal and vertical distances of point (x,y)
++.fl
++ */
++.fl
++public int x, y; // Avoid this
++.fl
++\fP
++.fi
++.LP
++¾å¤Î¥³¡¼¥É¤«¤é¤Ï¡¢¼¡¤Î¤è¤¦¤Ê¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++public int \fP\f3x\fP
++.fl
++.fi
++.RS 3
++The horizontal and vertical distances of point (x,y)
++.RE
++.nf
++\f3
++.fl
++public int \fP\f3y\fP
++.fl
++.fi
++.RS 3
++The horizontal and vertical distances of point (x,y)
++.RE
++.LP
++\f3¸«½Ð¤·¥¿¥°¤Î»ÈÍѤˤÏÍ×Ãí°Õ\fP \- ¥á¥ó¥Ð¡¼¤ËÂФ·¤Æ¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òµ­½Ò¤¹¤ë¤È¤­¤Ë¤Ï¡¢<H1>¤ä<H2>¤Ê¤É¤ÎHTML¸«½Ð¤·¥¿¥°¤ò»ÈÍѤ·¤Ê¤¤¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢´°Á´¤Ê¹½Â¤²½¥É¥­¥å¥á¥ó¥È¤òºîÀ®¤¹¤ë¤Î¤Ç¡¢¤³¤Î¤è¤¦¤Ê¹½Â¤²½¥¿¥°¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¤È¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Î·Á¼°¤¬°­±Æ¶Á¤ò¼õ¤±¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£¤¿¤À¤·¡¢¥¯¥é¥¹¤ä¥Ñ¥Ã¥±¡¼¥¸¤Î¥³¥á¥ó¥È¤Ç¤Ï¡¢¤³¤ì¤é¤Î¸«½Ð¤·¤ò»ÈÍѤ·¤ÆÆȼ«¤Î¹½Â¤¤ò»ØÄꤷ¤Æ¤«¤Þ¤¤¤Þ¤»¤ó¡£
++.SS
++¥á¥½¥Ã¥É¡¦¥³¥á¥ó¥È¤Î¼«Æ°¥³¥Ô¡¼
++.LP
++Javadoc¥Ä¡¼¥ë¤Ë¤Ï¡¢¼¡¤Î2¤Ä¤Î¾ì¹ç¤Ë¡¢¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥½¥Ã¥É¡¦¥³¥á¥ó¥È¤ò¥³¥Ô¡¼¤Þ¤¿¤Ï¡Ö·Ñ¾µ¡×¤¹¤ëµ¡Ç½¤¬¤¢¤ê¤Þ¤¹¡£¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥Õ¥£¡¼¥ë¥É¡¢¤ª¤è¤Ó¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò·Ñ¾µ¤·¤Þ¤»¤ó¡£
++.RS 3
++.TP 2
++o
++\f3¼«Æ°Åª¤Ë¥³¥á¥ó¥È¤ò·Ñ¾µ¤·¤Æ¸«¤Ä¤«¤é¤Ê¤¤¥Æ¥­¥¹¥È¤òËä¤á¤ë\fP \- ¼çÀâÌÀ¡¢\f2@return\fP¥¿¥°¡¢\f2@param\fP¥¿¥°¡¢¤Þ¤¿¤Ï\f2@throws\fP ¥¿¥°¤¬¥á¥½¥Ã¥É¡¦¥³¥á¥ó¥È¤Ë¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥á¥½¥Ã¥É¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Þ¤¿¤Ï¼ÂÁõ¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¤½¤Î¥á¥½¥Ã¥É¤«¤é¡¢Âбþ¤¹¤ë¼çÀâÌÀ¤Þ¤¿¤Ï¥¿¥°¡¦¥³¥á¥ó¥È¤ò¡¢¼¡¤Î¥¢¥ë¥´¥ê¥º¥à¤Ë½¾¤Ã¤Æ¥³¥Ô¡¼¤·¤Þ¤¹¡£
++.LP
++¸·Ì©¤Ë¤Ï¡¢ÆÃÄê¤Î¥Ñ¥é¥á¡¼¥¿¤Î\f2@param\fP¥¿¥°¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢¤½¤Î¥Ñ¥é¥á¡¼¥¿¤Î¥³¥á¥ó¥È¤¬¡¢¾å°Ì¤Î·Ñ¾µ³¬ÁؤΥ᥽¥Ã¥É¤«¤é¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£ÆÃÄê¤ÎÎã³°¤Î\f2@throws\fP¥¿¥°¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢¤½¤ÎÎã³°¤¬Àë¸À¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ë\f2¤«¤®¤ê\fP¡¢\f2@throws\fP¥¿¥°¤¬¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.LP
++¤³¤ÎÆ°ºî¤Ï¥Ð¡¼¥¸¥ç¥ó1.3°ÊÁ°¤ÎÆ°ºî¤È¤ÏÂоÈŪ¤Ç¤¹¡£¤³¤ì¤Þ¤Ç¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¡¢¼çÀâÌÀ¤Þ¤¿¤Ï¥¿¥°¤¬Â¸ºß¤¹¤ì¤Ð¡¢¥³¥á¥ó¥È¤Ï°ìÀڷѾµ¤µ¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£
++.TP 2
++o
++\f3{@inheritDoc}¥¿¥°¤ò´Þ¤à¥³¥á¥ó¥È¤òÌÀ¼¨Åª¤Ë·Ñ¾µ¤¹¤ë\fP \- ¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°\f2{@inheritDoc}\fP¤ò¡¢¥á¥½¥Ã¥É¤Î¼çÀâÌÀÆâ¤Þ¤¿¤Ï\f2@return\fP¥¿¥°¡¢\f2@param\fP¥¿¥°¡¢¤Þ¤¿¤Ï\f2@throws\fP¤Î¤¤¤º¤ì¤«¤Î¥¿¥°¡¦¥³¥á¥ó¥ÈÆâ¤ËÁÞÆþ¤·¤Þ¤¹¡£Âбþ¤¹¤ë·Ñ¾µ¤µ¤ì¤¿¼çÀâÌÀ¤Þ¤¿¤Ï¥¿¥°¡¦¥³¥á¥ó¥È¤¬¤½¤Î°ÌÃ֤˥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.RE
++.LP
++¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò¼ÂºÝ¤Ë¥³¥Ô¡¼¤ËÍøÍѤ¹¤ë¤Ë¤Ï¡¢·Ñ¾µ¤·¤¿¥á¥½¥Ã¥É¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬\-sourcepath¤Ç»ØÄꤷ¤¿¥Ñ¥¹¤Î¤ß¤ËÃÖ¤«¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¡¢¥¯¥é¥¹¤â¥Ñ¥Ã¥±¡¼¥¸¤âÅϤ¹É¬ÍפϤ¢¤ê¤Þ¤»¤ó¡£¤³¤ÎÅÀ¤Ï¡¢¥¯¥é¥¹¤¬¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤Ç¤¢¤ë¤³¤È¤¬É¬ÍפÀ¤Ã¤¿1.3.x°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤È°Û¤Ê¤ê¤Þ¤¹¡£
++.LP
++\f3¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é¤Î·Ñ¾µ\fP \- ¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é·Ñ¾µ¤¹¤ë¼¡¤Î3¤Ä¤Î¾ì¹ç¤Ë¡¢¥³¥á¥ó¥È¤Î·Ñ¾µ¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++¥¯¥é¥¹¤Î¥á¥½¥Ã¥É¤¬¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤Î¥á¥½¥Ã¥É¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¾ì¹ç
++.TP 2
++o
++¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥½¥Ã¥É¤¬¥¹¡¼¥Ñ¡¼¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥½¥Ã¥É¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¾ì¹ç
++.TP 2
++o
++¥¯¥é¥¹¤Î¥á¥½¥Ã¥É¤¬¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥½¥Ã¥É¤ò¼ÂÁõ¤·¤Æ¤¤¤ë¾ì¹ç
++.RE
++.LP
++ºÇ½é¤Î2¤Ä¤Î¥±¡¼¥¹(¥á¥½¥Ã¥É¤¬¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¾ì¹ç)¤Ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¤½¤Î¥³¥á¥ó¥È¤¬·Ñ¾µ¤µ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤é¤º¡¢¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥ÈÆâ¤Ë¡Ö¥ª¡¼¥Ð¡¼¥é¥¤¥É¡×¤È¤¤¤¦¾®¸«½Ð¤·¤òÀ¸À®¤·¡¢¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤Æ¤¤¤ë¥á¥½¥Ã¥É¤Ø¤Î¥ê¥ó¥¯¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£
++.LP
++3¤ÄÌܤΥ±¡¼¥¹(ÆÃÄê¤Î¥¯¥é¥¹¤Î¥á¥½¥Ã¥É¤¬¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥á¥½¥Ã¥É¤ò¼ÂÁõ¤·¤Æ¤¤¤ë¾ì¹ç)¤Ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¤¤¤ë¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥ÈÆâ¤Ë¡ÖÄêµÁ¡×¤È¤¤¤¦¾®¸«½Ð¤·¤òÀ¸À®¤·¡¢¼ÂÁõ¤µ¤ì¤Æ¤¤¤ë¥á¥½¥Ã¥É¤Ø¤Î¥ê¥ó¥¯¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥³¥á¥ó¥È¤¬·Ñ¾µ¤µ¤ì¤Æ¤¤¤ë¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤ê¤Þ¤»¤ó¡£
++.LP
++\f3¥á¥½¥Ã¥É¡¦¥³¥á¥ó¥È¤¬·Ñ¾µ¤µ¤ì¤ë¥¢¥ë¥´¥ê¥º¥à\fP \- ¤¢¤ë¥á¥½¥Ã¥É¤Ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬µ­½Ò¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¤Þ¤¿¤Ï{@inheritDoc}¥¿¥°¤¬¤¢¤ë¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¼¡¤Î¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤ÆŬÀڤʥ³¥á¥ó¥È¤ò¸¡º÷¤·¤Þ¤¹¡£¤³¤Î¥¢¥ë¥´¥ê¥º¥à¤Ï¡¢ºÇ¤â¸·Ì©¤ËŬÀڤʥɥ­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò¸¡º÷¤Ç¤­¤ë¤è¤¦¤ËÀ߷פµ¤ì¤Æ¤ª¤ê¡¢¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤è¤ê¤â¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬Í¥À褵¤ì¤ë¤è¤¦¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.
++ľÀܤ˼ÂÁõ¤µ¤ì¤Æ¤¤¤ë(¤Þ¤¿¤Ï¡¢³ÈÄ¥¤µ¤ì¤Æ¤¤¤ë)¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ò¡¢¥á¥½¥Ã¥É¤ÎÀë¸À¤Ç¡Öimplements¡×(¤Þ¤¿¤Ï¡Öextends¡×)¤È¤¤¤¦¸ì¤Î¸å¤Ë½Ð¸½¤¹¤ë½ç½ø¤Ç¡¢1¤Ä¤º¤ÄÄ´¤Ù¤Þ¤¹¡£¤³¤Î¥á¥½¥Ã¥É¤Ë¤Ä¤¤¤ÆºÇ½é¤Ë¸«¤Ä¤«¤Ã¤¿¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òºÎÍѤ·¤Þ¤¹¡£
++.TP 3
++2.
++¼ê½ç1¤Ç¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢Ä¾ÀܼÂÁõ¤µ¤ì¤Æ¤¤¤ë(¤Þ¤¿¤Ï¡¢³ÈÄ¥¤µ¤ì¤Æ¤¤¤ë)¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤½¤ì¤¾¤ì¤ËÂФ·¤Æ¡¢¤³¤Î¥¢¥ë¥´¥ê¥º¥àÁ´ÂΤòºÆµ¢Åª¤ËŬÍѤ·¤Þ¤¹(¤½¤ÎºÝ¤Î½ç½ø¤Ï¡¢¼ê½ç1¤Ç¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ´¤Ù¤¿¤È¤­¤Î½ç½ø¤ÈƱ¤¸)¡£
++.TP 3
++3.
++¼ê½ç2¤Ç¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç¤Ç¡¢¤³¤Î¥¯¥é¥¹¤¬Object°Ê³°¤Î¥¯¥é¥¹¤Ç¤¢¤ë(¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç¤Ï¤Ê¤¤)¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë½èÍý¤·¤Þ¤¹¡£
++.RS 3
++.TP 3
++a.
++¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤Ë¤³¤Î¥á¥½¥Ã¥É¤Ë¤Ä¤¤¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬µ­½Ò¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥³¥á¥ó¥È¤òºÎÍѤ·¤Þ¤¹¡£
++.TP 3
++b.
++¼ê½ç3a¤Ç¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤¬¸«¤Ä¤«¤é¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤ËÂФ·¤Æ¡¢¤³¤Î¥¢¥ë¥´¥ê¥º¥àÁ´ÂΤòºÆµ¢Åª¤ËŬÍѤ·¤Þ¤¹¡£
++.RE
++.RE
++.SH "javadoc¥¿¥°"
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢Java¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤ËËä¤á¹þ¤Þ¤ì¤¿ÆÃÊ̤ʥ¿¥°¤ò²òÀϤ·¤Þ¤¹¡£¤³¤ì¤é¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°¤ò»ÈÍѤ¹¤ë¤È¡¢´°Á´¤ÊÀ°·Á¼°¤ÎAPI¤ò¥½¡¼¥¹¡¦¥³¡¼¥É¤«¤é¼«Æ°Åª¤ËÀ¸À®¤Ç¤­¤Þ¤¹¡£¥¿¥°¤Ï¡Ö¥¢¥Ã¥È¥Þ¡¼¥¯¡×µ­¹æ(\f2@\fP)¤Ç»Ï¤Þ¤ê¡¢Âçʸ»ú¤È¾®Ê¸»ú¤¬¶èÊ̤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î¥¿¥°¤Ï¡¢É½¼¨¤µ¤ì¤Æ¤¤¤ë¤È¤ª¤ê¤ËÂçʸ»ú¤È¾®Ê¸»ú¤ò»ÈÍѤ·¤ÆÆþÎϤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥¿¥°¤Ï¡¢¹Ô¤ÎÀèƬ(ÀèƬ¤Î¶õÇòʸ»ú¤È¾Êά²Äǽ¤Ê¥¢¥¹¥¿¥ê¥¹¥¯¤Î¸å)¤ËÃÖ¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤·¤Ê¤¤¤È¡¢Ä̾ï¤Î¥Æ¥­¥¹¥È¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£´·Îã¤È¤·¤Æ¡¢Æ±¤¸Ì¾Á°¤Î¥¿¥°¤Ï1²Õ½ê¤Ë¤Þ¤È¤á¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2@see\fP¥¿¥°¤¬Ê£¿ô¤¢¤ë¾ì¹ç¤Ï¡¢¤¹¤Ù¤ÆƱ¤¸¾ì½ê¤Ë¤Þ¤È¤á¤ÆÇÛÃÖ¤·¤Þ¤¹¡£
++.LP
++¥¿¥°¤Ë¤Ï¼¡¤Î2¤Ä¤Î¥¿¥¤¥×¤¬¤¢¤ê¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f3¥Ö¥í¥Ã¥¯¡¦¥¿¥°\fP \- ¼çÀâÌÀ¤Ë³¤¯¥¿¥°¡¦¥»¥¯¥·¥ç¥óÆâ¤Ë¤Î¤ßµ­½Ò²Äǽ¡£¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤Ï¡¢\f2@tag\fP¤Î·Á¼°¤ò¤È¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f3¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°\fP \- ¼çÀâÌÀÆâ¡¢¤Þ¤¿¤Ï¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤Î¥³¥á¥ó¥ÈÆâ¤Ëµ­½Ò²Äǽ¡£¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤Ï¡¢\f2{@tag}\fP¤Î¤è¤¦¤ËÃæ³ç¸Ì¤Ç°Ï¤ß¤Þ¤¹¡£
++.RE
++.LP
++¸½»þÅÀ¤ÇÍ­¸ú¤Ê¥¿¥°¤Ï¡¢¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 80 0
++.nr 38 \w\f3¥¿¥°\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@author\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@code}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@docRoot}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@deprecated\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@exception\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@inheritDoc}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@link}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@linkplain}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@literal}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@param\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@return\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@see\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@serial\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@serialData\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@serialField\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@since\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@throws\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2{@value}\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f2@version\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ƳÆþ¤µ¤ì¤¿JDK/SDK\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.5
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.3
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.4
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.2
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.4
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.5
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.2
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.2
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.2
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.1
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.2
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.4
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w1.0
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 861 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3¥¿¥°\fP\h'|\n(41u'\f3ƳÆþ¤µ¤ì¤¿JDK/SDK\fP
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@author\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@code}\fP\h'|\n(41u'1.5
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@docRoot}\fP\h'|\n(41u'1.3
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@deprecated\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@exception\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@inheritDoc}\fP\h'|\n(41u'1.4
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@link}\fP\h'|\n(41u'1.2
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@linkplain}\fP\h'|\n(41u'1.4
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@literal}\fP\h'|\n(41u'1.5
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@param\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@return\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@see\fP\h'|\n(41u'1.0
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@serial\fP\h'|\n(41u'1.2
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@serialData\fP\h'|\n(41u'1.2
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@serialField\fP\h'|\n(41u'1.2
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@since\fP\h'|\n(41u'1.1
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@throws\fP\h'|\n(41u'1.2
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2{@value}\fP\h'|\n(41u'1.4
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f2@version\fP\h'|\n(41u'1.0
++.fc
++.nr T. 1
++.T# 1
++.35
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-42
++.LP
++¥«¥¹¥¿¥à¡¦¥¿¥°¤Ë¤Ä¤¤¤Æ¤Ï¡¢\-tag¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 3
++@author\ name\-text
++\-author¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡ÖºîÀ®¼Ô¡×¥¨¥ó¥È¥ê¤òÄɲ䷤ơ¢»ØÄꤵ¤ì¤¿\f2name\-text\fP¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£1¤Ä¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ËÊ£¿ô¤Î\f2@author\fP¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£1¤Ä¤Î\f2@author\fP¥¿¥°¤Ë1¤Ä¤Î̾Á°¤ò»ØÄꤹ¤ë¤³¤È¤â¡¢Ê£¿ô¤Î̾Á°¤ò»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£Á°¼Ô¤Î¾ì¹ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ̾Á°¤È̾Á°¤Î´Ö¤Ë¥«¥ó¥Þ(\f2,\fP)¤È¶õÇòʸ»ú¤¬ÁÞÆþ¤µ¤ì¤Þ¤¹¡£¸å¼Ô¤Î¾ì¹ç¤Ï¡¢¥Æ¥­¥¹¥ÈÁ´ÂΤ¬¡¢²òÀϤµ¤ì¤ë¤³¤È¤Ê¤¯¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤½¤Î¤Þ¤Þ¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥«¥ó¥Þ¤Ç¤Ï¤Ê¤¯¡¢³Æ¸À¸ì¤ËÂбþ¤·¤¿Ì¾Á°¶èÀÚ¤êʸ»ú¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ë¤È¤­¤Ï¡¢1¤Ä¤Î¥¿¥°¤ËÊ£¿ô¤Î̾Á°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++.LP
++¾ÜºÙ¤Ï¡¢¥¿¥°¤ò»ÈÍѤǤ­¤ë¾ì½ê¤ª¤è¤Ó
++.na
++\f2@author¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@author¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++@deprecated\ deprecated\-text Ãí°Õ: @DeprecatedÃí¼á¤ò»ÈÍѤ·¤Æ¡¢¥×¥í¥°¥é¥àÍ×ÁǤòÈó¿ä¾©¤Ë¤Ç¤­¤Þ¤¹¡£
++.RE
++.LP
++¤³¤ÎAPI¤ÏÆ°ºî¤·Â³¤±¤Þ¤¹¤¬¡¢¤³¤ÎAPI¤ò»ÈÍѤ·¤Ê¤¤¤³¤È¤òÁ¦¤á¤ë¥³¥á¥ó¥È¤òÄɲä·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2deprecated\-text\fP¤ò¼çÀâÌÀ¤ÎÁ°¤Ë°ÜÆ°¤·¤Æ¥¤¥¿¥ê¥Ã¥¯¤Ë¤·¡¢¤½¤ÎÁ°¤ËÂÀ»ú¤Î·Ù¹ð¡Ö¿ä¾©¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¡×¤òÄɲä·¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¡¢¤Ä¤Þ¤ê³µÍס¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤ÇÍ­¸ú¤Ç¤¹¡£
++.LP
++\f2deprecated\-text\fP¤ÎºÇ½é¤Îʸ¤Ç¤Ï¡¢¾¯¤Ê¤¯¤È¤â¡¢¤½¤ÎAPI¤¬¿ä¾©¤µ¤ì¤Ê¤¯¤Ê¤Ã¤¿»þ´ü¤È¡¢ÂåÂؤȤ·¤Æ»ÈÍѤ¹¤ëAPI¤ò¥æ¡¼¥¶¡¼¤ËÄ󼨤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢¤³¤ÎºÇ½é¤Îʸ¤Î¤ß¤ò¡¢³µÍ×¥»¥¯¥·¥ç¥ó¤Èº÷°ú¤Ë¥³¥Ô¡¼¤·¤Þ¤¹¡£¤½¤Î¸å¤Îʸ¤Ç¤Ï¡¢¿ä¾©¤µ¤ì¤Ê¤¤Íýͳ¤òÀâÌÀ¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¤«¤ï¤ê¤ÎAPI¤ò»Ø¤·¼¨¤¹\f2{@link}\fP¥¿¥°(Javadoc 1.2°Ê¹ß¤Î¾ì¹ç)¤ò´Þ¤á¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@deprecated¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@deprecated¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 2
++o
++Javadoc 1.2°Ê¹ß¤Ç¤Ï¡¢\f2{@link}\fP¥¿¥°¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢É¬Íפʾì½ê¤Ë¥¤¥ó¥é¥¤¥ó¤Ç¥ê¥ó¥¯¤òºîÀ®¤Ç¤­¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++/**
++.fl
++ * @deprecated As of JDK 1.1, replaced by {@link #setBounds(int,int,int,int)}
++.fl
++ */
++.fl
++
++.fl
++\fP
++.fi
++.TP 2
++o
++Javadoc 1.1¤Ç¤Ï¡¢\f2@see\fP¥¿¥°(¥¤¥ó¥é¥¤¥ó¤ÏÉÔ²Ä)¤ò\f2@deprecated\fP¥¿¥°¤´¤È¤ËºîÀ®¤¹¤ë¤Î¤¬É¸½à¤Î·Á¼°¤Ç¤¹¡£
++.RE
++.LP
++¿ä¾©¤µ¤ì¤Ê¤¤¥¿¥°¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2@deprecated¥¿¥°\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/deprecation/index.html¤Î¥É¥­¥å¥á¥ó¥È¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++{@code\ text}
++\f2<code>{@literal}</code>\fP¤ÈƱÅù¤Ç¤¹¡£
++.LP
++¥Æ¥­¥¹¥È¤òHTML¥Þ¡¼¥¯¥¢¥Ã¥×¤Þ¤¿¤Ï¥Í¥¹¥È¤µ¤ì¤¿javadoc¥¿¥°¤È¤·¤Æ²ò¼á¤»¤º¤Ë¡¢\f2text\fP¤ò\f2¥³¡¼¥É\fP¡¦¥Õ¥©¥ó¥È¤Çɽ¼¨¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¤Ï¡¢¥Ñ¥é¥á¡¼¥¿¤Î·¿(\f2<Object>\fP)¡¢ÉÔÅù¹æ(\f23 < 4\fP)¡¢Ìð°õ(\f2<\-\fP)¤Ê¤É¤Ç¡¢Ä̾ï¤Î»³³ç¸Ì(\f2<\fP¤ª¤è¤Ó\f2>\fP)¤òHTML¥¨¥ó¥Æ¥£¥Æ¥£(\f2<\fP¤ª¤è¤Ó\f2>\fP)¤Î¤«¤ï¤ê¤Ë»ÈÍѤǤ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È
++.nf
++\f3
++.fl
++ \fP\f4{@code A<B>C}\fP\f3
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤Ï¡¢À¸À®¤µ¤ì¤¿HTML¥Ú¡¼¥¸¤Ç¡¢¼¡¤Î¤è¤¦¤Ë¤½¤Î¤Þ¤Þɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \fP\f4A<B>C\fP\f3
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤³¤³¤ÇÃíÌܤËÃͤ¹¤ë¤Î¤Ï¡¢\f2<B>\fP¤¬ÂÀ»ú¤È¤·¤Æ²ò¼á¤µ¤ì¤º¡¢¤½¤Î¥Õ¥©¥ó¥È¤Ï¥³¡¼¥É¡¦¥Õ¥©¥ó¥È¤Ë¤Ê¤ë¡¢¤È¤¤¤¦ÅÀ¤Ç¤¹¡£
++.LP
++¥³¡¼¥É¡¦¥Õ¥©¥ó¥È¤Ê¤·¤ÇƱ¤¸µ¡Ç½¤ò¼Â¸½¤¹¤ë¤Ë¤Ï¡¢\f2{@literal}\fP¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.TP 3
++{@docRoot}
++À¸À®¤µ¤ì¤ë¥Ú¡¼¥¸¤«¤é¤Î¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Î(À¸À®Àè)¥ë¡¼¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤ÎÁêÂХѥ¹¤òɽ¤·¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢Ãøºî¸¢¤Î¥Ú¡¼¥¸¤ä²ñ¼Ò¤Î¥í¥´¤Ê¤É¡¢À¸À®¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤«¤é»²¾È¤¹¤ë¥Õ¥¡¥¤¥ë¤òÁȤ߹þ¤à¤È¤­¤ËÊØÍø¤Ç¤¹¡£Ä̾ï¤Ï¡¢³Æ¥Ú¡¼¥¸¤ÎºÇ²¼Éô¤«¤éÃøºî¸¢¤Î¥Ú¡¼¥¸¤Ë¥ê¥ó¥¯¤·¤Þ¤¹¡£
++.LP
++¤³¤Î\f2{@docRoot}\fP¥¿¥°¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤â¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Ç¤â»ÈÍѤǤ­¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢@return¡¢@param¡¢@deprecated¤Ê¤É¤ÎǤ°Õ¤Î¥¿¥°¤Î¥Æ¥­¥¹¥ÈÉôʬ¤ò´Þ¤à¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¡¢¤Ä¤Þ¤ê³µÍס¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤ÇÍ­¸ú¤Ç¤¹¡£
++.RS 3
++.TP 3
++1.
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¤Ï¡¢¥Ø¥Ã¥À¡¼¡¢¥Õ¥Ã¥¿¡¼¡¢¤Þ¤¿¤Ï¥Ü¥È¥à¤Ï¼¡¤Î¤è¤¦¤ËÄêµÁ¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ javadoc \-bottom '<a href="{@docRoot}/copyright.html">Copyright</a>'
++.fl
++
++.fl
++\fP
++.fi
++.LP
++Ãí°Õ \- \f2{@docRoot}\fP¤òMakefileÆâ¤Ç¤³¤Î¤è¤¦¤ËÍøÍѤ¹¤ë¾ì¹ç¡¢°ìÉô¤ÎMakefile¥×¥í¥°¥é¥à¤Ç¤Ï¡¢Ãæ³ç¸Ì{ }ʸ»ú¤òÆÃÊ̤˥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢Inprise MAKE¥Ð¡¼¥¸¥ç¥ó5.2¤òWindows¾å¤Ç¼Â¹Ô¤¹¤ë¾ì¹ç¤Ï¡¢\f2{{@docRoot}}\fP¤Î¤è¤¦¤Ë¡¢Ãæ³ç¸Ì¤òÆó½Å¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤µ¤é¤Ë¡¢\f2\-bottom\fP¤Ê¤É¤Î¥ª¥×¥·¥ç¥ó¤ËÂФ¹¤ë°ú¿ô¤ò¡¢°ì½Å°úÍÑÉä¤Ç¤Ï¤Ê¤¯Æó½Å°úÍÑÉä¤Ç°Ï¤àɬÍפ⤢¤ê¤Þ¤¹(\f2href\fP°ú¿ô¤ò°Ï¤à°úÍÑÉä¤Ï¾Êά)¡£
++.TP 3
++2.
++¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎÃæ¤Ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * See the <a href="{@docRoot}/copyright.html">Copyright</a>.
++.fl
++ */
++.fl
++
++.fl
++\fP
++.fi
++.RE
++.LP
++¤³¤Î¥¿¥°¤¬É¬ÍפÊÍýͳ¤Ï¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤¬¡¢¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤ÈƱ¤¸¿¼¤µ¤ò»ý¤Ä³¬Áع½Â¤¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤µ¤ì¤ë¤«¤é¤Ç¤¹¡£¼°
++.nf
++\f3
++.fl
++ <a href="{@docRoot}/copyright.html">
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤Ï¡¢¼¡¤Î¤è¤¦¤Ë²ò·è¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ <a href="../../copyright.html"> for java/lang/Object.java
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤ª¤è¤Ó
++.nf
++\f3
++.fl
++ <a href="../../../copyright.html"> for java/lang/ref/Reference.java
++.fl
++
++.fl
++\fP
++.fi
++.LP
++.TP 3
++@exception\ class\-name\ description
++\f2@exception\fP¥¿¥°¤Ï¡¢\f2@throws\fP¤ÈƱµÁ¤Ç¤¹¡£
++.LP
++.TP 3
++{@inheritDoc}\
++ºÇ¤â¶á¤¤·Ñ¾µ²Äǽ¤Ê¥¯¥é¥¹¤Þ¤¿¤Ï¼ÂÁõ²Äǽ¤Ê¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é¡¢¤³¤Î¥¿¥°¤Î°ÌÃ֤ˤ¢¤ë¸½ºß¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ë¡¢¥É¥­¥å¥á¥ó¥È¤ò·Ñ¾µ(¥³¥Ô¡¼)¤·¤Þ¤¹¡£¤³¤Îµ¡Ç½¤Ë¤è¤ê¡¢¤è¤êÈÆÍÑŪ¤Ê¥³¥á¥ó¥È¤ò·Ñ¾µ¥Ä¥ê¡¼¤Î¾å°Ì¤Ëµ­½Ò¤·¡¢¥³¥Ô¡¼¤·¤¿¥Æ¥­¥¹¥È¤ò»ÈÍѤ·¤Æµ­½Ò¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++¤³¤Î¥¿¥°¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¼¡¤Î°ÌÃ֤ǤΤßÍ­¸ú¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++¥á¥½¥Ã¥É¤Î¼çÀâÌÀ¥Ö¥í¥Ã¥¯Æâ¡£¤³¤Î¾ì¹ç¡¢¼çÀâÌÀ¤Ï¡¢¾å°Ì³¬ÁؤΥ¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.TP 2
++o
++¥á¥½¥Ã¥É¤Î@return¡¢@param¡¢@throws¥¿¥°¤Î¥Æ¥­¥¹¥È°ú¿ôÆâ¡£¤³¤Î¾ì¹ç¡¢¥¿¥°¡¦¥Æ¥­¥¹¥È¤Ï¡¢¾å°Ì³¬ÁؤÎÂбþ¤¹¤ë¥¿¥°¤«¤é¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.RE
++.LP
++·Ñ¾µ³¬Áؤǥ³¥á¥ó¥È¤ò¸«¤Ä¤±¤ëÊýË¡¤Ë´Ø¤¹¤ëÀµ³Î¤ÊÀâÌÀ¤Ï¡¢¥á¥½¥Ã¥É¡¦¥³¥á¥ó¥È¤Î¼«Æ°¥³¥Ô¡¼¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥¿¥°¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢¥³¥á¥ó¥È¤Ï¡¢¤³¤Î¹à¤ÇÀâÌÀ¤¹¤ë¥ë¡¼¥ë¤Ë±þ¤¸¤Æ¡¢¼«Æ°Åª¤Ë·Ñ¾µ¤µ¤ì¤ë¤«¤É¤¦¤«¤¬·è¤Þ¤ê¤Þ¤¹¡£
++.LP
++.TP 3
++{@link\ package.class#member\ label}
++ɽ¼¨¥Æ¥­¥¹¥È\f2label\fP¤È¤È¤â¤Ë¥¤¥ó¥é¥¤¥ó¡¦¥ê¥ó¥¯¤òÁÞÆþ¤·¤Þ¤¹¡£label¤Ï¡¢»²¾È¥¯¥é¥¹¤Î»ØÄꤵ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥á¥ó¥Ð¡¼¤Î̾Á°¤Î¥É¥­¥å¥á¥ó¥È¤ò»Ø¤·¼¨¤·¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢@return¡¢@param¡¢@deprecated¤Ê¤É¤ÎǤ°Õ¤Î¥¿¥°¤Î¥Æ¥­¥¹¥ÈÉôʬ¤ò´Þ¤à¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¡¢¤Ä¤Þ¤ê³µÍס¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤ÇÍ­¸ú¤Ç¤¹¡£
++.LP
++¤³¤Î¥¿¥°¤Ï\f2@see\fP¤ÈÈó¾ï¤Ë¤è¤¯»÷¤Æ¤¤¤Þ¤¹¡£¤É¤Á¤é¤â¡¢\f2package.class\fP\f2#\fP\f2member\fP¤È\f2label\fP¤Î»²¾ÈÊýË¡¤¬Æ±¤¸¤Ç¡¢Í­¸ú¤Ê¹½Ê¸¤â¤Þ¤Ã¤¿¤¯Æ±¤¸¤Ç¤¹¡£¼ç¤Ê°ã¤¤¤Ï¡¢\f2{@link}\fP¤Ç¤Ï¡¢¡Ö´ØÏ¢¹àÌܡץ»¥¯¥·¥ç¥ó¤Ë¥ê¥ó¥¯¤¬ÇÛÃÖ¤µ¤ì¤ë¤«¤ï¤ê¤Ë¡¢¥¤¥ó¥é¥¤¥ó¡¦¥ê¥ó¥¯¤¬À¸À®¤µ¤ì¤ë¤È¤¤¤¦ÅÀ¤Ç¤¹¡£¤Þ¤¿¡¢¥¤¥ó¥é¥¤¥ó¡¦¥Æ¥­¥¹¥È¤Î¾¤ÎÉôʬ¤È¶èÊ̤¹¤ë¤¿¤á¤Ë¡¢\f2{@link}\fP¥¿¥°¤ÎºÇ½é¤ÈºÇ¸å¤ËÃæ³ç¸Ì¤òµ­½Ò¤·¤Þ¤¹¡£¥é¥Ù¥ë¤ÎÃæ¤Ç¡Ö}¡×¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢HTML¥¨¥ó¥Æ¥£¥Æ¥£É½µ­Ë¡¤Î¡Ö&#125;¡×¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++1¤Äʸ¤ÎÃæ¤Ç»ÈÍѤǤ­¤ë\f2{@link}\fP¥¿¥°¤Î¿ô¤ËÀ©¸Â¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤³¤Î¥¿¥°¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¼çÀâÌÀÉôʬ¡¢¤Þ¤¿¤Ï@deprecated¡¢@return¡¢@param¤Ê¤É¤ÎǤ°Õ¤Î¥¿¥°¤Î¥Æ¥­¥¹¥ÈÉôʬ¤Ç»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥á¥ó¥È¤Ç¤Ï\f2getComponentAt(int,int)\fP¥á¥½¥Ã¥É¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++Use the {@link #getComponentAt(int, int) getComponentAt} method.
++.fl
++
++.fl
++\fP
++.fi
++.LP
++ɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ç¤Ï¡¢¾å¤Î¥³¥á¥ó¥È¤«¤é¼¡¤ÎHTML¤¬À¸À®¤µ¤ì¤Þ¤¹(¤³¤Î¥³¥á¥ó¥È¤¬Æ±¤¸¥Ñ¥Ã¥±¡¼¥¸¤ÎÊ̤Υ¯¥é¥¹¤ò»²¾È¤·¤Æ¤¤¤ë¾ì¹ç)¡£
++.nf
++\f3
++.fl
++Use the <a href="Component.html#getComponentAt(int, int)">getComponentAt</a> method.
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤Ï¡¢Web¥Ú¡¼¥¸¾å¤Ç¤Ï¼¡¤Î¤è¤¦¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++Use the getComponentAt method.
++.fl
++
++.fl
++\fP
++.fi
++.LP
++\f2{@link}\fP¤ò³ÈÄ¥¤·¤Æ¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Ê¤¤¥¯¥é¥¹¤Ë¥ê¥ó¥¯¤¹¤ë¤Ë¤Ï¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2{@link}¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#{@link}¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.TP 3
++{@linkplain\ package.class#member\ label}
++¥ê¥ó¥¯¤Î¥é¥Ù¥ë¤¬¥³¡¼¥É¡¦¥Õ¥©¥ó¥È¤Ç¤Ï¤Ê¤¯¥×¥ì¡¼¥ó¡¦¥Æ¥­¥¹¥È¤Çɽ¼¨¤µ¤ì¤ëÅÀ°Ê³°¤Ï\f2{@link}\fP¤ÈƱ¤¸¤Ç¤¹¡£¥é¥Ù¥ë¤¬¥×¥ì¡¼¥ó¡¦¥Æ¥­¥¹¥È¤Çµ­½Ò¤µ¤ì¤Æ¤¤¤ë¤ÈÊØÍø¤Ç¤¹¡£Îã:
++.nf
++\f3
++.fl
++ Refer to {@linkplain add() the overridden method}.
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤Ï¼¡¤Î¤è¤¦¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++Refer to the overridden method.
++.LP
++.TP 3
++{@literal\ text}
++¥Æ¥­¥¹¥È¤òHTML¥Þ¡¼¥¯¥¢¥Ã¥×¤Þ¤¿¤Ï¥Í¥¹¥È¤µ¤ì¤¿javadoc¥¿¥°¤È¤·¤Æ²ò¼á¤»¤º¤Ë¡¢\f2text\fP¤òɽ¼¨¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¤Ï¡¢¥Ñ¥é¥á¡¼¥¿¤Î·¿(\f2<Object>\fP)¡¢ÉÔÅù¹æ(\f23 < 4\fP)¡¢Ìð°õ(\f2<\-\fP)¤Ê¤É¤Ç¡¢Ä̾ï¤Î»³³ç¸Ì(\f2<\fP¤ª¤è¤Ó\f2>\fP)¤òHTML¥¨¥ó¥Æ¥£¥Æ¥£(\f2<\fP¤ª¤è¤Ó\f2>\fP)¤Î¤«¤ï¤ê¤Ë»ÈÍѤǤ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È
++.nf
++\f3
++.fl
++ \fP\f4{@literal A<B>C}\fP\f3
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤Ï¡¢¥Ö¥é¥¦¥¶¤ÇÀ¸À®¤µ¤ì¤¿HTML¥Ú¡¼¥¸¤Ë¼¡¤Î¤è¤¦¤Ë¤½¤Î¤Þ¤Þɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++\f2\ \ \ \ \ \fPA<B>C
++.LP
++¤³¤³¤ÇÃíÌܤËÃͤ¹¤ë¤Î¤Ï¡¢\f2<B>\fP¤¬ÂÀ»ú¤È¤·¤Æ²ò¼á¤µ¤ì¤º¡¢¤½¤Î¥Õ¥©¥ó¥È¤Ï¥³¡¼¥É¡¦¥Õ¥©¥ó¥È¤Ë¤Ê¤é¤Ê¤¤¡¢¤È¤¤¤¦ÅÀ¤Ç¤¹¡£
++.LP
++¥³¡¼¥É¡¦¥Õ¥©¥ó¥È¤ÇƱ¤¸µ¡Ç½¤ò¼Â¸½¤¹¤ë¤Ë¤Ï¡¢\f2{@code}\fP¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.TP 3
++@param\ parameter\-name description
++¡Ö¥Ñ¥é¥á¡¼¥¿¡×¥»¥¯¥·¥ç¥ó¤Ë¡¢»ØÄꤵ¤ì¤¿\f2parameter\-name\fP¤Î¸å¤Ë»ØÄꤵ¤ì¤¿\f2description\fP¤ò³¤±¤Æ¥Ñ¥é¥á¡¼¥¿¤òÄɲä·¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤òµ­½Ò¤¹¤ë¤È¤­¤Ë¤Ï¡¢\f2description\fP¤òÊ£¿ô¹Ô¤Ë¤ï¤¿¤Ã¤Æµ­½Ò¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤Þ¤¿¤Ï¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Ç¤Î¤ßÍ­¸ú¤Ç¤¹¡£
++.LP
++\f2parameter\-name\fP¤Ï¡¢¥á¥½¥Ã¥É¤Þ¤¿¤Ï¥³¥ó¥¹¥È¥é¥¯¥¿¤Ç¤Î¥Ñ¥é¥á¡¼¥¿¤Î̾Á°¤«¡¢¥¯¥é¥¹¡¢¥á¥½¥Ã¥É¤Þ¤¿¤Ï¥³¥ó¥¹¥È¥é¥¯¥¿¤Î·¿¥Ñ¥é¥á¡¼¥¿¤Î̾Á°¤Ë¤Ê¤ê¤Þ¤¹¡£»³³ç¸Ì¤Ç¤³¤Î¥Ñ¥é¥á¡¼¥¿Ì¾¤ò°Ï¤ß¡¢·¿¥Ñ¥é¥á¡¼¥¿¤ò»ÈÍѤ¹¤ë¤³¤È¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++¥¯¥é¥¹¤Î·¿¥Ñ¥é¥á¡¼¥¿¤ÎÎã:
++.nf
++\f3
++.fl
++ /**
++.fl
++ * @param <E> Type of element stored in a list
++.fl
++ */
++.fl
++ public interface List<E> extends Collection<E> {
++.fl
++ }
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¥á¥½¥Ã¥É¤Î·¿¥Ñ¥é¥á¡¼¥¿¤ÎÎã:
++.nf
++\f3
++.fl
++ /**
++.fl
++ * @param string the string to be converted
++.fl
++ * @param type the type to convert the string to
++.fl
++ * @param <T> the type of the element
++.fl
++ * @param <V> the value of the element
++.fl
++ */
++.fl
++ <T, V extends T> V convert(String string, Class<T> type) {
++.fl
++ }
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@param¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@param¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.TP 3
++@return\ description
++¡ÖÌá¤êÃ͡ץ»¥¯¥·¥ç¥ó¤òÄɲ䷤ơ¢\f2description\fP¤Î¥Æ¥­¥¹¥È¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£¤³¤Î¥Æ¥­¥¹¥È¤Ç¤Ï¡¢Ìá¤êÃͤη¿¤È¡¢¼è¤êÆÀ¤ëÃͤÎÈϰϤˤĤ¤¤Æµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¤Î¤ßÍ­¸ú¤Ç¤¹¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@return¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@return¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.TP 3
++@see\ reference
++¡Ö´ØÏ¢¹àÌܡ׸«½Ð¤·¤òÄɲ䷤ơ¢\f2reference\fP¤ò»Ø¤¹¥ê¥ó¥¯¡¢¤Þ¤¿¤Ï¥Æ¥­¥¹¥È¡¦¥¨¥ó¥È¥ê¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£1¤Ä¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ë¤ÏǤ°Õ¤Î¿ô¤Î\f2@see\fP¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤½¤ì¤é¤Ï¤¹¤Ù¤ÆƱ¤¸¸«½Ð¤·¤Î²¼¤Ë¥°¥ë¡¼¥×²½¤µ¤ì¤Þ¤¹¡£\f2@see\fP¥¿¥°¤Ë¤Ï¡¢¼¡¤Î3¤Ä¤Î¥¿¥¤¥×¤Î·Á¼°¤¬¤¢¤ê¤Þ¤¹¡£ºÇ¤â¤è¤¯»ÈÍѤµ¤ì¤ë¤Î¤Ï¡¢3ÈÖÌܤηÁ¼°¤Ç¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¡¢¤Ä¤Þ¤ê³µÍס¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ÇÍ­¸ú¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥á¥ó¥Ð¡¼¤ËÂФ¹¤ë¥¤¥ó¥é¥¤¥ó¡¦¥ê¥ó¥¯¤òʸÃæ¤ËÁÞÆþ¤¹¤ëÊýË¡¤Ï¡¢\f2{@link}\fP¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 3
++@see "string"
++\f2string\fP¤Î¥Æ¥­¥¹¥È¡¦¥¨¥ó¥È¥ê¤òÄɲä·¤Þ¤¹¡£¥ê¥ó¥¯¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£\f2string\fP¤Ï¡¢½ñÀÒ¤Þ¤¿¤ÏURL¤Ç¤Ï¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¾ðÊó¤Î»²¾ÈÀè¤Ç¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢ºÇ½é¤Îʸ»ú¤¬Æó½Å°úÍÑÉä(\f2"\fP)¤«¤É¤¦¤«¤òÄ´¤Ù¤Æ¡¢¤³¤Î·Á¼°¤òÁ°½Ò¤Î·Á¼°¤È¶èÊ̤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ @see "The Java Programming Language"
++.fl
++
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤Ï¼¡¤Î¤è¤¦¤Ê¥Æ¥­¥¹¥È¤òÀ¸À®¤·¤Þ¤¹¡£
++.RE
++.RE
++.RS 3
++.RS 3
++.RS 3
++.RS 3
++.TP 3
++´ØÏ¢¹àÌÜ:
++"The Java Programming Language"
++.RE
++.RE
++.TP 3
++@see <a href="URL#value">label</a>
++\f2URL\fP#\f2value\fP¤ÇÄêµÁ¤µ¤ì¤¿¤È¤ª¤ê¤Ë¥ê¥ó¥¯¤òÄɲä·¤Þ¤¹¡£\f2URL\fP#\f2value\fP¤Ï¡¢ÁêÂÐURL¤Þ¤¿¤ÏÀäÂÐURL¤Ç¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢ºÇ½é¤Îʸ»ú¤¬¡Ö¤è¤ê¾®¤µ¤¤¡×µ­¹æ(\f2<\fP)¤«¤É¤¦¤«¤òÄ´¤Ù¤Æ¡¢¤³¤Î·Á¼°¤ò¾¤Î·Á¼°¤È¶èÊ̤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ @see <a href="spec.html#section">Java Spec</a>
++.fl
++\fP
++.fi
++¤³¤ì¤Ï¼¡¤Î¤è¤¦¤Ê¥ê¥ó¥¯¤òÀ¸À®¤·¤Þ¤¹¡£
++.RS 3
++.TP 3
++´ØÏ¢¹àÌÜ:
++Java Spec
++.RE
++.TP 3
++@see\ package.class#member\ label
++ɽ¼¨¥Æ¥­¥¹¥È\f2label\fP¤È¤È¤â¤Ë¥ê¥ó¥¯¤òÄɲä·¤Þ¤¹¡£¤³¤Î¥ê¥ó¥¯¤Ï¡¢»ØÄꤵ¤ì¤¿Ì¾Á°¤ò»ý¤Ä¡¢»²¾È¤µ¤ì¤Æ¤¤¤ëJava¸À¸ì¤Î¥á¥ó¥Ð¡¼¤Î¥É¥­¥å¥á¥ó¥È¤ò»Ø¤·¤Þ¤¹¡£\f2label\fP¤Ï¾Êά²Äǽ¤Ç¤¹¡£label¤ò¾Êά¤¹¤ë¤È¡¢Ì¾Á°¤¬¤«¤ï¤ê¤Ëɽ¼¨¥Æ¥­¥¹¥È¤È¤·¤ÆŬÀÚ¤Ëû½Ì¤µ¤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£Ì¾Á°¤¬É½¼¨¤µ¤ì¤ëÊýË¡¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£\-noqualifier¤ò»ÈÍѤ¹¤ë¤È¡¢¤³¤Îɽ¼¨¥Æ¥­¥¹¥È¤«¤é¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬Á´ÂÎŪ¤Ëºï½ü¤µ¤ì¤Þ¤¹¡£¥é¥Ù¥ë¤Ï¡¢¼«Æ°À¸À®¤µ¤ì¤ëɽ¼¨¥Æ¥­¥¹¥È¤È¤Ï°Û¤Ê¤ëɽ¼¨¥Æ¥­¥¹¥È¤Ë¤¹¤ë¾ì¹ç¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.LP
++¥Ð¡¼¥¸¥ç¥ó1.2¤Î¤ß¤Ï¡¢¥é¥Ù¥ë¤Ç¤Ï¤Ê¤¯¡¢Ì¾Á°¤¬<code> HTML¥¿¥°Æâ¤Ë¼«Æ°Åª¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£1.2.2¤«¤é¤Ï¡¢¥é¥Ù¥ë¤ò»ÈÍѤ¹¤ë¤«¤·¤Ê¤¤¤«¤Ë¤«¤«¤ï¤é¤º¡¢<code>¤Ï¾ï¤Ëɽ¼¨¥Æ¥­¥¹¥È¤ò°Ï¤à¤«¤¿¤Á¤Ç¡¢´Þ¤Þ¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f4package.class\fP\f4#\fP\f4member\fP¤Ë¤Ï¡¢»²¾È¤µ¤ì¤Æ¤¤¤ëǤ°Õ¤ÎÍ­¸ú¤Ê¥×¥í¥°¥é¥àÍ×ÁǤÎ̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤Î̾Á°¤Ç¤¹¡£¤¿¤À¤·¡¢¥á¥ó¥Ð¡¼Ì¾¤ÎÁ°¤Îʸ»ú¤Ï¡¢¥·¥ã¡¼¥×µ­¹æ(\f2#\fP)¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2class\fP¤Ï¡¢Ç¤°Õ¤Î¥È¥Ã¥×¥ì¥Ù¥ë¤Þ¤¿¤Ï¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òɽ¤·¤Þ¤¹¡£\f2member\fP¤Ï¡¢Ç¤°Õ¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤òɽ¤·¤Þ¤¹(¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)¡£¤³¤Î̾Á°¤¬¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¤½¤Î̾Á°¤Ø¤Î¥ê¥ó¥¯¤ò¼«Æ°Åª¤ËºîÀ®¤·¤Þ¤¹¡£³°Éô»²¾È¥¯¥é¥¹¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¤Ë¤Ï¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£»²¾È¥¯¥é¥¹¤Ë°¤·¤Æ¤¤¤Ê¤¤Ì¾Á°¤Î¥É¥­¥å¥á¥ó¥È¤ò»²¾È¤¹¤ë¤Ë¤Ï¡¢Â¾¤Î2¤Ä¤Î\f2@see\fP·Á¼°¤Î¤É¤Á¤é¤«¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î°ú¿ô¤Ë¤Ä¤¤¤Æ¤Ï¡¢¸å½Ò¤Î̾Á°¤Î»ØÄê¤Ç¾Ü¤·¤¯ÀâÌÀ¤·¤Þ¤¹¡£
++.TP 2
++o
++\f4label\fP¤Ï¡¢¾Êά²Äǽ¤Ê¥Æ¥­¥¹¥È¤Ç¡¢¥ê¥ó¥¯¤Î¥é¥Ù¥ë¤È¤·¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£\f2label\fP¤Ë¤Ï¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\f2label\fP¤ò¾Êά¤¹¤ë¤È¡¢\f2package.class.member\fP¤¬¡¢¸½ºß¤Î¥¯¥é¥¹¤ª¤è¤Ó¥Ñ¥Ã¥±¡¼¥¸¤Ë±þ¤¸¤ÆŬÀÚ¤Ëû½Ì¤µ¤ì¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£Ì¾Á°¤¬É½¼¨¤µ¤ì¤ëÊýË¡¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++¶õÇòʸ»ú¤¬¡¢\f2package.class\fP\f2#\fP\f2member\fP¤È\f2label\fP¤Î´Ö¤Î¶èÀÚ¤êʸ»ú¤Ë¤Ê¤ê¤Þ¤¹¡£³ç¸Ì¤ÎÆ⦤ζõÇòʸ»ú¤Ï¥é¥Ù¥ë¤ÎÀèƬ¤È¤Ï²ò¼á¤µ¤ì¤Ê¤¤¤¿¤á¡¢¥á¥½¥Ã¥É¤Î¥Ñ¥é¥á¡¼¥¿´Ö¤Ë¶õÇòʸ»ú¤òÆþ¤ì¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£
++.RE
++.LP
++\f3Îã\fP \- ¤³¤ÎÎã¤Ç¤Ï¡¢\f2@see\fP¥¿¥°(\f2Character\fP¥¯¥é¥¹Æâ)¤¬¡¢\f2String\fP¥¯¥é¥¹¤Î\f2equals\fP¥á¥½¥Ã¥É¤ò»²¾È¤·¤Æ¤¤¤Þ¤¹¡£¥¿¥°¤Ë¤Ï¡¢Ì¾Á°¡Ö\f2String#equals(Object)\fP¡×¤È¥é¥Ù¥ë¡Ö\f2equals\fP¡×¤ÎξÊý¤Î°ú¿ô¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * @see String#equals(Object) equals
++.fl
++ */
++.fl
++\fP
++.fi
++ɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ï¡¢¼¡¤Î¤è¤¦¤ÊHTML¤òÀ¸À®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++<dl>
++.fl
++<dt><b>See Also:</b>
++.fl
++<dd><a href="../../java/lang/String#equals(java.lang.Object)"><code>equals<code></a>
++.fl
++</dl>
++.fl
++\fP
++.fi
++¤³¤ì¤Ï¡¢¥Ö¥é¥¦¥¶¤Ç¤Ï¼¡¤Î¤è¤¦¤Ëɽ¼¨¤µ¤ì¡¢¥é¥Ù¥ë¤¬É½¼¨¥ê¥ó¥¯¡¦¥Æ¥­¥¹¥È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.RS 3
++.TP 3
++´ØÏ¢¹àÌÜ:
++equals
++.RE
++.LP
++\f3̾Á°¤Î»ØÄê\fP \- ¤³¤Î\f2package.class\fP\f2#\fP\f2member\fP¤È¤¤¤¦Ì¾Á°¤Ï¡¢\f2java.lang.String#toUpperCase()\fP¤Î¤è¤¦¤Ê´°Á´½¤¾þ̾¤Ë¤¹¤ë¤³¤È¤â¡¢\f2String#toUpperCase()\fP¤ä\f2#toUpperCase()\fP¤Î¤è¤¦¤ÊÈó´°Á´½¤¾þ̾¤Ë¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£Ì¾Á°¤¬´°Á´¤Ë¤Ï½¤¾þ¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢Java¥³¥ó¥Ñ¥¤¥é¤ÎÄ̾ï¤Î¸¡º÷½ç½ø¤Ç¤½¤Î̾Á°¤ò¸¡º÷¤·¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¸å½Ò¤Î@see¤Î¸¡º÷½ç½ø¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£Ì¾Á°¤Ë¤Ï¡¢¥á¥½¥Ã¥É¤ÎÊ£¿ô¤Î°ú¿ô¤Î´Ö¤Ê¤É¡¢³ç¸Ì¤ÎÆ⦤Ǥ¢¤ì¤Ð¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++¡ÖÉôʬŪ¤Ë½¤¾þ¡×¤·¤¿Ã»¤¤Ì¾Á°¤ò»ØÄꤹ¤ë¤³¤È¤ÎÍøÅÀ¤Ï¡¢ÆþÎϤ¹¤ëʸ»ú¿ô¤¬¸º¤ë¤³¤È¤ä¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤¬Æɤߤ䤹¤¯¤Ê¤ë¤³¤È¤Ç¤¹¡£¼¡¤Îɽ¤Ë¡¢ÍÍ¡¹¤Ê·Á¼°¤Î̾Á°¤ò¼¨¤·¤Þ¤¹¡£¤³¤³¤Ç¡¢\f2Class\fP¤Ë¤Ï¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ò¡¢\f2Type\fP¤Ë¤Ï¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢ÇÛÎ󡢤ޤ¿¤Ï¥×¥ê¥ß¥Æ¥£¥Ö¤ò¡¢\f2method\fP¤Ë¤Ï¥á¥½¥Ã¥É¤Þ¤¿¤Ï¥³¥ó¥¹¥È¥é¥¯¥¿¤ò¡¢¤½¤ì¤¾¤ì»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80
++.nr 34 \n(.lu
++.eo
++.am 80
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/2u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f4@see\fP\f3\ \fP\f4package.class#member\fP\f3¤Î°ìÈÌŪ¤Ê·Á¼°\fP
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/2u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3¸½ºß¤Î¥¯¥é¥¹¤Î¥á¥ó¥Ð¡¼¤ò»²¾È¤¹¤ë\ \ \ \ \ \ \fP
++.br
++\f2@see\fP\ \f2#\fP\f2field\fP
++.br
++\f2@see\fP\ \f2#\fP\f2method(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
++.br
++\f2@see\fP\ \f2#\fP\f2constructor(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/2u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3¸½ºß¤Î¡¢¤Þ¤¿¤Ï¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤ÎÊ̤Υ¯¥é¥¹¤ò»²¾È¤¹¤ë\ \ \ \ \ \ \ \ \fP
++.br
++\f2@see\fP\ \f2Class\fP\f2#\fP\f2field\fP
++.br
++\f2@see\fP\ \f2Class\fP\f2#\fP\f2method(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2Class\fP\f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
++.br
++\f2@see\fP\ \f2Class\fP\f2#\fP\f2constructor(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2Class\fP\f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
++.br
++\f2@see\fP\ \f2Class.NestedClass\fP
++.br
++\f2@see\fP\ \f2Class\fP
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/2u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3Ê̤Υѥ屡¼¥¸¤ÎÍ×ÁǤò»²¾È¤¹¤ë\fP\ (´°Á´½¤¾þ)\ \ \ \ .br
++\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2field\fP
++.br
++\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2method(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2method(Type\ argname,\ Type\ argname,...)\fP
++.br
++\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2constructor(Type,\ Type,...)\fP
++.br
++\f2@see\fP\ \f2package.Class\fP\f2#\fP\f2constructor(Type\ argname,\ Type\ argname,...)\fP
++.br
++\f2@see\fP\ \f2package.Class.NestedClass\fP
++.br
++\f2@see\fP\ \f2package.Class\fP
++.br
++\f2@see\fP\ \f2package\fP
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.80
++.rm 80
++.nr 38 \n(a-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(b-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(c-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(d-
++.if \n(80<\n(38 .nr 80 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr TW \n(80
++.if t .if \n(TW>\n(.li .tm Table at line 1352 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-58
++.LP
++¾å¤Îɽ¤ËÂФ¹¤ëÊä­»ö¹à¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++ºÇ½é¤Î¥¿¥¤¥×¤Î·Á¼°(¥Ñ¥Ã¥±¡¼¥¸¤È¥¯¥é¥¹¤ò¾Êά)¤Î¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¸½ºß¤Î¥¯¥é¥¹¤Î³¬ÁؤΤߤò¸¡º÷¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¸½ºß¤Î¥¯¥é¥¹¤«¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¤½¤Î¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤«¥¹¡¼¥Ñ¡¼¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¤Þ¤¿¤Ï¤½¤Î³°Â¦¤ò°Ï¤ó¤Ç¤¤¤ë¥¯¥é¥¹¤«¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤«¤é¥á¥ó¥Ð¡¼¤ò¸¡º÷¤·¤Þ¤¹(¸¡º÷¼ê½ç1\-3)¡£¸½ºß¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¾¤ÎÉôʬ¤ä¡¢Â¾¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¸¡º÷¤·¤Þ¤»¤ó(¸¡º÷¼ê½ç4\-5)¡£
++.TP 2
++o
++¥á¥½¥Ã¥É¤Þ¤¿¤Ï¥³¥ó¥¹¥È¥é¥¯¥¿¤ÎÆþÎÏ»þ¤Ë¡¢\f2getValue\fP¤Î¤è¤¦¤Ë³ç¸Ì¤Ê¤·¤Î̾Á°¤ò»ÈÍѤ·¤¿¾ì¹ç¡¢Æ±¤¸Ì¾Á°¤Î¥Õ¥£¡¼¥ë¥É¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤±¤ì¤Ð¡¢Javadoc¥Ä¡¼¥ë¤Ï¤½¤Î̾Á°¤Ø¤Î¥ê¥ó¥¯¤òÀµ¤·¤¯ºîÀ®¤·¤Þ¤¹¤¬¡¢³ç¸Ì¤È°ú¿ô¤ÎÄɲäòÂ¥¤¹·Ù¹ð¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥á¥½¥Ã¥É¤¬¥ª¡¼¥Ð¡¼¥í¡¼¥É¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¸¡º÷¤ÇºÇ½é¤Ë¸«¤Ä¤«¤Ã¤¿¥á¥½¥Ã¥É¤Ë¥ê¥ó¥¯¤·¤Þ¤¹¡£·ë²Ì¤ÏÁ°¤â¤Ã¤ÆÆÃÄê¤Ç¤­¤Þ¤»¤ó¡£
++.TP 2
++o
++¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¤Ï¡¢¤¹¤Ù¤Æ¤Î·Á¼°¤Ë¤Ä¤¤¤Æ¡¢\f2outer\fP\f2.\fP\f2inner\fP¤È¤·¤Æ»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Ã±½ã¤Ë\f2inner\fP¤È¤Ï¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++¤¹¤Ç¤Ë½Ò¤Ù¤¿¤è¤¦¤Ë¡¢¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤È¤Î´Ö¤Î¶èÀÚ¤êʸ»ú¤È¤·¤Æ¤Ï¡¢¥É¥Ã¥È(\f2.\fP)¤Ç¤Ï¤Ê¤¯¥·¥ã¡¼¥×ʸ»ú(\f2#\fP)¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ë»ØÄꤹ¤ë¤È¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¤¢¤¤¤Þ¤¤¤µ¤ò²ò·è¤Ç¤­¤Þ¤¹¡£¥É¥Ã¥È¤Ï¡¢¥¯¥é¥¹¡¢¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¡¢¥Ñ¥Ã¥±¡¼¥¸¡¢¤ª¤è¤Ó¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤ò¶èÀڤ뤿¤á¤Ë¤â»ÈÍѤµ¤ì¤ë¤«¤é¤Ç¤¹¡£¤¿¤À¤·¡¢Javadoc¥Ä¡¼¥ë¤Ç¤Ï°ìÈ̤˵öÍÆÈϰϤ¬¹­¤¯¡¢¤¢¤¤¤Þ¤¤¤µ¤¬¤Ê¤±¤ì¤Ð¥É¥Ã¥È¤ÏÀµ¤·¤¯²òÀϤµ¤ì¤Þ¤¹¡£¤½¤Î¾ì¹ç¤Ç¤â¡¢·Ù¹ð¤Ïɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.RE
++.LP
++\f3@see¤Î¸¡º÷½ç½ø\fP \- Javadoc¥Ä¡¼¥ë¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(.java)¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥Õ¥¡¥¤¥ë(package.html¤Þ¤¿¤Ïpackage\-info.java)¤Þ¤¿¤Ï³µÍ×¥Õ¥¡¥¤¥ë(overview.html)¤Ë´Þ¤Þ¤ì¤ë\f2@see\fP¥¿¥°¤ò½èÍý¤·¤Þ¤¹¡£¸å¼Ô¤Î2¤Ä¤Î¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢´°Á´½¤¾þ¤Î̾Á°¤ò\f2@see\fP¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢´°Á´½¤¾þ¤Î̾Á°¡¢¤Þ¤¿¤ÏÉôʬ½¤¾þ¤Î̾Á°¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢´°Á´½¤¾þ\f2¤Ç¤Ê¤¤\fP̾Á°¤¬µ­½Ò¤µ¤ì¤¿\f2@see\fP¥¿¥°¤ò\f2.java\fP¥Õ¥¡¥¤¥ëÆâ¤Ç¸«¤Ä¤±¤ë¤È¡¢Java¥³¥ó¥Ñ¥¤¥é¤ÈƱ¤¸½ç½ø¤Ç»ØÄꤵ¤ì¤¿Ì¾Á°¤ò¸¡º÷¤·¤Þ¤¹(¤¿¤À¤·¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢ÆÃÄê¤Î̾Á°¶õ´Ö¤Î¤¢¤¤¤Þ¤¤¤µ¤ò¸¡½Ð¤·¤Þ¤»¤ó¡£¤³¤ì¤Ï¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤Ë¤³¤ì¤é¤Î¥¨¥é¡¼¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤¤³¤È¤òÁ°Äó¤È¤·¤Æ¤¤¤ë¤¿¤á¤Ç¤¹)¡£¤³¤Î¸¡º÷½ç½ø¤Ï¡¢\f2Java¸À¸ì»ÅÍÍ\fP¤ÇÀµ¼°¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢´ØÏ¢¤¹¤ë¥¯¥é¥¹¤È¥Ñ¥Ã¥±¡¼¥¸¡¢¤ª¤è¤Ó¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤¿¥¯¥é¥¹¤È¥Ñ¥Ã¥±¡¼¥¸¤Î¤¹¤Ù¤Æ¤«¤é¤½¤Î̾Á°¤ò¸¡º÷¤·¤Þ¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢¼¡¤Î½ç½ø¤Ç¸¡º÷¤·¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.
++¸½ºß¤Î¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹
++.TP 3
++2.
++³°Â¦¤ò°Ï¤ó¤Ç¤¤¤ë¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹(ºÇ¤â¶á¤¤¤â¤Î¤«¤é¸¡º÷)
++.TP 3
++3.
++¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤È¥¹¡¼¥Ñ¡¼¥¤¥ó¥¿¥Õ¥§¡¼¥¹(ºÇ¤â¶á¤¤¤â¤Î¤«¤é¸¡º÷)
++.TP 3
++4.
++¸½ºß¤Î¥Ñ¥Ã¥±¡¼¥¸
++.TP 3
++5.
++¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹(importʸ¤Î½ç½ø¤Ë½¾¤Ã¤Æ¸¡º÷)
++.RE
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢³Æ¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¼ê½ç1\-3¤òºÆµ¢Åª¤ËŬÍѤ·¤Ê¤¬¤é¡¢°ìÃפ¹¤ë̾Á°¤¬¸«¤Ä¤«¤ë¤Þ¤Ç¸¡º÷¤ò³¤±¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤Þ¤º¸½ºß¤Î¥¯¥é¥¹¤ò¸¡º÷¤·¡¢¼¡¤Ë¤½¤Î³°Â¦¤ò°Ï¤ó¤Ç¤¤¤ë¥¯¥é¥¹E¤ò¸¡º÷¤·¤¿¸å¡¢E¤Î¥¹¡¼¥Ñ¡¼¥¯¥é¥¹¤ò¸¡º÷¤·¤Æ¤«¤é¡¢E¤ò°Ï¤ó¤Ç¤¤¤ë¥¯¥é¥¹¤ò¸¡º÷¤·¤Þ¤¹¡£ ¼ê½ç4¤È5¤Ç¤Ï¡¢1¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸Æâ¤Î¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ò¸¡º÷¤¹¤ë½ç½ø¤Ï·è¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó(¤½¤Î½ç½ø¤Ï¡¢¸Ä¡¹¤Î¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹)¡£¼ê½ç5¤Ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢java.lang¤ò¸¡º÷¤·¤Þ¤¹¡£¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢¤¹¤Ù¤Æ¤Î¥×¥í¥°¥é¥à¤Ë¼«Æ°Åª¤Ë¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤ë¤«¤é¤Ç¤¹¡£
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢É¬¤º¤·¤â¥µ¥Ö¥¯¥é¥¹¤ò¸¡º÷¤¹¤ë¤È¤Ï¸Â¤ê¤Þ¤»¤ó¡£¤Þ¤¿¡¢Javadoc¤Î¼Â¹ÔÃæ¤Ë¾¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤ë¾ì¹ç¤Ç¤â¡¢Â¾¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸¡º÷¤·¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2@see\fP¥¿¥°¤¬\f2java.awt.event.KeyEvent\fP¥¯¥é¥¹Æâ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤Æ¡¢\f2java.awt\fP¥Ñ¥Ã¥±¡¼¥¸Æâ¤Î¤¢¤ë̾Á°¤ò»²¾È¤·¤Æ¤¤¤Æ¤â¡¢¤½¤Î¥¯¥é¥¹¤¬¥¤¥ó¥Ý¡¼¥È¤·¤Ê¤¤¤«¤®¤êJavadoc¤Ï¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸¡º÷¤·¤Þ¤»¤ó¡£
++.LP
++\f3̾Á°¤¬É½¼¨¤µ¤ì¤ëÊýË¡\fP \- \f2label\fP¤ò¾Êά¤¹¤ë¤È¡¢\f2package.class.member\fP¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£°ìÈ̤ˡ¢¤³¤ì¤Ï¸½ºß¤Î¥¯¥é¥¹¤ª¤è¤Ó¥Ñ¥Ã¥±¡¼¥¸¤Ë±þ¤¸¤ÆŬÀÚ¤Ëû½Ì¤µ¤ì¤Þ¤¹¡£¡Öû½Ì¤µ¤ì¤ë¡×¤È¤Ï¡¢É¬Í׺Ǿ®¸Â¤Î̾Á°¤Î¤ß¤¬É½¼¨¤µ¤ì¤ë¤È¤¤¤¦¤³¤È¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2String.toUpperCase()\fP¥á¥½¥Ã¥É¤Ë¡¢Æ±¤¸¥¯¥é¥¹¤Î¥á¥ó¥Ð¡¼¤Ø¤Î»²¾È¤È¾¤Î¥¯¥é¥¹¤Î¥á¥ó¥Ð¡¼¤Ø¤Î»²¾È¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¯¥é¥¹Ì¾¤¬É½¼¨¤µ¤ì¤ë¤Î¤Ï¸å¼Ô¤Î¥±¡¼¥¹¤Î¤ß¤Ç¤¹(¼¡¤Îɽ¤ò»²¾È)¡£
++.LP
++¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÁ´ÂÎŪ¤Ëºï½ü¤¹¤ë¤Ë¤Ï¡¢\-noqualifier¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81 82
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f4String.toUpperCase()\fP\f3¤Ç¤ÎÎã\fP
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f2@see\fP¥¿¥°¤¬Æ±¤¸¥¯¥é¥¹¡¢Æ±¤¸¥Ñ¥Ã¥±¡¼¥¸¤Î¥á¥ó¥Ð¡¼¤ò»²¾È¤·¤Æ¤¤¤ë
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 82
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(82 .ll \n(82u
++.in 0
++\f2toLowerCase()\fP(¥Ñ¥Ã¥±¡¼¥¸Ì¾¤È¥¯¥é¥¹Ì¾¤Ï¾Êά)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f2@see\fP¥¿¥°¤¬°Û¤Ê¤ë¥¯¥é¥¹¡¢Æ±¤¸¥Ñ¥Ã¥±¡¼¥¸¤Î¥á¥ó¥Ð¡¼¤ò»²¾È¤·¤Æ¤¤¤ë
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f2@see Character#toLowerCase(char)\fP
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 82
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(82 .ll \n(82u
++.in 0
++\f2Character.toLowerCase(char)\fP(¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ï¾Êά¤·¡¢¥¯¥é¥¹Ì¾¤ò´Þ¤à)
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f2@see\fP¥¿¥°¤¬°Û¤Ê¤ë¥¯¥é¥¹¡¢°Û¤Ê¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥á¥ó¥Ð¡¼¤ò»²¾È¤·¤Æ¤¤¤ë
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f2@see java.io.File#exists()\fP
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 82
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(82 .ll \n(82u
++.in 0
++\f2java.io.File.exists()\fP(¥Ñ¥Ã¥±¡¼¥¸Ì¾¤È¥¯¥é¥¹Ì¾¤ò´Þ¤à)
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3»²¾È¤Î¥¿¥¤¥×\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 38 \n(b-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(d-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(g-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.nr 38 \w\f2@see String#toLowerCase()\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 82 0
++.nr 38 \w\f3ɽ¼¨¤µ¤ì¤ë̾Á°\fP
++.if \n(82<\n(38 .nr 82 \n(38
++.82
++.rm 82
++.nr 38 \n(c-
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \n(f-
++.if \n(82<\n(38 .nr 82 \n(38
++.nr 38 \n(i-
++.if \n(82<\n(38 .nr 82 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr 42 \n(81+(3*\n(38)
++.nr 82 +\n(42
++.nr TW \n(82
++.if t .if \n(TW>\n(.li .tm Table at line 1428 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3»²¾È¤Î¥¿¥¤¥×\fP\h'|\n(41u'\h'|\n(42u'\f3ɽ¼¨¤µ¤ì¤ë̾Á°\fP
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.ne \n(c|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'\f2@see String#toLowerCase()\fP\h'|\n(42u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(42u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.ne \n(e|u+\n(.Vu
++.ne \n(f|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(42u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.ne \n(h|u+\n(.Vu
++.ne \n(i|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(42u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-28
++.LP
++\f3@see¤ÎÎã\fP
++.br
++±¦Â¦¤Î¥³¥á¥ó¥È¤Ï¡¢\f2@see\fP¥¿¥°¤¬\f2java.applet.Applet\fP¤Ê¤É¤ÎÊ̤Υѥ屡¼¥¸¤Î¥¯¥é¥¹Æâ¤Ë¤¢¤ë¾ì¹ç¤Ë¡¢Ì¾Á°¤¬¤É¤Î¤è¤¦¤Ëɽ¼¨¤µ¤ì¤ë¤«¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ See also:
++.fl
++@see java.lang.String // String \fP\f3
++.fl
++@see java.lang.String The String class // The String class \fP\f3
++.fl
++@see String // String \fP\f3
++.fl
++@see String#equals(Object) // String.equals(Object) \fP\f3
++.fl
++@see String#equals // String.equals(java.lang.Object) \fP\f3
++.fl
++@see java.lang.Object#wait(long) // java.lang.Object.wait(long) \fP\f3
++.fl
++@see Character#MAX_RADIX // Character.MAX_RADIX \fP\f3
++.fl
++@see <a href="spec.html">Java Spec</a> // Java Spec \fP\f3
++.fl
++@see "The Java Programming Language" // "The Java Programming Language" \fP\f3
++.fl
++\fP
++.fi
++\f2@see\fP¤ò³ÈÄ¥¤·¤Æ¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Ê¤¤¥¯¥é¥¹¤Ë¥ê¥ó¥¯¤¹¤ë¤Ë¤Ï¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@see¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@see¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++.RE
++.LP
++.RS 3
++.TP 3
++@serial\ field\-description | include | exclude
++¥Ç¥Õ¥©¥ë¥È¤ÎľÎó²½²Äǽ¥Õ¥£¡¼¥ë¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤ·¤Þ¤¹¡£
++.LP
++\f2field\-description\fP(¾Êά²Äǽ)¤Ç¤Ï¡¢¥Õ¥£¡¼¥ë¥É¤Î°ÕÌ£¤òÀâÌÀ¤·¡¢¼è¤êÆÀ¤ëÃͤΥꥹ¥È¤ò¼¨¤¹É¬Íפ¬¤¢¤ê¤Þ¤¹¡£É¬Íפ˱þ¤¸¤Æ¡¢Ê£¿ô¤Î¹Ô¤ËÅϤäÆÀâÌÀ¤òµ­½Ò¤Ç¤­¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ï¡¢¤³¤Î¾ðÊó¤ò¡¢Ä¾Î󲽤µ¤ì¤¿·Á¼°¥Ú¡¼¥¸¤ËÄɲä·¤Þ¤¹¡£
++.LP
++¥¯¥é¥¹¤òľÎ󲽤·¤¿¸å¤·¤Ð¤é¤¯¤·¤Æ¤«¤éľÎó²½²Äǽ¥Õ¥£¡¼¥ë¥É¤ò¥¯¥é¥¹¤ËÄɲä·¤¿¾ì¹ç¡¢¼çÀâÌÀ¤Ë¡¢Äɲä·¤¿¥Ð¡¼¥¸¥ç¥ó¤ò¼±Ê̤¹¤ëʸ¤òÄɲ乤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++\f2include\fP¤ª¤è¤Ó\f2exclude\fP°ú¿ô¤Ï¡¢Ä¾Î󲽤µ¤ì¤¿·Á¼°¥Ú¡¼¥¸¤Ë¥¯¥é¥¹¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ò´Þ¤á¤ë¤«½ü³°¤¹¤ë¤«¤ò¼¨¤·¤Þ¤¹¡£¼¡¤Î¤è¤¦¤Ëµ¡Ç½¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2Serializable\fP¤ò¼ÂÁõ¤·¤Æ¤¤¤ëpublic¤Þ¤¿¤Ïprotected¥¯¥é¥¹¤Ï¡¢¤½¤Î¥¯¥é¥¹(¤Þ¤¿¤Ï¤½¤Î¥¯¥é¥¹¤¬Â°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸)¤¬\f2@serial exclude\fP¤È¥Þ¡¼¥¯¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤®¤ê¡¢\f2´Þ¤á¤é¤ì¤Þ¤¹\fP¡£
++.TP 2
++o
++\f2Serializable\fP¤ò¼ÂÁõ¤·¤Æ¤¤¤ëprivate¤Þ¤¿¤Ïpackage\-private¥¯¥é¥¹¤Ï¡¢¤½¤Î¥¯¥é¥¹(¤Þ¤¿¤Ï¤½¤Î¥¯¥é¥¹¤¬Â°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸)¤¬\f2@serial include\fP¤È¥Þ¡¼¥¯¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤®¤ê¡¢\f2½ü³°¤µ¤ì¤Þ¤¹\fP¡£
++.RE
++.LP
++Îã: \f2javax.swing\fP¥Ñ¥Ã¥±¡¼¥¸¤Ï(\f2package.html\fP¤Þ¤¿¤Ï\f2package\-info.java\fPÆâ¤Ç)\f2@serial exclude\fP¤È¥Þ¡¼¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹¡£public¥¯¥é¥¹\f2java.security.BasicPermission\fP¤Ï\f2@serial exclude\fP¤È¥Þ¡¼¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹¡£package\-private¥¯¥é¥¹\f2java.util.PropertyPermissionCollection\fP¤Ï\f2@serial include\fP¤È¥Þ¡¼¥¯¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++¥¯¥é¥¹¡¦¥ì¥Ù¥ë¤Ç»ØÄꤵ¤ì¤¿@serial¥¿¥°¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥ì¥Ù¥ë¤Ç»ØÄꤵ¤ì¤¿@serial¥¿¥°¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.LP
++¤³¤ì¤é¤Î¥¿¥°¤Î»ÈÍÑÊýË¡¤Î¾ÜºÙ¤È»ÈÍÑÎã¤Ï¡¢\f2Java¥ª¥Ö¥¸¥§¥¯¥ÈľÎó²½»ÅÍÍ\fP¤ÎÂè1.6¹à
++.na
++\f2¥¯¥é¥¹¤ÎľÎó²½²Äǽ¤Ê¥Õ¥£¡¼¥ë¥É¤ª¤è¤Ó¥Ç¡¼¥¿¤Îʸ½ñ²½\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/platform/serialization/spec/serial\-arch.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤Þ¤¿¡¢
++.na
++\f2ľÎ󲽤ÎFAQ\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/tech/serializationfaq\-jsp\-136699.html#javadoc_warn_missing¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤ÎFAQ¤Ë¤Ï¡¢¡Ö\-private¥¹¥¤¥Ã¥Á¤ò»ØÄꤷ¤Ê¤¤¤Çjavadoc¤ò¼Â¹Ô¤·¤Æ¤¤¤ë¤Î¤Ëprivate¥Õ¥£¡¼¥ë¥É¤Î@serial¥¿¥°¤¬¸«¤Ä¤«¤é¤Ê¤¤¤È¤¤¤¦javadoc¤Î·Ù¹ð¤¬É½¼¨¤µ¤ì¤ë¡×¤Ê¤É¤Î°ìÈÌŪ¤Ê¼ÁÌä¤Ø¤Î²óÅú¤¬µ­ºÜ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Ä¾Î󲽤µ¤ì¤¿·Á¼°¤Î»ÅÍͤ˥¯¥é¥¹¤ò´Þ¤á¤ë¾ì¹ç¤Ë¤Ï¡¢
++.na
++\f2Oracle¤Î´ð½à\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/serialized\-criteria\-137781.html¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.TP 3
++@serialField\ field\-name\ field\-type\ field\-description
++\f2Serializable\fP¥¯¥é¥¹¤Î\f2serialPersistentFields\fP¥á¥ó¥Ð¡¼¤Î\f2ObjectStreamField\fP¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ò¥É¥­¥å¥á¥ó¥È²½¤·¤Þ¤¹¡£³Æ\f2ObjectStreamField\fP¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ËÂФ·¤Æ1¤Ä¤Î\f2@serialField\fP¥¿¥°¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.TP 3
++@serialData\ data\-description
++\f2data\-description\fP¤Ï¡¢Ä¾Î󲽤µ¤ì¤¿·Á¼°¤Ç¤Î¥Ç¡¼¥¿¤Î·¿¤È½ç½ø¤òÀâÌÀ¤¹¤ë¥Æ¥­¥¹¥È¤Ç¤¹¡£¶ñÂÎŪ¤Ë¸À¤¦¤È¡¢¤³¤Î¥Ç¡¼¥¿¤Ë¤Ï¡¢\f2writeObject\fP¥á¥½¥Ã¥É¤Ë¤è¤Ã¤Æ½ñ¤­¹þ¤Þ¤ì¤ë¾Êά²Äǽ¤Ê¥Ç¡¼¥¿¡¢¤ª¤è¤Ó\f2Externalizable.writeExternal\fP¥á¥½¥Ã¥É¤Ë¤è¤Ã¤Æ½ñ¤­¹þ¤Þ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Ç¡¼¥¿(¥Ù¡¼¥¹¡¦¥¯¥é¥¹¤ò´Þ¤à)¤¬´Þ¤Þ¤ì¤Þ¤¹¡£
++.LP
++\f2@serialData\fP¥¿¥°¤Ï¡¢\f2writeObject\fP¡¢\f2readObject\fP¡¢\f2writeExternal\fP¡¢\f2readExternal\fP¡¢\f2writeReplace\fP¡¢¤ª¤è¤Ó\f2readResolve\fP¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Ç»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++.TP 3
++@since\ since\-text
++À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡ÖƳÆþ¤µ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó¡×¸«½Ð¤·¤òÄɲ䷤ơ¢»ØÄꤵ¤ì¤¿\f2since\-text\fP¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£¤³¤Î¥Æ¥­¥¹¥È¤Ë¤Ï¡¢ÆÃÊ̤ÊÆâÉô¹½Â¤¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤³¤Î¥¿¥°¤Ï¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¡¢¤Ä¤Þ¤ê³µÍס¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤ÇÍ­¸ú¤Ç¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢ÆÃÄê¤ÎÊѹ¹¤Þ¤¿¤Ïµ¡Ç½¤¬¡¢\f2since\-text\fP¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤¿¥½¥Õ¥È¥¦¥§¥¢¡¦¥ê¥ê¡¼¥¹°Ê¹ß¡¢Â¸ºß¤·¤Æ¤¤¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ @since 1.5
++.fl
++
++.fl
++\fP
++.fi
++.LP
++Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¾ì¹ç¡¢¤³¤Î¥¿¥°¤Ï¡¢Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥àAPI»ÅÍͤΥС¼¥¸¥ç¥ó¤ò¼¨¤·¤Þ¤¹(¥ê¥Õ¥¡¥ì¥ó¥¹¼ÂÁõ¤ËÄɲ䵤줿»þ´ü¤ò¼¨¤¹¤È¤Ï¸Â¤ê¤Þ¤»¤ó)¡£Ê£¿ô¤Î@since¥¿¥°¤ò»ÈÍѤǤ­¡¢Ê£¿ô¤Î@author¥¿¥°¤Î¤è¤¦¤Ë°·¤ï¤ì¤Þ¤¹¡£¥×¥í¥°¥é¥àÍ×ÁǤ¬Ê£¿ô¤ÎAPI¤Ç»ÈÍѤµ¤ì¤ë¾ì¹ç¡¢Ê£¿ô¤Î¥¿¥°¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++.TP 3
++@throws\ class\-name\ description
++\f2@throws\fP¥¿¥°¤È\f2@exception\fP¥¿¥°¤ÏƱµÁ¤Ç¤¹¡£À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡Ö¥¹¥í¡¼¡×¾®¸«½Ð¤·¤òÄɲ䷤ơ¢\f2class\-name\fP¤ª¤è¤Ó\f2description\fP¤Î¥Æ¥­¥¹¥È¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£\f2class\-name\fP¤Ï¡¢¤½¤Î¥á¥½¥Ã¥É¤«¤é¥¹¥í¡¼¤µ¤ì¤ë²ÄǽÀ­¤Î¤¢¤ëÎã³°¤Î̾Á°¤Ç¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Ç¤Î¤ßÍ­¸ú¤Ç¤¹¡£¤³¤Î¥¯¥é¥¹¤¬´°Á´»ØÄê¤Î̾Á°¤Çµ­½Ò¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¸¡º÷½ç½ø¤Ë½¾¤Ã¤Æ¥¯¥é¥¹¤òõ¤·¤Þ¤¹¡£Æ±¤¸¤Þ¤¿¤Ï°Û¤Ê¤ëÎã³°¤ÎÆÃÄê¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¡¢Ê£¿ô¤Î\f2@throws\fP¥¿¥°¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++¤¹¤Ù¤Æ¤Î¥Á¥§¥Ã¥¯ºÑ¤ßÎã³°¤¬¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ë¡¢\f2@throws\fP¥¿¥°¤¬throwsÀáÆâ¤ÎÎã³°ÍѤ˸ºß¤·¤Ê¤¤¾ì¹ç¤Ï¡¢@throws¥¿¥°¤Ç¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤¿¤«¤Î¤è¤¦¤Ë¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤ÆÎã³°¤¬HTML½ÐÎϤËÀâÌÀ¤Ê¤·¤Ç¼«Æ°Åª¤ËÄɲ䵤ì¤Þ¤¹¡£
++.LP
++¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤ë¥á¥½¥Ã¥ÉÆâ¤ÇÎã³°¤¬ÌÀ¼¨Åª¤ËÀë¸À¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Î¤ß¡¢\f2@throws\fP¤Î¥É¥­¥å¥á¥ó¥È¤¬¤½¤Î¥á¥½¥Ã¥É¤«¤é¥µ¥Ö¥¯¥é¥¹¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¦¥á¥½¥Ã¥É¤«¤é¼ÂÁõ¥á¥½¥Ã¥É¤Ë¥³¥Ô¡¼¤µ¤ì¤ë¾ì¹ç¤âƱÍͤǤ¹¡£@throws¤Ë¥É¥­¥å¥á¥ó¥È¤ò·Ñ¾µ¤µ¤»¤ë¤Ë¤Ï¡¢{@inheritDoc}¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@throws¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@exception¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.TP 3
++{@value\ package.class#field}
++\f2{@value}\fP¤¬ÀÅŪ¥Õ¥£¡¼¥ë¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç°ú¿ô¤Ê¤·¤Ç»ÈÍѤµ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¤½¤ÎÄê¿ô¤ÎÃͤ¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * The value of this constant is {@value}.
++.fl
++ */
++.fl
++ public static final String SCRIPT_START = "<script>"
++.fl
++
++.fl
++\fP
++.fi
++.LP
++Ǥ°Õ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Ç°ú¿ô\f2package.class#field\fP¤¢¤ê¤Ç»ÈÍѤµ¤ì¤¿¾ì¹ç¤Ï¡¢¤½¤Î»ØÄꤵ¤ì¤¿Äê¿ô¤ÎÃͤ¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * Evaluates the script starting with {@value #SCRIPT_START}.
++.fl
++ */
++.fl
++ public String evalScript(String script) {
++.fl
++ }
++.fl
++
++.fl
++\fP
++.fi
++.LP
++°ú¿ô\f2package.class#field\fP¤Ï¡¢@see°ú¿ô¤ÈƱ°ì¤Î·Á¼°¤Ë¤Ê¤ê¤Þ¤¹¡£¤¿¤À¤·¡¢¥á¥ó¥Ð¡¼¤ÏÀÅŪ¥Õ¥£¡¼¥ë¥É¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¤³¤ì¤é¤ÎÄê¿ô¤Ç¤ÎÃͤϡ¢
++.na
++\f2Äê¿ô¥Õ¥£¡¼¥ë¥ÉÃÍ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/constant\-values.html¥Ú¡¼¥¸¤Ë¤âɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.TP 3
++@version\ version\-text
++\-version¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡Ö¥Ð¡¼¥¸¥ç¥ó¡×¾®¸«½Ð¤·¤òÄɲ䷤ơ¢»ØÄꤵ¤ì¤¿\f2version\-text\fP¤ò½ñ¤­¹þ¤ß¤Þ¤¹¡£¤³¤Î¥¿¥°¤Ï¡¢¤³¤Î¥³¡¼¥É¤¬´Þ¤Þ¤ì¤ë¥½¥Õ¥È¥¦¥§¥¢¤Î¸½ºß¤Î¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òÊÝ»ý¤¹¤ë¤è¤¦¤Ë°Õ¿Þ¤µ¤ì¤Æ¤¤¤Þ¤¹(¤³¤ì¤ËÂФ·¡¢@since¤Ï¡¢¤³¤Î¥³¡¼¥É¤¬Æ³Æþ¤µ¤ì¤¿¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òÊÝ»ý¤·¤Þ¤¹)¡£\f2version\-text\fP¤Ë¤Ï¡¢ÆÃÊ̤ÊÆâÉô¹½Â¤¤Ï¤¢¤ê¤Þ¤»¤ó¡£¥Ð¡¼¥¸¥ç¥ó¡¦¥¿¥°¤ò»ÈÍѤǤ­¤ë¾ì½ê¤òÄ´¤Ù¤ë¤Ë¤Ï¡¢¥¿¥°¤ò»ÈÍѤǤ­¤ë¾ì½ê¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++1¤Ä¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ËÊ£¿ô¤Î\f2@version\fP¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£É¬Íפ˱þ¤¸¤Æ¡¢1¤Ä¤Î\f2@version\fP¥¿¥°¤Ë1¤Ä¤Î¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤ò»ØÄꤹ¤ë¤³¤È¤â¡¢Ê£¿ô¤Î¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤ò»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£Á°¼Ô¤Î¾ì¹ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ̾Á°¤È̾Á°¤Î´Ö¤Ë¥«¥ó¥Þ(\f2,\fP)¤È¶õÇòʸ»ú¤¬ÁÞÆþ¤µ¤ì¤Þ¤¹¡£¸å¼Ô¤Î¾ì¹ç¤Ï¡¢¥Æ¥­¥¹¥ÈÁ´ÂΤ¬¡¢²òÀϤµ¤ì¤ë¤³¤È¤Ê¤¯¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤½¤Î¤Þ¤Þ¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥«¥ó¥Þ¤Ç¤Ï¤Ê¤¯¡¢³Æ¸À¸ì¤ËÂбþ¤·¤¿Ì¾Á°¶èÀÚ¤êʸ»ú¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ë¤È¤­¤Ï¡¢1¤Ä¤Î¥¿¥°¤ËÊ£¿ô¤Î̾Á°¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++¾ÜºÙ¤Ï¡¢
++.na
++\f2@version¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@version¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++.SS
++¥¿¥°¤ò»ÈÍѤǤ­¤ë¾ì½ê
++.LP
++¤³¤³¤Ç¤Ï¡¢¥¿¥°¤ò»ÈÍѤǤ­¤ë¾ì½ê¤Ë¤Ä¤¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£\f2@see\fP¡¢\f2@since\fP¡¢\f2@deprecated\fP¡¢\f2{@link}\fP¡¢\f2{@linkplain}\fP¡¢¤ª¤è¤Ó\f2{@docroot}\fP¤Ï¡¢¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤Þ¤¹¡£
++.SS
++³µÍפΥɥ­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°
++.LP
++³µÍ×¥¿¥°¤Ï¡¢³µÍ×¥Ú¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤ë¥¿¥°¤Ç¤¹(¤³¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï¡¢Ä̾ï\f2overview.html\fP¤È¤¤¤¦Ì¾Á°¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¤¢¤ê¤Þ¤¹)¡£Â¾¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¾ì¹ç¤ÈƱÍͤˡ¢¤³¤ì¤é¤Î¥¿¥°¤Ï¡¢¼çÀâÌÀ¤Î¸å¤Ç»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++\f3Ãí°Õ\fP \- ¥Ð¡¼¥¸¥ç¥ó1.2¤Ç¤Ï¡¢³µÍץɥ­¥å¥á¥ó¥ÈÆâ¤Î\f2{@link}\fP¥¿¥°¤Ë¥Ð¥°¤¬¤¢¤ê¤Þ¤¹¡£¥Æ¥­¥¹¥È¤ÏÀµ¤·¤¯É½¼¨¤µ¤ì¤Þ¤¹¤¬¡¢¥ê¥ó¥¯¤¬ÀßÄꤵ¤ì¤Þ¤»¤ó¡£¸½ºß¤Î¤È¤³¤í¡¢\f2{@docRoot}\fP¥¿¥°¤Ï¡¢³µÍץɥ­¥å¥á¥ó¥ÈÆâ¤Ç¤Ïµ¡Ç½¤·¤Þ¤»¤ó¡£
++.LP
++\f3³µÍ×¥¿¥°\fP
++.RS 3
++.TP 2
++o
++\f2@see\fP
++.TP 2
++o
++\f2@since\fP
++.TP 2
++o
++\f2@author\fP
++.TP 2
++o
++\f2@version\fP
++.TP 2
++o
++\f2{@link}\fP
++.TP 2
++o
++\f2{@linkplain}\fP
++.TP 2
++o
++\f2{@docRoot}\fP
++.RE
++.SS
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°
++.LP
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥¿¥°¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤ë¥¿¥°¤Ç¤¹(¤³¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ï\f2package.html\fP¤Þ¤¿¤Ï\f2package\-info.java\fP¤È¤¤¤¦Ì¾Á°¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¤¢¤ê¤Þ¤¹)¡£¤³¤³¤Ç»ÈÍѤǤ­¤ë\f2@serial\fP¥¿¥°¤Ï¡¢\f2include\fP¤Þ¤¿¤Ï\f2exclude\fP°ú¿ô¤ò»ØÄꤷ¤¿¤â¤Î¤Î¤ß¤Ç¤¹¡£
++.LP
++\f3¥Ñ¥Ã¥±¡¼¥¸¡¦¥¿¥°\fP
++.RS 3
++.TP 2
++o
++\f2@see\fP
++.TP 2
++o
++\f2@since\fP
++.TP 2
++o
++\f2@serial\fP
++.TP 2
++o
++\f2@author\fP
++.TP 2
++o
++\f2@version\fP
++.TP 2
++o
++\f2{@link}\fP
++.TP 2
++o
++\f2{@linkplain}\fP
++.TP 2
++o
++\f2{@docRoot}\fP
++.RE
++.SS
++¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¦¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°
++.LP
++¼¡¤Ë¡¢¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤ë¥¿¥°¤ò¼¨¤·¤Þ¤¹¡£¤³¤³¤Ç»ÈÍѤǤ­¤ë\f2@serial\fP¥¿¥°¤Ï¡¢\f2include\fP¤Þ¤¿¤Ï\f2exclude\fP°ú¿ô¤ò»ØÄꤷ¤¿¤â¤Î¤Î¤ß¤Ç¤¹¡£
++.LP
++\f3¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¦¥¿¥°\fP
++.RS 3
++.TP 2
++o
++\f2@see\fP
++.TP 2
++o
++\f2@since\fP
++.TP 2
++o
++\f2@deprecated\fP
++.TP 2
++o
++\f2@serial\fP
++.TP 2
++o
++\f2@author\fP
++.TP 2
++o
++\f2@version\fP
++.TP 2
++o
++\f2{@link}\fP
++.TP 2
++o
++\f2{@linkplain}\fP
++.TP 2
++o
++\f2{@docRoot}\fP
++.RE
++\f3¥¯¥é¥¹¡¦¥³¥á¥ó¥È¤ÎÎã:\fP
++.nf
++\f3
++.fl
++/**
++.fl
++ * A class representing a window on the screen.
++.fl
++ * For example:
++.fl
++ * <pre>
++.fl
++ * Window win = new Window(parent);
++.fl
++ * win.show();
++.fl
++ * </pre>
++.fl
++ *
++.fl
++ * @author Sami Shaio
++.fl
++ * @version 1.13, 06/08/06
++.fl
++ * @see java.awt.BaseWindow
++.fl
++ * @see java.awt.Button
++.fl
++ */
++.fl
++class Window extends BaseWindow {
++.fl
++ ...
++.fl
++}
++.fl
++\fP
++.fi
++.SS
++¥Õ¥£¡¼¥ë¥É¡¦¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°
++.LP
++¼¡¤Ë¡¢¥Õ¥£¡¼¥ë¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤ë¥¿¥°¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++\f3¥Õ¥£¡¼¥ë¥É¡¦¥¿¥°\fP
++.RS 3
++.TP 2
++o
++\f2@see\fP
++.TP 2
++o
++\f2@since\fP
++.TP 2
++o
++\f2@deprecated\fP
++.TP 2
++o
++\f2@serial\fP
++.TP 2
++o
++\f2@serialField\fP
++.TP 2
++o
++\f2{@link}\fP
++.TP 2
++o
++\f2{@linkplain}\fP
++.TP 2
++o
++\f2{@docRoot}\fP
++.TP 2
++o
++\f2{@value}\fP
++.RE
++\f3¥Õ¥£¡¼¥ë¥É¡¦¥³¥á¥ó¥È¤ÎÎã:\fP
++.nf
++\f3
++.fl
++ /**
++.fl
++ * The X\-coordinate of the component.
++.fl
++ *
++.fl
++ * @see #getLocation()
++.fl
++ */
++.fl
++ int x = 1263732;
++.fl
++\fP
++.fi
++.SS
++¥³¥ó¥¹¥È¥é¥¯¥¿¤ª¤è¤Ó¥á¥½¥Ã¥É¡¦¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥¿¥°
++.LP
++¼¡¤Ë¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¤Þ¤¿¤Ï¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç»ÈÍѤǤ­¤ë¥¿¥°¤ò¼¨¤·¤Þ¤¹¡£¤¿¤À¤·¡¢\f2@return\fP¤Ï¥³¥ó¥¹¥È¥é¥¯¥¿¤Ç¤Ï»ÈÍѤǤ­¤º¡¢\f2{@inheritDoc}\fP¤Ë¤ÏÆÃÄê¤ÎÀ©¸Â¤¬¤¢¤ê¤Þ¤¹¡£\f2@serialData\fP¥¿¥°¤ÏÆÃÄê¤ÎľÎ󲽥᥽¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Ç¤Î¤ß»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++\f3¥á¥½¥Ã¥É¤ª¤è¤Ó¥³¥ó¥¹¥È¥é¥¯¥¿¡¦¥¿¥°\fP
++.RS 3
++.TP 2
++o
++\f2@see\fP
++.TP 2
++o
++\f2@since\fP
++.TP 2
++o
++\f2@deprecated\fP
++.TP 2
++o
++\f2@param\fP
++.TP 2
++o
++\f2@return\fP
++.TP 2
++o
++\f2@throws\fP¤È\f2@exception\fP
++.TP 2
++o
++\f2@serialData\fP
++.TP 2
++o
++\f2{@link}\fP
++.TP 2
++o
++\f2{@linkplain}\fP
++.TP 2
++o
++\f2{@inheritDoc}\fP
++.TP 2
++o
++\f2{@docRoot}\fP
++.RE
++\f3¥á¥½¥Ã¥É¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎÎã:\fP
++.nf
++\f3
++.fl
++ /**
++.fl
++ * Returns the character at the specified index. An index
++.fl
++ * ranges from <code>0</code> to <code>length() \- 1</code>.
++.fl
++ *
++.fl
++ * @param index the index of the desired character.
++.fl
++ * @return the desired character.
++.fl
++ * @exception StringIndexOutOfRangeException
++.fl
++ * if the index is not in the range <code>0</code>
++.fl
++ * to <code>length()\-1</code>.
++.fl
++ * @see java.lang.Character#charValue()
++.fl
++ */
++.fl
++ public char charAt(int index) {
++.fl
++ ...
++.fl
++ }
++.fl
++\fP
++.fi
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++Javadoc¥Ä¡¼¥ë¤Ï¡¢¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Æ½ÐÎϤò·èÄꤷ¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\-doclet¥ª¥×¥·¥ç¥ó¤Ç¥«¥¹¥¿¥à¡¦¥É¥Ã¥¯¥ì¥Ã¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç°Ê³°¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Îɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ë¤Ï¡¢Ç¤°Õ¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤È¤È¤â¤Ë»ÈÍѤǤ­¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤Ï¡¢¸å½Ò¤ÎJavadoc¥ª¥×¥·¥ç¥ó¤ÇÀâÌÀ¤·¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤Ç¤Ï¡¢¤³¤Î¾¤Ë¡¢¤¤¤¯¤Ä¤«¤ÎÄɲäΥ³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬Ä󶡤µ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤Ï¡¢¸å½Ò¤Îɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤¬Ä󶡤¹¤ë¥ª¥×¥·¥ç¥ó¤ÇÀâÌÀ¤·¤Þ¤¹¡£¤É¤Î¥ª¥×¥·¥ç¥ó̾¤â¡¢Âçʸ»ú¤È¾®Ê¸»ú¤¬¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¥ª¥×¥·¥ç¥ó¤Î°ú¿ô¤Ç¤Ï¡¢Âçʸ»ú¤È¾®Ê¸»ú¤¬¶èÊ̤µ¤ì¤Þ¤¹¡£
++.LP
++¥ª¥×¥·¥ç¥ó¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81 82
++.nr 34 \n(.lu
++.eo
++.am 80
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\-\f21.1\fP
++.br
++\-author
++.br
++\-\f2bootclasspath\fP
++.br
++\-bottom
++.br
++\-\f2breakiterator\fP
++.br
++\-charset
++.br
++\-\f2classpath\fP
++.br
++\-d
++.br
++\-docencoding
++.br
++\-docfilessubdirs
++.br
++\-\f2doclet\fP
++.br
++\-\f2docletpath\fP
++.br
++\-doctitle
++.br
++\-\f2encoding\fP
++.br
++\-\f2exclude\fP
++.br
++\-excludedocfilessubdir
++.br
++\-\f2extdirs\fP
++.br
++\-footer
++.br
++\-group
++.br
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\-header
++.br
++\-\f2help\fP
++.br
++\-helpfile
++.br
++\-\f2J\fP
++.br
++\-keywords
++.br
++\-link
++.br
++\-linkoffline
++.br
++\-linksource
++.br
++\-\f2locale\fP
++.br
++\-nocomment
++.br
++\-nodeprecated
++.br
++\-nodeprecatedlist
++.br
++\-nohelp
++.br
++\-noindex
++.br
++\-nonavbar
++.br
++\-noqualifier
++.br
++\-nosince
++.br
++\-notimestamp
++.br
++\-notree
++.br
++\-\f2overview\fP
++.br
++\-\f2package\fP
++.br
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 82
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/4u
++.if \n(.l<\n(82 .ll \n(82u
++.in 0
++\-\f2private\fP
++.br
++\-\f2protected\fP
++.br
++\-\f2public\fP
++.br
++\-\f2quiet\fP
++.br
++\-serialwarn
++.br
++\-\f2source\fP
++.br
++\-\f2sourcepath\fP
++.br
++\-sourcetab
++.br
++\-splitindex
++.br
++\-stylesheetfile
++.br
++\-\f2subpackages\fP
++.br
++\-tag
++.br
++\-taglet
++.br
++\-tagletpath
++.br
++\-top
++.br
++\-title
++.br
++\-use
++.br
++\-\f2verbose\fP
++.br
++\-version
++.br
++\-windowtitle
++.br
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.80
++.rm 80
++.nr 38 \n(a-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.81
++.rm 81
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 82 0
++.82
++.rm 82
++.nr 38 \n(c-
++.if \n(82<\n(38 .nr 82 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr 42 \n(81+(3*\n(38)
++.nr 82 +\n(42
++.nr TW \n(82
++.if t .if \n(TW>\n(.li .tm Table at line 2003 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ne \n(a|u+\n(.Vu
++.ne \n(b|u+\n(.Vu
++.ne \n(c|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u \n(82u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(42u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-127
++.LP
++\f2¥¤¥¿¥ê¥Ã¥¯\fP¤Ç¼¨¤µ¤ì¤¿¥ª¥×¥·¥ç¥ó¤Ï¡¢Javadoc¤Î´ðËÜ¥ª¥×¥·¥ç¥ó¤Ç¤¢¤ê¡¢Javadoc¥Ä¡¼¥ë¤Î¥Õ¥í¥ó¥È¥¨¥ó¥É¤Ë¤è¤Ã¤ÆÄ󶡤µ¤ì¡¢¤¹¤Ù¤Æ¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤Ç»ÈÍѤǤ­¤Þ¤¹¡£É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¼«ÂΤϡ¢¥¤¥¿¥ê¥Ã¥¯¤Ç¤Ê¤¤¥ª¥×¥·¥ç¥ó¤òÄ󶡤·¤Þ¤¹¡£
++.SS
++Javadoc¥ª¥×¥·¥ç¥ó
++.RS 3
++.TP 3
++\-overview \ path/filename
++Javadoc¤ËÂФ·¤Æ¡¢\f2path/filename\fP¤Ç»ØÄꤵ¤ì¤¿¡Ö¥½¡¼¥¹¡×¥Õ¥¡¥¤¥ë¤«¤é³µÍץɥ­¥å¥á¥ó¥ÈÍѤΥƥ­¥¹¥È¤ò¼èÆÀ¤·¡¢¤½¤Î¥Æ¥­¥¹¥È¤ò³µÍ×¥Ú¡¼¥¸(\f2overview\-summary.html\fP)¤ËÇÛÃÖ¤¹¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£\f2path/filename\fP¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХѥ¹¤Ç¤¹¡£
++.br
++.br
++\f2filename\fP¤ÇǤ°Õ¤Î̾Á°¤ò»ÈÍѤ·¡¢\f2path\fP¤ÇǤ°Õ¤ÎÇÛÃÖÀè¤ò»ØÄê¤Ç¤­¤Þ¤¹¤¬¡¢Ä̾ï¤Ï\f2overview.html\fP¤È¤¤¤¦Ì¾Á°¤òÉÕ¤±¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼Æâ¤ÎºÇ¾å°Ì¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ç¥£¥ì¥¯¥È¥ê¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤ËÇÛÃÖ¤·¤Þ¤¹¡£¤³¤Î¾ì½ê¤ËÇÛÃÖ¤¹¤ë¤È¡¢¥Ñ¥Ã¥±¡¼¥¸¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤È¤­¤Ë\f2path\fP¤ò»ØÄꤹ¤ëɬÍפ¬¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢\f2\-sourcepath\fP¤Ë¤è¤Ã¤Æ¤³¤Î¥Õ¥¡¥¤¥ë¤¬»Ø¤·¼¨¤µ¤ì¤ë¤«¤é¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2java.lang\fP¥Ñ¥Ã¥±¡¼¥¸¤Î¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤¬\f2/src/classes/java/lang/\fP¤Î¾ì¹ç¡¢³µÍ×¥Õ¥¡¥¤¥ë¤ò\f2/src/classes/overview.html\fP¤ËÇÛÃ֤Ǥ­¤Þ¤¹¡£»ÈÍÑÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f2path/filename\fP¤Ç»ØÄꤹ¤ë¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Ï¡¢³µÍ×¥³¥á¥ó¥È¡¦¥Õ¥¡¥¤¥ë¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++³µÍ×¥Ú¡¼¥¸¤¬ºîÀ®¤µ¤ì¤ë¤Î¤Ï¡¢Javadoc¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ·¤¿¾ì¹ç¤Î¤ß¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢HTML¥Õ¥ì¡¼¥à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++³µÍ×¥Ú¡¼¥¸¤Î¥¿¥¤¥È¥ë¤Ï¡¢\f2\-doctitle\fP¤Ë¤è¤Ã¤ÆÀßÄꤵ¤ì¤Þ¤¹¡£
++.TP 3
++\-public
++public¥¯¥é¥¹¤ª¤è¤Ó¥á¥ó¥Ð¡¼¤Î¤ß¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-protected
++protected¤ª¤è¤Ópublic¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤Î¤ß¤òɽ¼¨¤·¤Þ¤¹¡£¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¹¡£
++.TP 3
++\-package
++package¡¢protected¡¢¤ª¤è¤Ópublic¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤Î¤ß¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-private
++¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-help
++¥ª¥ó¥é¥¤¥ó¡¦¥Ø¥ë¥×¤òɽ¼¨¤·¤Þ¤¹¡£Javadoc¤È¥É¥Ã¥¯¥ì¥Ã¥È¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬¥ê¥¹¥È¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-doclet\ class
++¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®¤Ë»ÈÍѤ¹¤ë¥É¥Ã¥¯¥ì¥Ã¥È¤òµ¯Æ°¤¹¤ë¤¿¤á¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£´°Á´½¤¾þ̾¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤Ë¤è¤ê¡¢½ÐÎϤÎÆâÍƤȷÁ¼°¤¬ÄêµÁ¤µ¤ì¤Þ¤¹¡£\f4\-doclet\fP¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤµ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Javadoc¤Ï¡¢É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤ò»ÈÍѤ·¤Æ¥Ç¥Õ¥©¥ë¥È¤ÎHTML·Á¼°¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¤Ë¤Ï\f2start(Root)\fP¥á¥½¥Ã¥É¤¬´Þ¤Þ¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Îµ¯Æ°¥¯¥é¥¹¤Ø¤Î¥Ñ¥¹¤Ï\f2\-docletpath\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤ÆÄêµÁ¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¾ÜºÙ¤Ï¡¢
++.na
++\f2¥É¥Ã¥¯¥ì¥Ã¥È¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/doclet/overview.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-docletpath\ classpathlist
++\f2\-doclet\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤¿¥É¥Ã¥¯¥ì¥Ã¥È³«»Ï¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¡¢¤ª¤è¤Ó¤½¤Î¥¯¥é¥¹¤¬°Í¸¤¹¤ë¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£³«»Ï¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤¬jar¥Õ¥¡¥¤¥ëÆâ¤Ë¤¢¤ë¾ì¹ç¡¢¼¡¤ÎÎã¤Î¤è¤¦¤Ëjar¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤¬»ØÄꤵ¤ì¤Þ¤¹¡£ÀäÂХѥ¹¤Þ¤¿¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХѥ¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\f2classpathlist\fP¤ËÊ£¿ô¤Î¥Ñ¥¹¤äJAR¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤ë¾ì¹ç¤Ë¤Ï¡¢¤½¤ì¤é¤òSolaris¤Î¾ì¹ç¤Ï¥³¥í¥ó(:)¤Ç¡¢Windows¤Î¾ì¹ç¤Ï¥»¥ß¥³¥í¥ó(;)¤Ç¤½¤ì¤¾¤ì¶èÀÚ¤ê¤Þ¤¹¡£ÌÜŪ¤Î¥É¥Ã¥¯¥ì¥Ã¥È³«»Ï¥¯¥é¥¹¤¬¤¹¤Ç¤Ë¸¡º÷¥Ñ¥¹Æâ¤Ë¤¢¤ë¾ì¹ç¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ÏÉÔÍפǤ¹¡£
++.br
++.br
++¾ÜºÙ¤Ï¡¢
++.na
++\f2¥É¥Ã¥¯¥ì¥Ã¥È¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/doclet/overview.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-1.1
++\f2¤³¤Îµ¡Ç½¤ÏJavadoc 1.4¤«¤éºï½ü¤µ¤ì¤Þ¤·¤¿¡£ÂåÂص¡Ç½¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢Javadoc 1.1¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë¤Î¤ÈƱ¤¸³°¸«¤Èµ¡Ç½¤ò»ý¤Ä¥É¥­¥å¥á¥ó¥È¤òºîÀ®¤¹¤ë¤¿¤á¤Î¤â¤Î¤Ç¤·¤¿(¥Í¥¹¥È¤µ¤ì¤¿¥¯¥é¥¹¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó)¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬É¬Íפʾì¹ç¤Ï¡¢Javadoc 1.2¤Þ¤¿¤Ï1.3¤ò¤«¤ï¤ê¤Ë»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£\fP
++.TP 3
++\-source release
++¼õ¤±ÉÕ¤±¤ë¥½¡¼¥¹¡¦¥³¡¼¥É¤Î¥Ð¡¼¥¸¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£\f2release\fP¤Ë¤Ï¼¡¤ÎÃͤò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f31.5\fP \- Javadoc¤Ï¡¢JDK 1.5¤ÇƳÆþ¤µ¤ì¤¿Áí¾Î¤ª¤è¤Ó¾¤Î¸À¸ìµ¡Ç½¤ò´Þ¤à¥³¡¼¥É¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£\f3\-source\fP¥Õ¥é¥°¤¬»ÈÍѤµ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¤Î¥³¥ó¥Ñ¥¤¥é¤Î¥Ç¥Õ¥©¥ë¥ÈÆ°ºî¤Ï¡¢1.5¤Î¤â¤Î¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f31.4\fP \- Javadoc¤Ï¡¢JDK 1.4¤ÇƳÆþ¤µ¤ì¤¿¥¢¥µ¡¼¥·¥ç¥ó¤ò´Þ¤à¥³¡¼¥É¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£
++.TP 2
++o
++\f31.3\fP \- Javadoc¤Ï¡¢JDK 1.3°Ê¹ß¤ËƳÆþ¤µ¤ì¤¿¥¢¥µ¡¼¥·¥ç¥ó¡¢Áí¾Î¡¢¤Þ¤¿¤Ï¾¤Î¸À¸ìµ¡Ç½¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤»¤ó¡£
++.RE
++javac¤Ç¥³¡¼¥É¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤È¤­¤Ë»ÈÍѤ·¤¿ÃͤËÂбþ¤¹¤ë\f2release\fP¤ÎÃͤò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-sourcepath\ sourcepathlist
++¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Þ¤¿¤Ï\f2\-subpackages\fP¤ò\f2javadoc\fP¥³¥Þ¥ó¥É¤ËÅϤ¹¤È¤­¤Ë¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(.\f2.java\fP)¤ò¸«¤Ä¤±¤ë¤¿¤á¤Î¸¡º÷¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£\f2sourcepathlist\fP¤Ë¤Ï¡¢¥³¥í¥ó(\f2:\fP)¤Ç¶èÀڤäÆÊ£¿ô¤Î¥Ñ¥¹¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ñ¥¹°Ê²¼¤Î¤¹¤Ù¤Æ¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ò¸¡º÷¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î°ÌÃ֤ΤߤǤʤ¯¡¢¤½¤ì¼«ÂΤϥɥ­¥å¥á¥ó¥È²½¤µ¤ì¤Ê¤¤¤¬¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤«¤é·Ñ¾µ¤µ¤ì¤¿¥³¥á¥ó¥È¤ò»ý¤Ä¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤â³Îǧ¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++\f2\-sourcepath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤǤ­¤ë¤Î¤Ï¡¢javadoc¥³¥Þ¥ó¥É¤Ë¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÅϤ¹¾ì¹ç¤Î¤ß¤Ç¤¹¡£¤³¤Î¥Ñ¥¹¤«¤é¤Ï¡¢\f2javadoc\fP¥³¥Þ¥ó¥É¤ËÅϤµ¤ì¤ë\f2.java\fP¥Õ¥¡¥¤¥ë¤Ï¸¡º÷¤µ¤ì¤Þ¤»¤ó¡£(\f2.java\fP¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¤Ë¤Ï¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ëcd¤Ë¤è¤Ã¤Æ°ÜÆ°¤¹¤ë¤«¡¢¤Þ¤¿¤Ï³Æ¥Õ¥¡¥¤¥ë¤ÎÀèƬ¤Ë¥Ñ¥¹¤ò´Þ¤á¤Þ¤¹(1¤Ä°Ê¾å¤Î¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È²½¤ò»²¾È)¡£)\f2\-sourcepath\fP¤¬¾Êά¤µ¤ì¤¿¾ì¹ç¡¢Javadoc¤Ï¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤ò»ÈÍѤ·¤Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤·¤Þ¤¹(\-classpath¤ò»²¾È)¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥Ç¥Õ¥©¥ë¥È¤Î\-sourcepath¤Ï¡¢¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÃͤǤ¹¡£\-classpath¤ò¾Êά¤·¤Æ¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òJavadoc¤ËÅϤ¹¤È¡¢Javadoc¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê(¤ª¤è¤Ó¤½¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê)¤«¤é¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤·¤Þ¤¹¡£
++.br
++.br
++\f2sourcepathlist\fP¤Ë¤Ï¡¢¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Î¥ë¡¼¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¤òÀßÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2com.mypackage\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¾ì¹ç¤Ë¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¼¡¤Î¾ì½ê¤Ë¤¢¤ë¤È¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /home/user/src/com/mypackage/*.java
++.fl
++\fP
++.fi
++¤³¤Î¾ì¹ç¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Æ\f2sourcepath\fP¤ò¡¢\f2com/mypackage\fP¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¢¤ë\f2/home/user/src\fP¤Ë»ØÄꤷ¤Æ¤«¤é¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾\f2com.mypackage\fP¤ò»ØÄꤷ¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-sourcepath /home/user/src/ com.mypackage\fP
++.fl
++.fi
++¤³¤ÎÊýË¡¤Ï¡¢¥½¡¼¥¹¡¦¥Ñ¥¹¤ÎÃͤȥѥ屡¼¥¸Ì¾¤òÏ¢·ë¤·¤Æ¡¢¥É¥Ã¥È¤ò¥¹¥é¥Ã¥·¥å¡Ö/¡×¤ËÊѹ¹¤¹¤ë¤È¡¢¥Ñ¥Ã¥±¡¼¥¸¤Î¥Õ¥ë¥Ñ¥¹\f2/home/user/src/com/mypackage\fP¤Ë¤Ê¤ë¤³¤È¤Ëµ¤ÉÕ¤¯¤È³Ð¤¨¤ä¤¹¤¤¤Ç¤¹¡£
++.br
++.br
++2¤Ä¤Î¥½¡¼¥¹¡¦¥Ñ¥¹¤òÀßÄꤹ¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-sourcepath /home/user1/src:/home/user2/src com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-classpath\ classpathlist
++Javadoc¤¬»²¾È¥¯¥é¥¹(\f2.class\fP¥Õ¥¡¥¤¥ë)¤Î¸¡º÷¤ò¹Ô¤¦¤È¤­¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£»²¾È¥¯¥é¥¹¤È¤Ï¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤È¡¢¤½¤ì¤é¤Î¥¯¥é¥¹¤Ë¤è¤Ã¤Æ»²¾È¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤Î¤³¤È¤Ç¤¹¡£\f2classpathlist\fP¤Ë¤Ï¡¢¥³¥í¥ó(\f2:\fP)¤Ç¶èÀڤäÆÊ£¿ô¤Î¥Ñ¥¹¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ñ¥¹°Ê²¼¤Î¤¹¤Ù¤Æ¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ò¸¡º÷¤·¤Þ¤¹¡£\f2classpathlist\fP¤ò»ØÄꤹ¤ë¤È¤­¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¡¦¥Ñ¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general¤Î¥É¥­¥å¥á¥ó¥È¤Ë¤¢¤ë»Ø¼¨¤Ë½¾¤Ã¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f2\-sourcepath\fP¤¬¾Êά¤µ¤ì¤¿¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¤È¤­¤Î¤ß¤Ç¤Ê¤¯¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤¹¤ë¤È¤­¤Ë¤â\f2\-classpath\fP¤ò»ÈÍѤ·¤Þ¤¹(²¼°Ì¸ß´¹À­¤Î¤¿¤á)¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òÊÌ¡¹¤Î¥Ñ¥¹¤«¤é¸¡º÷¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-sourcepath\fP¤È\f2\-classpath\fP¤ÎξÊý¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢\f2com.mypackage\fP¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¾ì¹ç¤Ë¡¢¤½¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¥Ç¥£¥ì¥¯¥È¥ê\f2/home/user/src/com/mypackage\fP¤Ë¤¢¤ê¡¢¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬\f2/home/user/lib\fPÆâ¤Î¥é¥¤¥Ö¥é¥ê¤Ë°Í¸¤·¤Æ¤¤¤ë¤È¤­¡¢¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-classpath /home/user/lib \-sourcepath /home/user/src com.mypackage\fP
++.fl
++.fi
++¾¤Î¥Ä¡¼¥ë¤ÈƱÍͤˡ¢\f2\-classpath\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢CLASSPATH´Ä¶­ÊÑ¿ô¤¬ÀßÄꤵ¤ì¤Æ¤¤¤ì¤Ð¡¢Javadoc¥Ä¡¼¥ë¤Ï¤½¤Î´Ä¶­ÊÑ¿ô¤ò»ÈÍѤ·¤Þ¤¹¡£¤É¤Á¤é¤âÀßÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¥¯¥é¥¹¤ò¸¡º÷¤·¤Þ¤¹¡£
++.br
++.br
++Javadoc¥Ä¡¼¥ë¤¬\f2\-classpath\fP¤ò»ÈÍѤ·¤Æ¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¤ò¸¡º÷¤¹¤ëÊýË¡¤Ë¤Ä¤¤¤Æ¤Î¡¢³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤ä¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤Ë´ØÏ¢¤·¤¿¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¤Î¸¡º÷ÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++Êص¹¾å¡¢\f2*\fP¤Î¥Ù¡¼¥¹Ì¾¤ò´Þ¤à¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁǤϡ¢\f2.jar\fP¤Þ¤¿¤Ï\f2.JAR\fP¤ò³ÈÄ¥»Ò¤Ë»ý¤Ä¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ò»ØÄꤹ¤ë¤Î¤ÈƱÅù¤È¤ß¤Ê¤µ¤ì¤Þ¤¹(Java¥×¥í¥°¥é¥à¤Ï¤³¤Î2¤Ä¤Î¸Æ½Ð¤·¤ò¶èÊ̤Ǥ­¤Þ¤»¤ó)¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¥Ç¥£¥ì¥¯¥È¥ê\f2foo\fP¤Ë\f2a.jar\fP¤È\f2b.JAR\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁÇ\f2foo/*\fP¤Ï\f2A.jar:b.JAR\fP¤ËŸ³«¤µ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢JAR¥Õ¥¡¥¤¥ë¤Î½çÈÖ¤Ï̤»ØÄê¤È¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥ê¥¹¥È¤Ë¤Ï¡¢±£¤·¥Õ¥¡¥¤¥ë¤â´Þ¤á¡¢»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Þ¤¹¡£\f2*\fP¤Î¤ß¤«¤é¤Ê¤ë¥¯¥é¥¹¡¦¥Ñ¥¹¡¦¥¨¥ó¥È¥ê¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ËŸ³«¤µ¤ì¤Þ¤¹¡£\f2CLASSPATH\fP´Ä¶­ÊÑ¿ô¤â¡¢ÄêµÁ»þ¤Ë¤ÏƱÍͤËŸ³«¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥ï¥¤¥ë¥É¥«¡¼¥ÉŸ³«¤Ïɬ¤º¡¢Java²¾ÁÛ¥Þ¥·¥ó¤Îµ¯Æ°Á°¤Ë¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢´Ä¶­¤ËÌä¹ç¤»¤ò¹Ô¤ï¤Ê¤¤¸Â¤ê¡¢Java¥×¥í¥°¥é¥à¤¬Å¸³«¤µ¤ì¤Æ¤¤¤Ê¤¤¥ï¥¤¥ë¥É¥«¡¼¥É¤òǧ¼±¤¹¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2System.getenv(\\"CLASSPATH\\")\fP¸Æ½Ð¤·¤¬¤½¤ÎÎã¤Ç¤¹¡£
++.TP 3
++\-subpackages\ \ package1:package2:...
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤«¤é»ØÄꤵ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤ª¤è¤Ó¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Æâ¤ËºÆµ¢Åª¤Ë¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤Ë¿·¤·¤¤¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤òÄɲ乤ëºÝ¤ËÊØÍø¤Ç¤¹¡£¿·¤·¤¤¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤¬¼«Æ°Åª¤ËÁȤ߹þ¤Þ¤ì¤ë¤«¤é¤Ç¤¹¡£³Æ\f2package\fP°ú¿ô¤Ï¡¢Ç¤°Õ¤ÎºÇ¾å°Ì¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸(\f2java\fP¤Ê¤É)¤Þ¤¿¤Ï´°Á´½¤¾þ¥Ñ¥Ã¥±¡¼¥¸(\f2javax.swing\fP¤Ê¤É)¤Ë¤Ê¤ê¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò´Þ¤á¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£°ú¿ô¤Ï¡¢¥³¥í¥ó¤Ç¶èÀÚ¤é¤ì¤Þ¤¹(¤¹¤Ù¤Æ¤Î¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à)¡£¥ï¥¤¥ë¥É¥«¡¼¥É¤ÏÉÔÍ×(»ÈÍÑÉÔ²Ä)¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¤Î¸¡º÷¾ì½ê¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢\f2\-sourcepath\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î½èÍý¤ÇÀâÌÀ¤·¤¿¤È¤ª¤ê¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Ë¤¢¤ë¤¬¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï°¤·¤Æ¤¤¤Ê¤¤¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò½èÍý¤·¤Ê¤¤¤Î¤ÇÌòΩ¤Á¤Þ¤¹¡£
++.br
++.br
++Îã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d docs \-sourcepath /home/user/src \-subpackages java:javax.swing\fP
++.fl
++.fi
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¡Öjava¡×¤ª¤è¤Ó¡Öjavax.swing¡×¤È¤¤¤¦Ì¾Á°¤Î¥Ñ¥Ã¥±¡¼¥¸¤È¤³¤ì¤é¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸Á´Éô¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£
++.br
++.br
++\f2\-subpackages\fP¤ò\f2\-exclude\fP¤ÈÁȤ߹礻¤Æ»ÈÍѤ¹¤ë¤È¡¢ÆÃÄê¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò½ü³°¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-exclude\ \ packagename1:packagename2:...
++»ØÄꤵ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤È¤½¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤ò\f2\-subpackages\fP¤Ë¤è¤Ã¤ÆºîÀ®¤µ¤ì¤¿¥ê¥¹¥È¤«¤é̵¾ò·ï¤Ë½ü³°¤·¤Þ¤¹¡£²áµî¤Þ¤¿¤Ï¾­Íè¤Î\f2\-subpackages\fP¥ª¥×¥·¥ç¥ó¤Î»ØÄê¤Ë¤è¤Ã¤ÆÁȤ߹þ¤Þ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤â½ü³°¤ÎÂоݤȤʤê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-sourcepath /home/user/src \-subpackages java \-exclude java.net:java.lang\fP
++.fl
++.fi
++¤³¤Î¾ì¹ç¡¢\f2java.io\fP¡¢\f2java.util\fP¡¢\f2java.math\fP¤Ê¤É¤ÏÁȤ߹þ¤Þ¤ì¤Þ¤¹¤¬¡¢\f2java.net\fP¤È\f2java.lang\fP¤ò¥ë¡¼¥È¤Ë»ý¤Ä¥Ñ¥Ã¥±¡¼¥¸¤Ï½ü³°¤µ¤ì¤Þ¤¹¡£\f2java.lang\fP¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤Ç¤¢¤ë\f2java.lang.ref\fP¤¬½ü³°¤µ¤ì¤ëÅÀ¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-bootclasspath\ classpathlist
++¥Ö¡¼¥È¡¦¥¯¥é¥¹¤¬Â¸ºß¤¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥Ö¡¼¥È¡¦¥¯¥é¥¹¤È¤Ï¡¢Ä̾Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥¯¥é¥¹¤Î¤³¤È¤Ç¤¹¡£¥Ö¡¼¥È¡¦¥¯¥é¥¹¥Ñ¥¹¤Ï¡¢Javadoc¥Ä¡¼¥ë¤¬¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òõ¤¹¤È¤­¤Ë»ÈÍѤ¹¤ë¸¡º÷¥Ñ¥¹¤Î°ìÉô¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2¥¯¥é¥¹¤Î¸¡º÷ÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£\f2classpathlist\fPÆâ¤ÎÊ£¿ô¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥³¥í¥ó(:)¤Ç¶èÀÚ¤ê¤Þ¤¹¡£
++.TP 3
++\-extdirs\ dirlist
++³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤¬Â¸ºß¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤Þ¤¹¡£³ÈÄ¥µ¡Ç½¥¯¥é¥¹¤È¤Ï¡¢Java³ÈÄ¥µ¡Ç½µ¡¹½¤ò»ÈÍѤ¹¤ë¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤Ç¤¹¡£extdirs¤Ï¡¢Javadoc¥Ä¡¼¥ë¤¬¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òõ¤¹¤È¤­¤Ë»ÈÍѤ¹¤ë¸¡º÷¥Ñ¥¹¤Î°ìÉô¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢Á°½Ò¤Î\f2\-classpath\fP¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£\f2dirlist\fPÆâ¤ÎÊ£¿ô¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¥³¥í¥ó(:)¤Ç¶èÀÚ¤ê¤Þ¤¹¡£
++.TP 3
++\-verbose
++Javadoc¤Î¼Â¹ÔÃæ¤Ë¾ÜºÙ¤Ê¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£verbose¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤È¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥í¡¼¥É»þ¡¢¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®»þ(¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤´¤È¤Ë1¤Ä¤Î¥á¥Ã¥»¡¼¥¸)¡¢¤ª¤è¤Ó¥½¡¼¥È»þ¤Ë¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£verbose¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢³ÆJava¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î²òÀϤËÍפ·¤¿»þ´Ö(¥ß¥êÉÃñ°Ì)¤ò¼¨¤¹ÄɲäΥá¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-quiet
++¥¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤Þ¤¿¤Ï·Ù¹ð¥á¥Ã¥»¡¼¥¸°Ê³°¤Î¥á¥Ã¥»¡¼¥¸¤òÍÞÀ©¤·¡¢·Ù¹ð¤È¥¨¥é¡¼¤Î¤ß¤¬É½¼¨¤µ¤ì¤ë¤è¤¦¤Ë¤·¤Æ¡¢¤³¤ì¤é¤ò³Îǧ¤·¤ä¤¹¤¯¤·¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥óʸ»úÎó¤âÍÞÀ©¤·¤Þ¤¹¡£
++.TP 3
++\-breakiterator\
++±Ñʸ¤ÎºÇ½é¤Îʸ¤Î½ª¤ï¤ê¤òȽÃǤ¹¤ëºÝ¤Ë¡¢±Ñ¸ì¸À¸ì¤È¤¤¤¦¥í¥±¡¼¥ë¸ÇÍ­¤Î¥¢¥ë¥´¥ê¥º¥à¤Ç¤Ï¤Ê¤¯¡¢
++.na
++\f2java.text.BreakIterator\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/text/BreakIterator.html¤Î¹ñºÝ²½¤µ¤ì¤¿Ê¸¶­³¦¤ò»ÈÍѤ·¤Þ¤¹(¾¤Î¤¹¤Ù¤Æ¤Î¥í¥±¡¼¥ë¤Ï¤¹¤Ç¤Ë\f2BreakIterator\fP¤ò»ÈÍÑ)¡£\f2ºÇ½é¤Îʸ\fP¤È¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥á¥ó¥Ð¡¼¤Î¼çÀâÌÀ¤Ç¤ÎºÇ½é¤Îʸ¤Î¤³¤È¤Ç¤¹¡£¤³¤Îʸ¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥á¥ó¥Ð¡¼¤ÎÍ×Ìó¤Ë¥³¥Ô¡¼¤µ¤ì¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤Îº÷°ú¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++JDK 1.2°Ê¹ß¡¢BreakIterator¥¯¥é¥¹¤Ï¡¢±Ñ¸ì¤ò½ü¤¯¤¹¤Ù¤Æ¤Î¸À¸ì¤Îʸ¤Î½ª¤ï¤ê¤òȽÃǤ¹¤ë¤¿¤á¤Ë¡¢¤¹¤Ç¤Ë»ÈÍѤµ¤ì¤Æ¤¤¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2\-breakiterator\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢1.2°Ê¹ß¤Ç¤Ï±Ñʸ°Ê³°¤Ë¤Ï¸ú²Ì¤¬¤¢¤ê¤Þ¤»¤ó¡£±Ñʸ¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ÊÆȼ«¤Î¥Ç¥Õ¥©¥ë¥È¤Î¥¢¥ë¥´¥ê¥º¥à¤¬¤¢¤ê¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++±Ñʸ¤Î¥Ç¥Õ¥©¥ë¥È¤Îʸ¶èÀڤꥢ¥ë¥´¥ê¥º¥à \- ¶õÇòʸ»ú¤Þ¤¿¤ÏHTML¥Ö¥í¥Ã¥¯¡¦¥¿¥°(\f2<P>\fP¤Ê¤É)¤¬Â³¤¯¥Ô¥ê¥ª¥É¤ÇÄä»ß¤·¤Þ¤¹¡£
++.TP 2
++o
++breakiteratorʸ¶èÀڤꥢ¥ë¥´¥ê¥º¥à \- °ìÈ̤ˡ¢¼¡¤Î¸ì¤¬Âçʸ»ú¤Ç»Ï¤Þ¤ë¾ì¹ç¡¢¶õÇòʸ»ú¤¬Â³¤¯¥Ô¥ê¥ª¥É¡¢µ¿ÌäÉä¡¢¤Þ¤¿¤Ï´¶Ã²Éä¤ÇÄä»ß¤·¤Þ¤¹¡£¤³¤Î¥¢¥ë¥´¥ê¥º¥à¤Ç¤Ï¡ÖThe serial no. is valid¡×¤Ê¤É¡¢¤Û¤È¤ó¤É¤Î¾Êάɽµ­¤¬½èÍý¤µ¤ì¤Þ¤¹¤¬¡¢¡ÖMr.Smith¡×¤Ï½èÍý¤µ¤ì¤Þ¤»¤ó¡£HTML¥¿¥°¤ä¡¢¿ô»ú¤Þ¤¿¤Ïµ­¹æ¤Ç»Ï¤Þ¤ëʸ¤Ç¤ÏÄä»ß¤·¤Þ¤»¤ó¡£HTML¥¿¥°¤ËËä¤á¹þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ç¤â¡¢¡Ö../filename¡×¤ÎºÇ¸å¤Î¥Ô¥ê¥ª¥É¤ÇÄä»ß¤·¤Þ¤¹¡£
++.RE
++Ãí°Õ: 1.5.0¤«¤é¤Ï¡¢1.4.x¤ËÀߤ±¤é¤ì¤Æ¤¤¤¿breakiterator·Ù¹ð¥á¥Ã¥»¡¼¥¸¤òºï½ü¤·¡¢¥Ç¥Õ¥©¥ë¥È¤Îʸ¶èÀڤꥢ¥ë¥´¥ê¥º¥à¤òÊѹ¹¤·¤Æ¤¤¤Þ¤»¤ó¡£¤Ä¤Þ¤ê¡¢\-breakiterator¥ª¥×¥·¥ç¥ó¤Ï¡¢1.5.0¤Ç¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¤Ê¤¯¤Ê¤ê¡¢¤Þ¤¿¥Ç¥Õ¥©¥ë¥È¤Ë¤¹¤ë¤Ä¤â¤ê¤â¤¢¤ê¤Þ¤»¤ó¡£¤³¤ì¤Ï¡¢¡Ö¼¡¤Î¥á¥¸¥ã¡¼¡¦¥ê¥ê¡¼¥¹¡×(1.5.0)¤Ç¥Ç¥Õ¥©¥ë¥È¤òÊѹ¹¤¹¤ë¤È¤¤¤¦¡¢°ÊÁ°¤ÎÌÜŪ¤È¤ÏµÕ¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¥½¡¼¥¹¡¦¥³¡¼¥É¤òÊѹ¹¤»¤º¡¢1.4.x¤Ç¤Îbreakiterator·Ù¹ð¤ò½üµî¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ç¤â¡¢1.5.0¤«¤é¤Ï²¿¤â¤¹¤ëɬÍפ¬¤Ê¤¯¡¢·Ù¹ð¤Ï¾ÃÌǤ·¤Æ¤¤¤Þ¤¹¡£¤³¤ÎµÕÌá¤ê¤ÎÍýͳ¤Ï¡¢breakiterator¤ò¥Ç¥Õ¥©¥ë¥È¤Ë¤¹¤ë¥á¥ê¥Ã¥È¤è¤ê¤â¡¢¥Ç¥Õ¥©¥ë¥È¤Ë¤¹¤ë¤¿¤á¤ËɬÍפȤʤ롢¸ß´¹À­¤Î¤Ê¤¤¥½¡¼¥¹¤ÎÊѹ¹¤ÎÊý¤¬Ééô¤¬Â礭¤«¤Ã¤¿¤¿¤á¤Ç¤¹¡£¤³¤Î·ï¤Ç³§ÍͤË;ʬ¤Î¼ê´Ö¤ò¤ª¤«¤±¤·¡¢º®Íð¤ò¾·¤¤¤¿¤³¤È¤ò¤ªÏͤӤ¤¤¿¤·¤Þ¤¹¡£
++.TP 3
++\-locale\ language_country_variant
++\f3½ÅÍ×\fP \- \f2\-locale\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢É¸½à¥É¥Ã¥¯¥ì¥Ã¥È¤¬Ä󶡤¹¤ë¤¹¤Ù¤Æ¤Î¥ª¥×¥·¥ç¥ó¡¢¤Þ¤¿¤Ï¤½¤Î¾¤ÎǤ°Õ¤Î¥É¥Ã¥¯¥ì¥Ã¥È¤¬Ä󶡤¹¤ë¤¹¤Ù¤Æ¤Î¥ª¥×¥·¥ç¥ó¤è¤ê\f2Á°\fP(º¸Â¦)¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤·¤Ê¤¤¤È¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤¬±Ñ¸ì¤Çɽ¼¨¤µ¤ì¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Î¤ß¡¢»ØÄꤹ¤ë½ç½ø¤Ë°Í¸¤·¤Þ¤¹¡£
++.br
++.br
++Javadoc¤¬¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤¹¤ë¤È¤­¤Ë»ÈÍѤ¹¤ë¥í¥±¡¼¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î°ú¿ô¤Ï¡¢java.util.Locale¤Î¥É¥­¥å¥á¥ó¥È¤ÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë¥í¥±¡¼¥ë¤Î̾Á°¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2en_US\fP (±Ñ¸ì¡¢Êƹñ)¤Þ¤¿¤Ï\f2en_US_WIN\fP (Windows¤Ç»ÈÍѤµ¤ì¤ë±Ñ¸ì)¤Ê¤É¤Ç¤¹¡£
++.br
++.br
++¥í¥±¡¼¥ë¤ò»ØÄꤹ¤ë¤È¡¢»ØÄꤷ¤¿¥í¥±¡¼¥ë¤Î¥ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬Javadoc¤Ë¤è¤Ã¤ÆÁªÂò¤µ¤ì¤Æ¡¢¥á¥Ã¥»¡¼¥¸(¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¡¢¥ê¥¹¥È¤Èɽ¤Î¸«½Ð¤·¡¢¥Ø¥ë¥×¡¦¥Õ¥¡¥¤¥ë¤ÎÌܼ¡¡¢stylesheet.css¤Î¥³¥á¥ó¥È¤Ê¤É¤Îʸ»úÎó)¤Î¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¤Þ¤¿¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤Ë¥½¡¼¥È¤µ¤ì¤ë¥ê¥¹¥È¤Î¥½¡¼¥È½ç¡¢¤ª¤è¤ÓºÇ½é¤Îʸ¤Î½ª¤ï¤ê¤òȽÃǤ¹¤ë¤¿¤á¤Îʸ¤Î¶èÀÚ¤êʸ»ú¤â¡¢»ØÄꤷ¤¿¥í¥±¡¼¥ë¤Ë¤è¤Ã¤Æ·è¤Þ¤ê¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Ç»ØÄꤵ¤ì¤Æ¤¤¤ë¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤Î¥Æ¥­¥¹¥È¤Î¥í¥±¡¼¥ë¤ò·èÄꤹ¤ë¤â¤Î¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.TP 3
++\-encoding\ name
++¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î̾Á°(\f2EUCJIS/SJIS\fP¤Ê¤É)¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥³¥ó¥Ð¡¼¥¿¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.br
++.br
++\-docencoding¤ª¤è¤Ó\-charset¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-Jflag
++Javadoc¤ò¼Â¹Ô¤¹¤ë¼Â¹Ô»þ¥·¥¹¥Æ¥àjava¤Ë¡¢\f2flag\fP¤òľÀÜÅϤ·¤Þ¤¹¡£\f2J\fP¤È\f2flag\fP¤Î´Ö¤Ë¶õÇòʸ»ú¤òÆþ¤ì¤Ê¤¤¤è¤¦¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¤¿¤È¤¨¤Ð¡¢À¸À®¥É¥­¥å¥á¥ó¥È¤ò½èÍý¤¹¤ë¤¿¤á¤Ë¥·¥¹¥Æ¥à¤Ç32MB¤Î¥á¥â¥ê¡¼¤ò³ÎÊݤ·¤Æ¤ª¤¯É¬Íפ¬¤¢¤ë¾ì¹ç¤Ï¡¢Java¤Î\f2\-Xmx\fP¥ª¥×¥·¥ç¥ó¤ò¼¡¤Î¤è¤¦¤Ë¸Æ¤Ó½Ð¤·¤Þ¤¹(\f2\-Xms\fP¤Ï¾Êά²Äǽ¤Ç¤¹¡£¤³¤ì¤Ï¡¢½é´ü¥á¥â¥ê¡¼¤Î¥µ¥¤¥º¤òÀßÄꤹ¤ë¤Î¤ß¤Î¥ª¥×¥·¥ç¥ó¤Ç¡¢É¬Íפʥá¥â¥ê¡¼¤ÎºÇ¾®Î̤¬¤ï¤«¤Ã¤Æ¤¤¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹)¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-J\-Xmx32m \-J\-Xms32m\fP \f3com.mypackage\fP
++.fl
++.fi
++»ÈÍѤ·¤Æ¤¤¤ëJavadoc¤Î¥Ð¡¼¥¸¥ç¥ó¤ò³Îǧ¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ËJava¤Î¡Ö\f2\-version\fP¡×¥ª¥×¥·¥ç¥ó¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-J\-version\fP
++.fl
++ java version "1.2"
++.fl
++ Classic VM (build JDK\-1.2\-V, green threads, sunwjit)
++.fl
++.fi
++(½ÐÎÏ¥¹¥È¥ê¡¼¥à¤Ë¤Ïɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤Î¥Ð¡¼¥¸¥ç¥óÈֹ椬´Þ¤Þ¤ì¤Þ¤¹¡£)
++.RE
++.SS
++ɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤¬Ä󶡤¹¤ë¥ª¥×¥·¥ç¥ó
++.RS 3
++.TP 3
++\-d\ directory
++À¸À®¤µ¤ì¤¿HTML¥Õ¥¡¥¤¥ë¤òÊݸ¤¹¤ëÀ¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤Þ¤¹¡£(¡Öd¡×¤Ï¡ÖÀ¸À®Àè(destination)¡×¤Î°ÕÌ£¡£)¤³¤Î¥ª¥×¥·¥ç¥ó¤ò¾Êά¤¹¤ë¤È¡¢¥Õ¥¡¥¤¥ë¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÊݸ¤µ¤ì¤Þ¤¹¡£ÃÍ\f2directory\fP¤Ë¤Ï¡¢ÀäÂХǥ£¥ì¥¯¥È¥ê¡¢¤Þ¤¿¤Ï¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХǥ£¥ì¥¯¥È¥ê¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó1.4¤Ç¤Ï¡¢Javadoc¤ò¼Â¹Ô¤¹¤ë¤ÈÀ¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê¤¬¼«Æ°Åª¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¼¡¤ÎÎã¤Ç¤Ï¡¢\f2com.mypackage\fP¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¡¢¤½¤Î·ë²Ì¤¬\f2/home/user/doc/\fP¥Ç¥£¥ì¥¯¥È¥ê¤ËÊݸ¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d /home/user/doc com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-use
++¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥¯¥é¥¹¤ª¤è¤Ó¥Ñ¥Ã¥±¡¼¥¸¤´¤È¤Ë1¤Ä¤Î»ÈÍÑ¥Ú¡¼¥¸¤òÁȤ߹þ¤ß¤Þ¤¹¡£¤³¤Î¥Ú¡¼¥¸¤Ë¤Ï¡¢¤½¤ÎÆÃÄê¤Î¥¯¥é¥¹¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎAPI¤ò»ÈÍѤ·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¡¢¥¯¥é¥¹¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¤ª¤è¤Ó¥Õ¥£¡¼¥ë¥É¤¬µ­½Ò¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥¯¥é¥¹C¤òÎã¤Ë¤È¤ë¤È¡¢¥¯¥é¥¹C¤ò»ÈÍѤ·¤Æ¤¤¤ë¤â¤Î¤È¤·¤Æ¤Ï¡¢C¤Î¥µ¥Ö¥¯¥é¥¹¡¢C¤È¤·¤ÆÀë¸À¤µ¤ì¤Æ¤¤¤ë¥Õ¥£¡¼¥ë¥É¡¢C¤òÊÖ¤¹¥á¥½¥Ã¥É¡¢¤ª¤è¤Ó·¿C¤Î¥Ñ¥é¥á¡¼¥¿¤ò»ý¤Ä¥á¥½¥Ã¥É¤È¥³¥ó¥¹¥È¥é¥¯¥¿¤¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢String¤Î»ÈÍÑ¥Ú¡¼¥¸¤Ë²¿¤¬É½¼¨¤µ¤ì¤ë¤«¤ò¸«¤Æ¤ß¤Þ¤·¤ç¤¦¡£\f2java.awt.Font\fP¥¯¥é¥¹¤Î\f2getName()\fP¥á¥½¥Ã¥É¤Ï¡¢\f2String\fP·¿¤ÎÃͤòÊÖ¤·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2getName()\fP¤Ï\f2String\fP¤ò»ÈÍѤ·¤Æ¤¤¤ë¤Î¤Ç¡¢\f2String\fP¤Î»ÈÍÑ¥Ú¡¼¥¸¤Ë¤³¤Î¥á¥½¥Ã¥É¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¤¿¤À¤·¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¤Î¤ÏAPI¤Î»ÈÍѤΤߤǡ¢¼ÂÁõ¤Ï¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Þ¤»¤ó¡£¤¢¤ë¥á¥½¥Ã¥É¤¬¡¢¤½¤Î¼ÂÁõ¤ÎÃæ¤Ç\f2String\fP¤ò»ÈÍѤ·¤Æ¤¤¤Æ¤â¡¢°ú¿ô¤È¤·¤Æʸ»úÎó¤ò¤È¤Ã¤¿¤ê¡¢Ê¸»úÎó¤òÊÖ¤·¤¿¤ê¤·¤Ê¤¤¾ì¹ç¤Ï¡¢\f2String\fP¤Î¡Ö»ÈÍѡפȤϤߤʤµ¤ì¤Þ¤»¤ó¡£
++.br
++.br
++À¸À®¤µ¤ì¤¿»ÈÍÑ¥Ú¡¼¥¸¤Ë¥¢¥¯¥»¥¹¤¹¤ë¤Ë¤Ï¡¢¤Þ¤ºÌÜŪ¤Î¥¯¥é¥¹¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë°ÜÆ°¤·¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¡Ö»ÈÍѡץê¥ó¥¯¤ò¥¯¥ê¥Ã¥¯¤·¤Þ¤¹¡£
++.TP 3
++\-version
++À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡¢@version¤Î¥Æ¥­¥¹¥È¤òÁȤ߹þ¤ß¤Þ¤¹¡£¤³¤Î¥Æ¥­¥¹¥È¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¾Êά¤µ¤ì¤Þ¤¹¡£»ÈÍѤ·¤Æ¤¤¤ëJavadoc¥Ä¡¼¥ë¤Î¥Ð¡¼¥¸¥ç¥ó¤ò³Îǧ¤¹¤ë¤Ë¤Ï\f2\-J\-version\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-author
++À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¡¢@author¤Î¥Æ¥­¥¹¥È¤òÁȤ߹þ¤ß¤Þ¤¹¡£
++.TP 3
++\-splitindex
++º÷°ú¥Õ¥¡¥¤¥ë¤ò¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È¤´¤È¤ËÊ£¿ô¤Î¥Õ¥¡¥¤¥ë¤Ëʬ³ä¤·¡¢Ê¸»ú¤´¤È¤Ë1¤Ä¤Î¥Õ¥¡¥¤¥ë¤È¡¢¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È°Ê³°¤Îʸ»ú¤Ç»Ï¤Þ¤ëº÷°ú¥¨¥ó¥È¥êÍѤË1¤Ä¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£
++.TP 3
++\-windowtitle\ title
++HTML¤Î<title>¥¿¥°¤ËÇÛÃÖ¤¹¤ë¥¿¥¤¥È¥ë¤ò»ØÄꤷ¤Þ¤¹¡£»ØÄꤷ¤¿¥¿¥¤¥È¥ë¤Ï¡¢¥¦¥£¥ó¥É¥¦¤Î¥¿¥¤¥È¥ë¤ä¡¢¤³¤Î¥Ú¡¼¥¸¤ËÂФ·¤ÆºîÀ®¤µ¤ì¤¿¥Ö¥é¥¦¥¶¤Î¥Ö¥Ã¥¯¥Þ¡¼¥¯(¤ªµ¤¤ËÆþ¤ê)¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¿¥¤¥È¥ë¤Ë¤ÏHTML¥¿¥°¤ò´Þ¤á¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¥¿¥¤¥È¥ë¤ËHTML¥¿¥°¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¤È¡¢¥Ö¥é¥¦¥¶¤¬¥¿¥°¤òÀµ¤·¤¯²ò¼á¤Ç¤­¤Þ¤»¤ó¡£\f2title\fP¤ÎÃæ¤Ç°úÍÑÉä¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢°úÍÑÉä¤ò¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\-windowtitle¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Î¤«¤ï¤ê¤Ë\-doctitle¤ÎÃͤò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-windowtitle "Java SE Platform" com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-doctitle\ title
++³µÍ×¥Õ¥¡¥¤¥ë¤ÎºÇ¾åÉô¤Î¶á¤¯¤ËÇÛÃÖ¤¹¤ë¥¿¥¤¥È¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¥¿¥¤¥È¥ë¤ÏÃæ±û·¤¨¤Ë¤Ê¤ê¡¢¥ì¥Ù¥ë1¤Î¸«½Ð¤·¤È¤·¤Æ¡¢¾åÉô¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¤¹¤°²¼¤ËÃÖ¤«¤ì¤Þ¤¹¡£\f2title\fP¤Ë¤Ï¡¢HTML¥¿¥°¤È¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤³¤ì¤é¤ò´Þ¤á¤ë¾ì¹ç¤Ï¡¢Á´ÂΤò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2title\fP¤ÎÃæ¤Ç°úÍÑÉä¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢°úÍÑÉä¤ò¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-doctitle "Java(TM)" com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-title\ title
++\f3¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¸½ºß¤Ï¸ºß¤·¤Æ¤¤¤Þ¤»¤ó¡£\fPJavadoc 1.2¤Î¥Ù¡¼¥¿ÈǤˤ·¤«Â¸ºß¤·¤Æ¤¤¤Þ¤»¤ó¤Ç¤·¤¿¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2\-doctitle\fP¤È¤¤¤¦Ì¾Á°¤ËÊѹ¹¤µ¤ì¤Þ¤·¤¿¡£Ì¾Á°¤òÊѹ¹¤·¤¿Íýͳ¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤¬¡¢¥¦¥£¥ó¥É¥¦¤Î¥¿¥¤¥È¥ë¤Ç¤Ï¤Ê¤¯¥É¥­¥å¥á¥ó¥È¤Î¥¿¥¤¥È¥ë¤òÄêµÁ¤¹¤ë¤³¤È¤òÌÀ³Î¤Ë¤¹¤ë¤¿¤á¤Ç¤¹¡£
++.TP 3
++\-header\ header
++³Æ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎºÇ¾åÉô¤ËÇÛÃÖ¤¹¤ë¥Ø¥Ã¥À¡¼¡¦¥Æ¥­¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£¥Ø¥Ã¥À¡¼¤Ï¡¢¾åÉô¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î±¦Â¦¤ËÇÛÃÖ¤µ¤ì¤Þ¤¹¡£\f2header\fP¤Ë¤Ï¡¢HTML¥¿¥°¤È¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤³¤ì¤é¤ò´Þ¤á¤ë¾ì¹ç¤Ï¡¢Á´ÂΤò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2header\fP¤ÎÃæ¤Ç°úÍÑÉä¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢°úÍÑÉä¤ò¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-header "<b>Java 2 Platform </b><br>v1.4" com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-footer\ footer
++³Æ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎºÇ²¼Éô¤ËÇÛÃÖ¤¹¤ë¥Õ¥Ã¥¿¡¼¡¦¥Æ¥­¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£¥Õ¥Ã¥¿¡¼¤Ï¡¢²¼Éô¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î±¦Â¦¤ËÇÛÃÖ¤µ¤ì¤Þ¤¹¡£\f2footer\fP¤Ë¤Ï¡¢HTML¥¿¥°¤È¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤³¤ì¤é¤ò´Þ¤á¤ë¾ì¹ç¤Ï¡¢Á´ÂΤò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2footer\fP¤ÎÃæ¤Ç°úÍÑÉä¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢°úÍÑÉä¤ò¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-top
++³Æ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎºÇ¾åÉô¤ËÇÛÃÖ¤¹¤ë¥Æ¥­¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-bottom\ text
++³Æ½ÐÎÏ¥Õ¥¡¥¤¥ë¤ÎºÇ²¼Éô¤ËÇÛÃÖ¤¹¤ë¥Æ¥­¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥Æ¥­¥¹¥È¤Ï¡¢²¼Éô¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤è¤ê²¼¤Î¡¢¥Ú¡¼¥¸¤ÎºÇ²¼Éô¤ËÇÛÃÖ¤µ¤ì¤Þ¤¹¡£\f2text\fP¤Ë¤Ï¡¢HTML¥¿¥°¤È¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¤¬¡¢¤³¤ì¤é¤ò´Þ¤á¤ë¾ì¹ç¤Ï¡¢Á´ÂΤò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2text\fP¤ÎÃæ¤Ç°úÍÑÉä¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢°úÍÑÉä¤ò¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-link\ extdocURL
++´û¸¤ÎJavadoc¤Ë¤è¤êÀ¸À®¤µ¤ì¤¿³°Éô»²¾È¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤·¤Þ¤¹¡£°ú¿ô¤ò1¤Ä¤È¤ê¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f4extdocURL\fP¤Ï¡¢¥ê¥ó¥¯Àè¤È¤·¤Æ»ØÄꤹ¤ë¡¢Javadoc¤Ë¤è¤êÀ¸À®¤µ¤ì¤¿³°Éô¥É¥­¥å¥á¥ó¥È¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤ÎÀäÂÐURL¤Þ¤¿¤ÏÁêÂÐURL¤Ç¤¹¡£¸å¤ÇÎã¤ò¼¨¤·¤Þ¤¹¡£¤³¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ëpackage\-list¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹(¸ºß¤·¤Ê¤¤¾ì¹ç¤Ï¡¢\f2\-linkoffline\fP¤ò»ÈÍѤ·¤Þ¤¹)¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2package\-list\fP¥Õ¥¡¥¤¥ë¤«¤é¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÆɤ߼è¤Ã¤¿¸å¡¢¤½¤ÎURL¤Ç¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥ê¥ó¥¯¤·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Î¼Â¹Ô»þ¤Ë¡¢\f2extdocURL\fP¤ÎÃͤ¬¤½¤Î¤Þ¤Þ¡¢ºîÀ®¤µ¤ì¤¿\f2<A HREF>\fP¥ê¥ó¥¯Æâ¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2extdocURL\fP¤Ï¥Õ¥¡¥¤¥ë¤Ø¤ÎURL¤Ç¤Ï¤Ê¤¯¡¢\f2¥Ç¥£¥ì¥¯¥È¥ê\fP¤Ø¤ÎURL¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++\f2extdocURL\fP¤ËÀäÂÐ¥ê¥ó¥¯¤ò»ÈÍѤ¹¤ë¤È¡¢¥æ¡¼¥¶¡¼¤Î¥É¥­¥å¥á¥ó¥È¤òǤ°Õ¤ÎWeb¥µ¥¤¥È¾å¤Î¥É¥­¥å¥á¥ó¥È¤Ë¥ê¥ó¥¯¤Ç¤­¤Þ¤¹¡£ÁêÂаÌÃ֤إê¥ó¥¯¤¹¤ë¤Î¤ß¤Î¾ì¹ç¤ÏÁêÂÐ¥ê¥ó¥¯¤ò»ÈÍѤǤ­¤Þ¤¹¡£ÁêÂÐ¥ê¥ó¥¯¤Î¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤¬ÅϤ¹Ãͤϡ¢À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê(\f2\-d\fP¤Ç»ØÄê)¤«¤é¥ê¥ó¥¯Àè¤È¤Ê¤ë¥Ñ¥Ã¥±¡¼¥¸¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤ÎÁêÂХѥ¹¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++Ä̾ÀäÂÐ¥ê¥ó¥¯¤ò»ØÄꤹ¤ë¾ì¹ç¤Ï¡¢\f2http:\fP¥ê¥ó¥¯¤ò»ÈÍѤ·¤Þ¤¹¡£Web¥µ¡¼¥Ð¡¼¤ò»ý¤¿¤Ê¤¤¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤Ë¥ê¥ó¥¯¤¹¤ë¾ì¹ç¤Ï¡¢\f2file:\fP¥ê¥ó¥¯¤ò»ÈÍѤǤ­¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤ÎÊýË¡¤Ï¡¢Æ±¤¸¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤ò¶¦Í­¤¹¤ëÀ¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤¹¤Ù¤Æ¤Î¥æ¡¼¥¶¡¼¤¬¥¢¥¯¥»¥¹¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç°Ê³°¤Ï»ÈÍѤ·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.br
++.br
++¤¹¤Ù¤Æ¤Î¾ì¹ç¡¢¤¹¤Ù¤Æ¤Î¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¤Ç¡¢ÀäÂÐURL¤ÈÁêÂÐURL¡¢¡Öhttp:¡×¥Ù¡¼¥¹¤È¡Öfile:¡×¥Ù¡¼¥¹¤Ë¤«¤«¤ï¤é¤º¡¢¥¹¥é¥Ã¥·¥å¤ò¶èÀÚ¤êʸ»ú¤È¤·¤Æ»ÈÍѤ·¤Þ¤¹(
++.na
++\f2URL¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://www.ietf.org/rfc/rfc1738.txt¤Ç»ØÄê)¡£
++.RS 3
++.TP 3
++http: ¥Ù¡¼¥¹¤ÎÀäÂÐ¥ê¥ó¥¯:
++\f2\-link http://<host>/<directory>/<directory>/.../<name>\fP
++.TP 3
++file: ¥Ù¡¼¥¹¤ÎÀäÂÐ¥ê¥ó¥¯:
++\f2\-link file://<host>/<directory>/<directory>/.../<name>\fP
++.TP 3
++ÁêÂÐ¥ê¥ó¥¯:
++\f2\-link <directory>/<directory>/.../<name>\fP
++.RE
++.RE
++1²ó¤ÎJavadoc¤Î¼Â¹Ô¤Ç¡¢Ê£¿ô¤Î\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤ÆÊ£¿ô¤Î¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++\f3\-linkoffline¤Þ¤¿¤Ï\-link¤ÎÁªÂò\fP:
++.br
++.br
++\f2\-link\fP¤ò»ÈÍѤ¹¤ë¾ì¹ç:
++.RS 3
++.TP 2
++o
++³°ÉôAPI¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÁêÂХѥ¹¤ò»ÈÍѤ¹¤ë¾ì¹ç
++.TP 2
++o
++³°ÉôAPI¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÀäÂÐURL¤ò»ÈÍѤ¹¤ë¾ì¹ç(¥×¥í¥°¥é¥à¤¬¤½¤ÎURL¤ËÀܳ¤·¡¢Æɼè¤ê¤ò¹Ô¤¦¤³¤È¤¬¥·¥§¥ë¤Ë¤è¤Ã¤Æµö²Ä¤µ¤ì¤Æ¤¤¤ë¾ì¹ç)
++.RE
++\f2\-linkoffline\fP¤ò»ÈÍѤ¹¤ë¾ì¹ç:
++.RS 3
++.TP 2
++o
++³°ÉôAPI¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÀäÂÐURL¤ò»ÈÍѤ¹¤ë¾ì¹ç(¥×¥í¥°¥é¥à¤¬¤½¤ÎURL¤ËÀܳ¤·¡¢Æɼè¤ê¤ò¹Ô¤¦¤³¤È¤¬¥·¥§¥ë¤Ë¤è¤Ã¤Æ\f2µö²Ä¤µ¤ì¤Æ¤¤¤Ê¤¤\fP¾ì¹ç)¤³¤Î¤è¤¦¤Ê¾õ¶·¤Ï¡¢¥Õ¥¡¥¤¥¢¥¦¥©¡¼¥ë¤ÎÆ⦤«¤é¥Õ¥¡¥¤¥¢¥¦¥©¡¼¥ë¤Î³°Â¦¤Ë¤¢¤ë¥É¥­¥å¥á¥ó¥È¤Ë¥ê¥ó¥¯¤·¤è¤¦¤È¤¹¤ë¾ì¹ç¤ËȯÀ¸¤·¤Þ¤¹¡£
++.RE
++.br
++.br
++\f3³°Éô¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÀäÂÐ¥ê¥ó¥¯¤Î»ÈÍÑÎã\fP \-
++.na
++\f2http://docs.oracle.com/javase/7/docs/api/\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/Æâ¤Î\f2java.lang\fP¡¢\f2java.io\fP¡¢¤½¤Î¾¤ÎJava¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥Ñ¥Ã¥±¡¼¥¸¤Ë¥ê¥ó¥¯¤·¤¿¤¤¤È¤·¤Þ¤¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢Java SE¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥Ñ¥Ã¥±¡¼¥¸¤Ø¤Î¥ê¥ó¥¯»ý¤Ä\f2com.mypackage\fP¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤Ï¡¢¤¿¤È¤¨¤Ð¥¯¥é¥¹¡¦¥Ä¥ê¡¼Æâ¤Î\f2Object\fP¥¯¥é¥¹¤Ø¤Î¥ê¥ó¥¯¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£(\f2\-sourcepath\fP¤ä\f2\-d\fP¤Ê¤É¤Î¾¤Î¥ª¥×¥·¥ç¥ó¤Ïɽ¼¨¤µ¤ì¤Þ¤»¤ó¡£)
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-link http://docs.oracle.com/javase/7/docs/api/ com.mypackage\fP
++.fl
++.fi
++\f3³°Éô¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÁêÂÐ¥ê¥ó¥¯¤Î»ÈÍÑÎã\fP \- 2¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¡¢¤½¤Î¥É¥­¥å¥á¥ó¥È¤¬Javadoc¥Ä¡¼¥ë¤òÊ£¿ô²ó¼Â¹Ô¤·¤¿·ë²ÌÀ¸À®¤µ¤ì¤¿¤â¤Î¤Ç¤¢¤ë¤È¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢¤³¤ì¤é¤Î¥É¥­¥å¥á¥ó¥È¤¬ÁêÂХѥ¹¤Çʬ³ä¤µ¤ì¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£¤³¤ÎÎã¤Î¾ì¹ç¡¢¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢API¤Ç¤¢¤ë\f2com.apipackage\fP¤È¡¢SPI(¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹)¤Ç¤¢¤ë\f2com.spipackage\fP¤Ç¤¹¡£¥É¥­¥å¥á¥ó¥È¤Î³ÊǼÀè¤Ï¡¢\f2docs/api/com/apipackage\fP¤È\f2docs/spi/com/spipackage\fP¤Ç¤¹¡£API¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È¤Ï¤¹¤Ç¤ËÀ¸À®¤µ¤ì¤Æ¤¤¤Æ¡¢\f2docs\fP¤¬¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¢¤ë¾ì¹ç¡¢API¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤ò»ý¤ÄSPI¥Ñ¥Ã¥±¡¼¥¸¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d ./spi \-link ../api com.spipackage\fP
++.fl
++.fi
++\f2\-link\fP¤Î°ú¿ô¤Ï¡¢°¸Àè¥Ç¥£¥ì¥¯¥È¥ê(\f2docs/spi\fP)¤«¤é¤ÎÁêÂХѥ¹¤Ç¤¹¡£
++.br
++.br
++\f3¾ÜºÙ\fP \- \f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥³¡¼¥É¤«¤é¤Ï»²¾È¤µ¤ì¤Æ¤¤¤Æ¤â¡¢º£²ó¤ÎJavadoc¤Î¼Â¹Ô¤Ç¤Ï¥É¥­¥å¥á¥ó¥È²½\f2¤µ¤ì¤Ê¤¤\fP¤È¤¤¤¦¥¯¥é¥¹¤Ë¥ê¥ó¥¯¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£¥ê¥ó¥¯¤«¤éÍ­¸ú¤Ê¥Ú¡¼¥¸¤Ë°ÜÆ°¤Ç¤­¤ë¤è¤¦¤Ë¤¹¤ë¤Ë¤Ï¡¢¤½¤ì¤é¤ÎHTML¥Ú¡¼¥¸¤¬¤¢¤ë¾ì½ê¤òÄ´¤Ù¡¢¤½¤Î¾ì½ê¤ò\f2extdocURL\fP¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¤¿¤È¤¨¤Ð¡¢¥µ¡¼¥É¡¦¥Ñ¡¼¥Æ¥£¤Î¥É¥­¥å¥á¥ó¥È¤«¤é\f2http://docs.oracle.com\fP¾å¤Î\f2java.*\fP¤Î¥É¥­¥å¥á¥ó¥È¤Ë¥ê¥ó¥¯¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++º£²ó¤Î¼Â¹Ô¤ÇJavadoc¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë¥É¥­¥å¥á¥ó¥ÈÆâ¤ÎAPI¤Î¤ß¤òÂоݤ˥ê¥ó¥¯¤òºîÀ®¤¹¤ë¾ì¹ç¤Ï¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò¾Êά¤·¤Þ¤¹¡£(\f2\-link\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤È¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢³°Éô»²¾È¤Î¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤·¤Þ¤»¤ó¡£¤³¤ì¤Ï¡¢¤½¤Î¥É¥­¥å¥á¥ó¥È¤¬Â¸ºß¤¹¤ë¤«¤É¤¦¤«¡¢¤ª¤è¤Ó¸ºß¤¹¤ë¾ì¹ç¤Ï¤½¤Î¾ì½ê¤¬¤ï¤«¤é¤Ê¤¤¤«¤é¤Ç¤¹¡£)
++.br
++.br
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢À¸À®¥É¥­¥å¥á¥ó¥ÈÆâ¤ÎÊ£¿ô¤Î¾ì½ê¤Ë¥ê¥ó¥¯¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++¤â¤¦1¤Ä¤ÎÍÑÅӤϡ¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥È¤Î´Ö¤Ë¥¯¥í¥¹¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¤³¤È¤Ç¤¹¡£°ìÊý¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥È¤ËÂФ·¤ÆJavadoc¤ò¼Â¹Ô¤·¤¿¸å¡¢Â¾Êý¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥»¥Ã¥È¤ËÂФ·¤ÆJavadoc¤òºÆÅټ¹Ԥ¹¤ë¤È¡¢Î¾¥»¥Ã¥È´Ö¤ËÁÐÊý¸þ¤Î¥ê¥ó¥¯¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++\f3¥¯¥é¥¹¤Î»²¾ÈÊýË¡\fP \- ³°Éô»²¾È¥¯¥é¥¹¤Ø¤Î¥ê¥ó¥¯¤ò¡¢¥Æ¥­¥¹¥È¡¦¥é¥Ù¥ë¤Î¤ß¤Ç¤Ï¤Ê¤¯¼ÂºÝ¤Ëɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¼¡¤ÎÊýË¡¤Ç¥¯¥é¥¹¤ò»²¾È¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥á¥½¥Ã¥É¤ÎËÜÂΤǥ¯¥é¥¹¤ò»²¾È¤¹¤ë¤Î¤ß¤Ç¤Ï½½Ê¬¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£\f2import\fPʸ¡¢Àë¸À¤Î¤¤¤º¤ì¤«¤Ç»²¾È¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤Ë¡¢¥¯¥é¥¹\f2java.io.File\fP¤ò»²¾È¤¹¤ëÊýË¡¤ÎÎã¤ò¼¨¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++¤¹¤Ù¤Æ¤Î¥¿¥¤¥×¤Î\f2import\fPʸ¤Î¾ì¹ç: ¥ï¥¤¥ë¥É¥«¡¼¥É¤Ë¤è¤ë¥¤¥ó¥Ý¡¼¥È¡¢Ì¾Á°¤Ë¤è¤ëÌÀ¼¨Åª¤Ê¥¤¥ó¥Ý¡¼¥È¡¢¤Þ¤¿¤Ï\f2java.lang.*\fP¤ËÂФ¹¤ë¼«Æ°¥¤¥ó¥Ý¡¼¥È¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤¹¤ì¤Ð½½Ê¬¤Ç¤¹¡£
++.br
++\f2import java.io.*;\fP
++.br
++1.3.x¤ª¤è¤Ó1.2.x¤Ç¤Ï¡¢Ì¾Á°¤Ë¤è¤ëÌÀ¼¨Åª¤Ê¥¤¥ó¥Ý¡¼¥È¤Î¤ßµ¡Ç½¤·¤Þ¤¹¡£¥ï¥¤¥ë¥É¥«¡¼¥É¤Ë¤è¤ë¥¤¥ó¥Ý¡¼¥Èʸ¤â¡¢\f2java.lang.*\fP¤Î¼«Æ°¥¤¥ó¥Ý¡¼¥È¤âµ¡Ç½¤·¤Þ¤»¤ó¡£
++.TP 2
++o
++Àë¸À¤Î¾ì¹ç:
++.br
++\f2void foo(File f){}\fP
++.br
++¤³¤Î»²¾È¤ò»ÈÍѤ·¡¢¥á¥½¥Ã¥É¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥Õ¥£¡¼¥ë¥É¡¢¥¯¥é¥¹¡¢¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÎÌá¤êÃͤη¿¤Þ¤¿¤Ï¥Ñ¥é¥á¡¼¥¿¤Î·¿¤ËÃÖ¤¯¤«¡¢\f2implements\fP¡¢\f2extends\fP¡¢¤Þ¤¿¤Ï\f2throws\fPʸ¤ËÃÖ¤­¤Þ¤¹¡£
++.RE
++½ÅÍפʷë²Ì¤È¤·¤Æ¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤â¡¢¤³¤ÎÀ©¸Â¤Î¤¿¤á¤Ë¸í¤Ã¤Æɽ¼¨¤µ¤ì¤Ê¤¤¥ê¥ó¥¯¤¬Â¿¿ôȯÀ¸¤¹¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£(¥Æ¥­¥¹¥È¤Ï¥Ï¥¤¥Ñ¡¼¥Æ¥­¥¹¥È¡¦¥ê¥ó¥¯¤¬ÉÕ¤±¤é¤ì¤º¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£)¥ê¥ó¥¯¤¬É½¼¨¤¹¤ë·Ù¹ð¤«¤é¡¢¤³¤ì¤é¤Î¥ê¥ó¥¯¤òǧ¼±¤Ç¤­¤Þ¤¹¡£¥¯¥é¥¹¤òÀµ¤·¤¯»²¾È¤·¡¢¤½¤ì¤Ë¤è¤Ã¤Æ¥ê¥ó¥¯¤òÄɲ乤뤿¤á¤ÎºÇ¤â°ÂÁ´¤ÊÊýË¡¤ÏÁ°½Ò¤·¤¿¤È¤ª¤ê¡¢¤½¤Î¥¯¥é¥¹¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤³¤È¤Ç¤¹¡£
++.br
++.br
++\f3¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È\fP \- \f2\-link\fP¥ª¥×¥·¥ç¥ó¤Ë¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë\f2package\-list\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬¡¢\f2\-link\fP¤Ë»ØÄꤷ¤¿URL¤Ë¸ºß¤·¤Æ¤¤¤ë¤³¤È¤¬É¬ÍפǤ¹¡£\f2package\-list\fP¥Õ¥¡¥¤¥ë¤Ï¡¢¤½¤Î¾ì½ê¤Ë¤¢¤ë¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤Î̾Á°¤Î¥ê¥¹¥È¤¬Æþ¤Ã¤¿Ã±½ã¤Ê¥Æ¥­¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ç¤¹¡£Á°¤ÎÎã¤Ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿URL¤Ç\f2package\-list\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òõ¤·¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÆɤ߹þ¤ó¤À¸å¡¢¤½¤ÎURL¤Ë¤¢¤ë¤½¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤·¤Þ¤·¤¿¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢Java SE 6 API¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È¤Ï
++.na
++\f2http://docs.oracle.com/javase/7/docs/api/package\-list\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/package\-list¤Ë¤¢¤ê¡¢¼¡¤Î¤è¤¦¤ÊÆâÍƤǻϤޤäƤ¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ java.applet
++.fl
++ java.awt
++.fl
++ java.awt.color
++.fl
++ java.awt.datatransfer
++.fl
++ java.awt.dnd
++.fl
++ java.awt.event
++.fl
++ java.awt.font
++.fl
++ etc.
++.fl
++\fP
++.fi
++\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤻ¤º¤ËJavadoc¤ò¼Â¹Ô¤·¤¿¾ì¹ç¡¢Javadoc¤Ï³°Éô»²¾È¥¯¥é¥¹¤Ë°¤¹¤ë̾Á°¤ò¸«¤Ä¤±¤ë¤È¡¢¤½¤Î̾Á°¤ò¥ê¥ó¥¯¤Ê¤·¤Ç½ÐÎϤ·¤Þ¤¹¡£°ìÊý¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿\f2extdocURL\fP¤Î¾ì½ê¤Ë¤¢¤ë\f2package\-list\fP¥Õ¥¡¥¤¥ë¤Ç¤½¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò¸¡º÷¤·¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬¸«¤Ä¤«¤ë¤È¡¢\f2extdocURL\fP¤¬Ì¾Á°¤ÎÁ°¤ËÉղ䵤ì¤Þ¤¹¡£
++.br
++.br
++¤¹¤Ù¤Æ¤Î¥ê¥ó¥¯¤¬Àµ¤·¤¯µ¡Ç½¤¹¤ë¤¿¤á¤Ë¤Ï¡¢³°Éô»²¾È¤Î¤¹¤Ù¤Æ¤Î¥É¥­¥å¥á¥ó¥È¤¬¡¢»ØÄꤷ¤¿URL¤Ë¸ºß¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿package\-list¤¬Â¸ºß¤¹¤ë¤«¤É¤¦¤«¤Î¤ß¤ò¥Á¥§¥Ã¥¯¤·¡¢¤³¤ì¤é¤Î¥Ú¡¼¥¸¤¬Â¸ºß¤¹¤ë¤«¤É¤¦¤«¤Ï¥Á¥§¥Ã¥¯¤·¤Þ¤»¤ó¡£
++.br
++.br
++\f3Ê£¿ô¤Î¥ê¥ó¥¯\fP \- Ê£¿ô¤Î\f2\-link\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢Ç¤°Õ¤Î¿ô¤Î³°ÉôÀ¸À®¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤Ç¤­¤Þ¤¹¡£\ Javadoc 1.2¤Ë¤Ï¡¢Ê£¿ô¤Î\f2\-link\fP¥³¥Þ¥ó¥É¤ò»ØÄê¤Ç¤­¤Ê¤¤¤È¤¤¤¦´ûÃΤΥХ°¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï1.2.2¤Ç½¤Àµ¤µ¤ì¤Þ¤·¤¿¡£
++.br
++.br
++¥ê¥ó¥¯¤¹¤ë³°Éô¥É¥­¥å¥á¥ó¥È¤´¤È¤Ë¡¢¼¡¤Î¤è¤¦¤ËÊÌ¡¹¤Î¥ê¥ó¥¯¡¦¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£
++.br
++.br
++\ \ \f2% \fP\f4javadoc \-link\fP \f2extdocURL1\fP \f4\-link\fP \f2extdocURL2\fP \f2... \fP\f4\-link\fP \f2extdocURLn\fP \f4com.mypackage\fP
++.br
++.br
++\f2extdocURL1\fP¡¢\ \f2extdocURL2\fP¡¢\ ... \f2extdocURLn\fP¤Ï¡¢¤½¤ì¤¾¤ì³°Éô¥É¥­¥å¥á¥ó¥È¤Î¥ë¡¼¥È¤ò»Ø¤·¡¢³Æ¥ë¡¼¥È¤Ë¤Ï¡¢\f2package\-list\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤¬Æþ¤Ã¤Æ¤¤¤Þ¤¹¡£
++.br
++.br
++\f3¥¯¥í¥¹¥ê¥ó¥¯\fP \- ¤Þ¤ÀÀ¸À®¤µ¤ì¤Æ¤¤¤Ê¤¤2¤Ä°Ê¾å¤Î¥É¥­¥å¥á¥ó¥È¤ò¥¯¥í¥¹¥ê¥ó¥¯¤¹¤ë¾ì¹ç¤Ï¡¢¡Ö¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡×¤¬É¬Íפˤʤê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤É¤Î¥É¥­¥å¥á¥ó¥È¤Ë¤Ä¤¤¤Æ¤â\f2package\-list\fP¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ºÇ½é¤Î¥É¥­¥å¥á¥ó¥È¤ËÂФ·¤ÆJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë»þÅÀ¤Ç¡¢2ÈÖÌܤΥɥ­¥å¥á¥ó¥È¤Î\f2package\-list\fP¤Ï¤Þ¤À¸ºß¤·¤Æ¤¤¤Þ¤»¤ó¡£¤·¤¿¤¬¤Ã¤Æ¡¢³°Éô¥ê¥ó¥¯¤òºîÀ®¤¹¤ë¤Ë¤Ï¡¢2ÈÖÌܤΥɥ­¥å¥á¥ó¥È¤òÀ¸À®¤·¤¿¸å¤Ç¡¢ºÇ½é¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·Ä¾¤¹É¬Íפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++¤³¤Î¾ì¹ç¡¢ºÇ½é¤Î¥É¥­¥å¥á¥ó¥ÈÀ¸À®¤ÎÌÜŪ¤Ï¡¢\f2package\-list\fP¤òºîÀ®¤¹¤ë¤³¤È¤Ç¤¹(¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òÇÄ°®¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¼êÆ°¤ÇºîÀ®¤·¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó)¡£¼¡¤Ë¡¢2ÈÖÌܤΥɥ­¥å¥á¥ó¥È¤È¤½¤Î³°Éô¥ê¥ó¥¯¤òÀ¸À®¤·¤Þ¤¹¡£É¬Íפʳ°Éô¤Î\f2package\-list\fP¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Ê¤¤¾ì¹ç¤Ï¡¢Javadoc¥Ä¡¼¥ë¤«¤é·Ù¹ð¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-linkoffline\ extdocURL\ packagelistLoc
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï\f2\-link\fP¤Î¥Ð¥ê¥¨¡¼¥·¥ç¥ó¤Î1¤Ä¤Ç¤¹¡£¤É¤Á¤é¤â¡¢Javadoc¤Ë¤è¤êÀ¸À®¤µ¤ì¤¿³°Éô»²¾È¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯¤òºîÀ®¤·¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¼«ÂΤ¬¡Ö¥ª¥Õ¥é¥¤¥ó¡×¤Ë¤Ê¤Ã¤Æ¤¤¤ë¤È¤­(WebÀܳ¤ò»ÈÍѤ·¤Æ¥É¥­¥å¥á¥ó¥È¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¤È¤­)¡¢Web¾å¤Î¥É¥­¥å¥á¥ó¥È¤Ë¥ê¥ó¥¯¤¹¤ë¤Ë¤Ï¡¢\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++¸·Ì©¤Ë¤Ï¡¢³°Éô¥É¥­¥å¥á¥ó¥È¤Î\f2package\-list\fP¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¤È¤­¡¢¤Þ¤¿¤Ï¤³¤Î¥Õ¥¡¥¤¥ë¤¬\f2extdocURL\fP¤Ç»ØÄꤵ¤ì¤¿¾ì½ê¤Ë¤Ï¸ºß¤»¤º¡¢\f2packageListLoc\fP¤Ç»ØÄê¤Ç¤­¤ëÊ̤ξì½ê(Ä̾ï¥í¡¼¥«¥ë)¤Ë¸ºß¤¹¤ë¤È¤­¡¢\f2\-linkoffline\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2extdocURL\fP¤ËWWW¾å¤Ç¤·¤«¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¾ì¹ç¤Ï¡¢\f2\-linkoffline\fP¤ò»ØÄꤹ¤ë¤³¤È¤Ë¤è¤ê¡¢¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®»þ¤ËJavadoc¥Ä¡¼¥ë¤¬Web¤ËÀܳ¤Ç¤­¤ëɬÍפ¬¤¢¤ë¤È¤¤¤¦À©Ì󤬤ʤ¯¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++¤â¤¦1¤Ä¤ÎÍÑÅӤϡ¢¥É¥­¥å¥á¥ó¥È¤ò¹¹¿·¤¹¤ë¤¿¤á¤Î¡Ö¥Ï¥Ã¥­¥ó¥°¡×¤È¤·¤Æ»ÈÍѤ¹¤ë¤³¤È¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¤Î¥»¥Ã¥ÈÁ´ÂΤËÂФ·¤ÆJavadoc¤ò¼Â¹Ô¤·¤¿¸å¡¢Êѹ¹¤·¤¿°ìÉô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¤Æ¤Î¤ßJavadoc¤òºÆÅټ¹Ԥ·¤Æ¡¢¹¹¿·¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¡¢¥ª¥ê¥¸¥Ê¥ë¤Î¥»¥Ã¥È¤ËÁÞÆþ¤Ç¤­¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£¸å¤ÇÎã¤ò¼¨¤·¤Þ¤¹¡£
++.br
++.br
++\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤Ï°ú¿ô¤ò2¤Ä¼è¤ê¤Þ¤¹¡£Âè1°ú¿ô¤Ï\f2<a href>\fP¥ê¥ó¥¯¤ËÁȤ߹þ¤Þ¤ì¤ëʸ»úÎó¤ò»ØÄꤹ¤ë°ú¿ô¡¢Âè2°ú¿ô¤Ï\f2package\-list\fP¤Î¸¡º÷¾ì½ê¤ò»ØÄꤹ¤ë°ú¿ô¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++\f4extdocURL\fP¤Ï¡¢¥ê¥ó¥¯Àè¤È¤·¤Æ»ØÄꤹ¤ë¡¢Javadoc¤Ë¤è¤êÀ¸À®¤µ¤ì¤¿³°Éô¥É¥­¥å¥á¥ó¥È¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤ÎÀäÂÐURL¤Þ¤¿¤ÏÁêÂÐURL¤Ç¤¹¡£ÁêÂÐURL¤Î¾ì¹ç¡¢Ãͤϡ¢À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê(\f2\-d\fP¤Ç»ØÄê)¤«¤é¥ê¥ó¥¯Àè¤È¤Ê¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥ë¡¼¥È¤Ø¤ÎÁêÂХѥ¹¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢\f2\-link\fP¥ª¥×¥·¥ç¥ó¤Î\f2extdocURL\fP¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++\f4packagelistLoc\fP¤Ï¡¢³°Éô¥É¥­¥å¥á¥ó¥È¤Î\f2package\-list\fP¥Õ¥¡¥¤¥ë¤ò´Þ¤à¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤Î¥Ñ¥¹¤Þ¤¿¤ÏURL¤Ç¤¹¡£¤³¤ì¤Ï¡¢URL (http:¤Þ¤¿¤Ïfile:)¤Ç¤â¥Õ¥¡¥¤¥ë¡¦¥Ñ¥¹¤Ç¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£¤Þ¤¿¡¢ÀäÂХѥ¹¤ÈÁêÂХѥ¹¤Î¤É¤Á¤é¤Ç¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£ÁêÂХѥ¹¤Î¾ì¹ç¤Ï¡¢javadoc¤¬¼Â¹Ô¤µ¤ì¤ë\f2¸½ºß¤Î\fP¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХѥ¹¤È¤·¤Æ»ØÄꤷ¤Þ¤¹¡£¥Õ¥¡¥¤¥ë̾¤Î\f2package\-list\fP¤Ï´Þ¤á¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.RE
++1²ó¤ÎJavadoc¤Î¼Â¹Ô¤Ç¡¢Ê£¿ô¤Î\f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£(1.2.2¤è¤êÁ°¤Ï¡¢1¤Ä¤Î¥ª¥×¥·¥ç¥ó¤·¤«»ØÄê¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£)
++.br
++.br
++\f3³°Éô¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÀäÂÐ¥ê¥ó¥¯¤Î»ÈÍÑÎã\fP \- \f2http://docs.oracle.com/javase/7/docs/api/\fPÆâ¤Î\f2java.lang\fP¡¢\f2java.io\fP¡¢¤½¤Î¾¤ÎJava SE¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥Ñ¥Ã¥±¡¼¥¸¤Ë¥ê¥ó¥¯¤·¤¿¤¤¤¬¡¢Web¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¤È¤·¤Þ¤¹¡£¥Ö¥é¥¦¥¶¤Ç¡¢
++.na
++\f2http://docs.oracle.com/javase/7/docs/api/package\-list\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/package\-list¤Ë¤¢¤ë\f2package\-list\fP¥Õ¥¡¥¤¥ë¤ò³«¤­¡¢¤½¤ì¤ò¥í¡¼¥«¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê¤ËÊݸ¤·¡¢Âè2°ú¿ô\f2packagelistLoc\fP¤Ç¤³¤Î¥í¡¼¥«¥ë¡¦¥³¥Ô¡¼¤Î¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È¡¦¥Õ¥¡¥¤¥ë¤Ï¥«¥ì¥ó¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¡Ö\f2.\fP¡×¤ËÊݸ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢Java SE¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥Ñ¥Ã¥±¡¼¥¸¤Ø¤Î¥ê¥ó¥¯»ý¤Ä\f2com.mypackage\fP¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤Þ¤¹¡£À¸À®¥É¥­¥å¥á¥ó¥È¤Ë¤Ï¡¢¤¿¤È¤¨¤Ð¥¯¥é¥¹¡¦¥Ä¥ê¡¼Æâ¤Î\f2Object\fP¥¯¥é¥¹¤Ø¤Î¥ê¥ó¥¯¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£(\f2\-sourcepath\fP¤Ê¤É¡¢Â¾¤ÎɬÍפʥª¥×¥·¥ç¥ó¤Ïɽ¼¨¤µ¤ì¤Þ¤»¤ó¡£)
++.nf
++\f3
++.fl
++% \fP\f3javadoc \-linkoffline http://docs.oracle.com/javase/7/docs/api/ . com.mypackage\fP
++.fl
++.fi
++\f3³°Éô¥É¥­¥å¥á¥ó¥È¤Ø¤ÎÁêÂÐ¥ê¥ó¥¯¤Î»ÈÍÑÎã\fP \- \f2\-linkoffline\fP¤òÁêÂХѥ¹¤È¤È¤â¤Ë»ÈÍѤ¹¤ë¤³¤È¤Ï¤¢¤Þ¤ê¤¢¤ê¤Þ¤»¤ó¡£Íýͳ¤Ïñ½ã¤Ç¡¢Ä̾ï¤Ï\f2\-link\fP¤Ç´Ö¤Ë¹ç¤¦¤«¤é¤Ç¤¹¡£\f2\-linkoffline\fP¤ò»ÈÍѤ¹¤ëºÝ¡¢\f2package\-list\fP¤Ë¤ÏÄ̾ï¥í¡¼¥«¥ë¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£ÁêÂÐ¥ê¥ó¥¯¤ò»ÈÍѤ¹¤ëºÝ¤â¡¢¥ê¥ó¥¯Àè¤Î¥Õ¥¡¥¤¥ë¤Ë¤ÏÄ̾ï¥í¡¼¥«¥ë¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2\-linkoffline\fP¤Î2¤Ä¤Î°ú¿ô¤ËÊÌ¡¹¤Î¥Ñ¥¹¤ò»ØÄꤹ¤ëɬÍפÏÄ̾濫¤ê¤Þ¤»¤ó¡£2¤Ä¤Î°ú¿ô¤¬Æ±°ì¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-link\fP¤ò»ÈÍѤǤ­¤Þ¤¹¡£\f2\-link\fP¤ÎÁêÂÐ¥ê¥ó¥¯¤ÎÎã¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f4package\-list\fP\f3¥Õ¥¡¥¤¥ë¤ò¼êÆ°¤ÇºîÀ®\fP \- \f2package\-list\fP¥Õ¥¡¥¤¥ë¤¬¤Þ¤À¸ºß¤·¤Ê¤¯¤Æ¤â¡¢¥É¥­¥å¥á¥ó¥È¤Î¥ê¥ó¥¯Àè¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬¤ï¤«¤Ã¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼¤ò¼êÆ°¤ÇºîÀ®¤·¡¢\f2packagelistLoc\fP¤Ç¤½¤Î¥Ñ¥¹¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\f2com.apipackage\fP¤¬ºÇ½é¤ËÀ¸À®¤µ¤ì¤¿»þÅÀ¤Ç\f2com.spipackage\fP¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥ê¥¹¥È¤¬Â¸ºß¤·¤Ê¤¤¤È¤¤¤¦Á°½Ð¤Î¥±¡¼¥¹¤¬°ìÎã¤È¤·¤Æµó¤²¤é¤ì¤Þ¤¹¡£¤³¤ÎÊýË¡¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ï¤ï¤«¤Ã¤Æ¤¤¤ë¤â¤Î¤Î¡¢¤Þ¤À¸ø³«¤µ¤ì¤Æ¤¤¤Ê¤¤¡¢¿·¤·¤¤³°Éô¥É¥­¥å¥á¥ó¥È¤Ë¥ê¥ó¥¯¤¹¤ë¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£¤Þ¤¿¡¢\f2package\-list\fP¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Ê¤¤Javadoc 1.0¤Þ¤¿¤Ï1.1¤ÇÀ¸À®¤µ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸ÍѤË\f2package\-list\fP¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¾ì¹ç¤Ë¤â¡¢¤³¤ÎÊýË¡¤¬»ÈÍѤǤ­¤Þ¤¹¡£Æ±Íͤˡ¢2¤Ä¤Î´ë¶È¤¬Ì¤¸ø³«¤Î\f2package\-list\fP¥Õ¥¡¥¤¥ë¤ò¶¦Í­¤Ç¤­¤ë¤¿¤á¡¢¥¯¥í¥¹¥ê¥ó¥¯¤òÀßÄꤷ¤¿¥É¥­¥å¥á¥ó¥È¤òƱ»þ¤Ë¥ê¥ê¡¼¥¹¤¹¤ë¤³¤È¤â²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++\f3Ê£¿ô¤Î¥É¥­¥å¥á¥ó¥È¤Ø¤Î¥ê¥ó¥¯\fP \- »²¾ÈÀè¤È¤Ê¤ëÀ¸À®¥É¥­¥å¥á¥ó¥È¤´¤È¤Ë\f2\-linkoffline\fP¤ò1¤Ä¤º¤Ä´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹(¤ï¤«¤ê¤ä¤¹¤¯¤¹¤ë¤¿¤á¤Ë¡¢¥ª¥×¥·¥ç¥ó¤´¤È¤Ë²þ¹Ô¤·¤Æ¼¨¤·¤Æ¤¤¤Þ¤¹)¡£
++.br
++.br
++\f2% \fP\f4javadoc \-linkoffline\fP \f2extdocURL1\fP \f2packagelistLoc1\fP \f2\\\fP
++.br
++\f2\ \ \ \ \ \ \ \ \ \ \fP\f4\-linkoffline\fP \f2extdocURL2\fP \f2packagelistLoc2\fP \f2\\\fP
++.br
++\f2\ \ \ \ \ \ \ \ \ \ ...\fP
++.br
++.br
++\f3¥É¥­¥å¥á¥ó¥È¤Î¹¹¿·\fP \- \f2\-linkoffline\fP¥ª¥×¥·¥ç¥ó¤Î¤â¤¦1¤Ä¤ÎÍÑÅӤϡ¢¥×¥í¥¸¥§¥¯¥È¤ËÂçÎ̤Υѥ屡¼¥¸¤¬´Þ¤Þ¤ì¤Æ¤¤¤Æ¡¢¤¹¤Ç¤Ë¥Ä¥ê¡¼Á´ÂΤËÂФ·¤ÆJavadoc¤Î¼Â¹Ô¤¬´°Î»¤·¤Æ¤¤¤ë¾ì¹ç¤Ë¡¢¼¡¤Î¼Â¹Ô¤Ç¤Ï¡¢¾¯Î̤ÎÊѹ¹¤ò¼êÁ᤯²Ã¤¨¤¿¸å¡¢¥½¡¼¥¹¡¦¥Ä¥ê¡¼¤Î¤´¤¯°ìÉô¤ËÂФ·¤Æ¤Î¤ßJavadoc¤òºÆ¼Â¹Ô¤¹¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£¤³¤ì¤Ï¡¢¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ËÂФ·¤Æ¤Î¤ßÊѹ¹¤ò²Ã¤¨¡¢Àë¸À¤ÏÊѹ¹¤·¤Ê¤¤¾ì¹ç¤Ë¤Î¤ßÀµ¤·¤¯½èÍý¤µ¤ì¤ë¤Î¤Ç¡¢¥Ï¥Ã¥­¥ó¥°¤Î¤è¤¦¤Ê¤â¤Î¤Ç¤¹¡£¥½¡¼¥¹¡¦¥³¡¼¥É¤ËÂФ·¤ÆÀë¸À¤òÄɲᢺï½ü¡¢¤Þ¤¿¤ÏÊѹ¹¤·¤¿¾ì¹ç¤Ï¡¢º÷°ú¡¢¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ä¥ê¡¼¡¢·Ñ¾µ¤µ¤ì¤ë¥á¥ó¥Ð¡¼¤Î¥ê¥¹¥È¡¢»ÈÍÑ¥Ú¡¼¥¸¤Ê¤É¤Î¾ì½ê¤Ç¡¢¥ê¥ó¥¯¤¬²õ¤ì¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++¤Þ¤º¡¢¤³¤Î¿·¤·¤¤¾®µ¬ÌϤʼ¹ԤǻÈÍѤ¹¤ë¡¢¿·¤·¤¤À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê(\f2update\fP)¤òºîÀ®¤·¤Þ¤¹¡£¸µ¤ÎÀ¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê¤Î̾Á°¤¬\f2html\fP¤À¤Ã¤¿¤È¤·¤Þ¤¹¡£ºÇ¤âñ½ã¤ÊÎã¤Ç¤Ï¡¢\f2html\fP¥Ç¥£¥ì¥¯¥È¥ê¤Î¿Æ¤Ëcd¤Ë¤è¤Ã¤Æ°ÜÆ°¤·¤Þ¤¹¡£\f2\-linkoffline\fP¤ÎÂè1°ú¿ô¤Ë¥«¥ì¥ó¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¡Ö.¡×¤òÀßÄꤷ¡¢Âè2°ú¿ô¤Ë\f2package\-list\fP¤¬¸¡º÷¤µ¤ì¤ë\f2html\fP¤Ø¤ÎÁêÂХѥ¹¤òÀßÄꤷ¤Þ¤¹¡£¹¹¿·¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Î¤ß¤òÅϤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d update \-linkoffline . html com.mypackage\fP
++.fl
++.fi
++Javadoc¥Ä¡¼¥ë¤Î½ªÎ»¸å¡¢\f2update/com/package\fPÆâ¤ÎÀ¸À®¤µ¤ì¤¿¥¯¥é¥¹¤Î¥Ú¡¼¥¸¤ò¥³¥Ô¡¼¤·(³µÍפäº÷°ú¤Ï½ü¤¯)¡¢\f2html/com/package\fPÆâ¤Î¸µ¤Î¥Õ¥¡¥¤¥ë¤Ë¾å½ñ¤­¤·¤Þ¤¹¡£
++.TP 3
++\-linksource\
++³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(¹ÔÈÖ¹æÉÕ¤­)¤ÎHTML¥Ð¡¼¥¸¥ç¥ó¤òºîÀ®¤·¡¢É¸½àHTML¥É¥­¥å¥á¥ó¥È¤«¤é¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ø¤Î¥ê¥ó¥¯¤òÄɲä·¤Þ¤¹¡£¥ê¥ó¥¯¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤ËÀë¸À¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¡¢¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡¢¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¥Õ¥£¡¼¥ë¥É¤ËÂФ·¤ÆºîÀ®¤µ¤ì¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¡¦¥³¥ó¥¹¥È¥é¥¯¥¿¡¢À¸À®¤µ¤ì¤¿¥¯¥é¥¹¤Ê¤É¤ËÂФ·¤Æ¤ÏºîÀ®¤µ¤ì¤Þ¤»¤ó¡£
++.br
++.br
++\f3¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\fP\f4\-public\fP\f3¡¢\fP\f4\-package\fP\f3¡¢\fP\f4\-protected\fP\f3¡¢\fP\f4\-private\fP\f3¤Î³Æ¥ª¥×¥·¥ç¥ó¤È¤Ï´Ø·¸¤Ê¤¯\fP\f3¡¢Èó¸ø³«¤Î¥¯¥é¥¹¡¢¥Õ¥£¡¼¥ë¥É¡¢Èó¸ø³«¤Î¥á¥½¥Ã¥É¤ÎËÜÂΤò¤Ï¤¸¤á¤È¤¹¤ëÁȤ߹þ¤Þ¤ì¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Î\fP\f4¤¹¤Ù¤Æ¤Î\fP\f3Èó¸ø³«¼ÂÁõ¤Î¾ÜºÙ¤ò¸ø³«¤·¤Þ¤¹¡£\fP\f2\-private\fP¥ª¥×¥·¥ç¥ó¤âÊ»¤»¤Æ»ØÄꤷ¤Ê¤¤¤«¤®¤ê¡¢Èó¸ø³«¤Î¥¯¥é¥¹¤ä¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î°ìÉô¤Ë¤Ï¡¢¥ê¥ó¥¯¤ò²ð¤·¤Æ¥¢¥¯¥»¥¹¤Ç¤­¤Ê¤¤¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++³Æ¥ê¥ó¥¯¤Ï¡¢¤½¤ÎÀë¸ÀÆâ¤Î¼±ÊÌ»Ò̾¤Î¾å¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2Button\fP¥¯¥é¥¹¤Î¥½¡¼¥¹¡¦¥³¡¼¥É¤Ø¤Î¥ê¥ó¥¯¤Ï¡¢¡ÖButton¡×¤È¤¤¤¦¸ì¤Î¾å¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ public class Button
++.fl
++ extends Component
++.fl
++ implements Accessible
++.fl
++\fP
++.fi
++¤Þ¤¿¡¢Button¥¯¥é¥¹¤Î\f2getLabel()\fP¥á¥½¥Ã¥É¤Î¥½¡¼¥¹¡¦¥³¡¼¥É¤Ø¤Î¥ê¥ó¥¯¤Ï¡¢¡ÖgetLabel¡×¤È¤¤¤¦¸ì¤Î¾å¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ public String getLabel()
++.fl
++\fP
++.fi
++.TP 3
++\-group\ groupheading\ packagepattern:packagepattern:...
++³µÍ×¥Ú¡¼¥¸¤ÎÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¡¢»ØÄꤷ¤¿¥°¥ë¡¼¥×¤Ëʬ¤±¤Æ¡¢¥°¥ë¡¼¥×¤´¤È¤Ëɽ¤òºîÀ®¤·¤Þ¤¹¡£³Æ¥°¥ë¡¼¥×¤Ï¡¢¤½¤ì¤¾¤ìÊ̤Î\f2\-group\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤷ¤Þ¤¹¡£¤³¤ì¤é¤Î¥°¥ë¡¼¥×¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤¿½ç½ø¤Ç¥Ú¡¼¥¸¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£³Æ¥°¥ë¡¼¥×Æâ¤Ç¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤¬¥¢¥ë¥Õ¥¡¥Ù¥Ã¥È½ç¤Ëʤ٤é¤ì¤Þ¤¹¡£1¤Ä¤Î\f2\-group\fP¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢\f2packagepattern\fP¼°¤Î¥ê¥¹¥È¤Ë°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¡¢¸«½Ð¤·¤È¤·¤Æ\f2groupheading\fP¤ò»ý¤Ä1¤Ä¤Îɽ¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f4groupheading\fP¤Ë¤Ï¡¢Ç¤°Õ¤Î¥Æ¥­¥¹¥È¤ò»ØÄê¤Ç¤­¡¢¶õÇò¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£»ØÄꤷ¤¿¥Æ¥­¥¹¥È¤Ï¡¢¥°¥ë¡¼¥×¤Îɽ¸«½Ð¤·¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f4packagepattern\fP¤Ë¤Ï¡¢Ç¤°Õ¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¡¢¤Þ¤¿¤ÏǤ°Õ¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ÎÀèƬÉôʬ¤È¤½¤ì¤Ë³¤¯1¤Ä¤Î¥¢¥¹¥¿¥ê¥¹¥¯(\f2*\fP)¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¡¢¡ÖǤ°Õ¤Îʸ»ú¤Ë°ìÃפ¹¤ë¡×¤È¤¤¤¦°ÕÌ£¤Î¥ï¥¤¥ë¥É¥«¡¼¥É¤Ç¤¹¡£¥ï¥¤¥ë¥É¥«¡¼¥É¤È¤·¤Æ»ØÄê¤Ç¤­¤ë¤Î¤Ï¡¢¥¢¥¹¥¿¥ê¥¹¥¯¤Î¤ß¤Ç¤¹¡£1¤Ä¤Î¥°¥ë¡¼¥×¤Ë¤Ï¡¢¥³¥í¥ó(\f2:\fP)¤Ç¶èÀڤäÆÊ£¿ô¤Î¥Ñ¥¿¡¼¥ó¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++\f3Ãí°Õ: ¥Ñ¥¿¡¼¥ó¤ä¥Ñ¥¿¡¼¥ó¡¦¥ê¥¹¥ÈÆâ¤Ç¥¢¥¹¥¿¥ê¥¹¥¯¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢\fP\f4"java.lang*:java.util"\fP\f3¤Î¤è¤¦¤Ë¡¢¥Ñ¥¿¡¼¥ó¡¦¥ê¥¹¥È¤ò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£\fP
++.br
++.br
++\f2\-group\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¤¹¤Ù¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¡¢¡Ö¥Ñ¥Ã¥±¡¼¥¸¡×¤È¤¤¤¦¸«½Ð¤·¤Î1¤Ä¤Î¥°¥ë¡¼¥×¤ËÆþ¤ì¤é¤ì¤Þ¤¹¡£¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤ÎÃæ¤Ë¡¢¤É¤Î¥°¥ë¡¼¥×¤Ë¤âÆþ¤é¤Ê¤¤¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ë¾ì¹ç¡¢¤³¤Î¤è¤¦¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Ï¡Ö¤½¤Î¾¤Î¥Ñ¥Ã¥±¡¼¥¸¡×¤È¤¤¤¦¸«½Ð¤·¤ò»ý¤ÄÆÈΩ¤·¤¿¥°¥ë¡¼¥×¤ËÆþ¤ì¤é¤ì¤Þ¤¹¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤ë5¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ï¡¢¥³¥¢¡¦¥Ñ¥Ã¥±¡¼¥¸¡¢³ÈÄ¥µ¡Ç½¥Ñ¥Ã¥±¡¼¥¸¡¢¤ª¤è¤Ó¤½¤Î¾¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ëʬ¤±¤é¤ì¤Þ¤¹¡£¡Öjava.lang*¡×¤Ç¤Ï¡¢ºÇ¸å¤Î¥É¥Ã¥È¤ò»ØÄꤷ¤Æ¤¤¤Ê¤¤¤³¤È¤ËÃíÌܤ·¤Æ¤¯¤À¤µ¤¤¡£¡Öjava.lang.*¡×¤Î¤è¤¦¤Ë¥É¥Ã¥È¤òÆþ¤ì¤ë¤È¡¢java.lang¥Ñ¥Ã¥±¡¼¥¸¤Ï½ü³°¤µ¤ì¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-group "Core Packages" "java.lang*:java.util"
++.fl
++ \-group "Extension Packages" "javax.*"
++.fl
++ java.lang java.lang.reflect java.util javax.servlet java.new\fP
++.fl
++.fi
++¤³¤Î·ë²Ì¡¢¼¡¤Î¤è¤¦¤Ê¥°¥ë¡¼¥×²½¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.RS 3
++.TP 3
++¥³¥¢¡¦¥Ñ¥Ã¥±¡¼¥¸
++\f2java.lang\fP
++\f2java.lang.reflect\fP
++\f2java.util\fP
++.TP 3
++³ÈÄ¥µ¡Ç½¥Ñ¥Ã¥±¡¼¥¸
++\f2javax.servlet\fP
++.TP 3
++¤½¤Î¾¤Î¥Ñ¥Ã¥±¡¼¥¸
++\f2java.new\fP
++.RE
++.TP 3
++\-nodeprecated
++¿ä¾©¤µ¤ì¤Ê¤¤API¤ò¥É¥­¥å¥á¥ó¥È¤ËÀ¸À®¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢\-nodeprecatedlist¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤ÈƱ¤¸¸ú²Ì¤¬¤¢¤ë¤³¤È¤Ë²Ã¤¨¤Æ¡¢¥É¥­¥å¥á¥ó¥È¤Î¾¤ÎÉôʬÁ´ÂΤǤ⡢¿ä¾©¤µ¤ì¤Ê¤¤API¤¬À¸À®¤µ¤ì¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥³¡¼¥É¤òµ­½Ò¤·¤Æ¤¤¤ë¤È¤­¡¢¿ä¾©¤µ¤ì¤Ê¤¤¥³¡¼¥É¤Ë¤è¤Ã¤Æµ¤¤ò»¶¤é¤µ¤ì¤¿¤¯¤Ê¤¤¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£
++.TP 3
++\-nodeprecatedlist
++¿ä¾©¤µ¤ì¤Ê¤¤API¤Î¥ê¥¹¥È¤ò´Þ¤à¥Õ¥¡¥¤¥ë(deprecated\-list.html)¡¢¤ª¤è¤Ó¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¤½¤Î¥Ú¡¼¥¸¤Ø¤Î¥ê¥ó¥¯¤¬À¸À®¤µ¤ì¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£(¤¿¤À¤·¡¢¥É¥­¥å¥á¥ó¥È¤Î¾¤ÎÉôʬ¤Ç¤Ï¡¢¿ä¾©¤µ¤ì¤Ê¤¤API¤¬À¸À®¤µ¤ì¤Þ¤¹¡£)¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¿ä¾©¤µ¤ì¤Ê¤¤API¤¬¥½¡¼¥¹¡¦¥³¡¼¥É¤Ë´Þ¤Þ¤ì¤Æ¤ª¤é¤º¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤ò¤¹¤Ã¤­¤ê¤È¸«¤»¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£
++.TP 3
++\-nosince
++À¸À®¥É¥­¥å¥á¥ó¥È¤«¤é¡¢@since¥¿¥°¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿¡ÖƳÆþ¤µ¤ì¤¿¥Ð¡¼¥¸¥ç¥ó¡×¥»¥¯¥·¥ç¥ó¤ò¾Êά¤·¤Þ¤¹¡£
++.TP 3
++\-notree
++À¸À®¥É¥­¥å¥á¥ó¥È¤«¤é¡¢¥¯¥é¥¹¤ª¤è¤Ó¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î³¬ÁØ¥Ú¡¼¥¸¤ò¾Êά¤·¤Þ¤¹¡£¤³¤ì¤é¤Î¥Ú¡¼¥¸¤Ë¤Ï¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¡Ö³¬Áإĥ꡼¡×¥Ü¥¿¥ó¤«¤é¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢³¬Áؤ¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-noindex
++À¸À®¥É¥­¥å¥á¥ó¥È¤«¤é¡¢º÷°ú¤ò¾Êά¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢º÷°ú¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-nohelp
++½ÐÎϤγƥڡ¼¥¸¤ÎºÇ¾åÉô¤ÈºÇ²¼Éô¤Ë¤¢¤ë¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤«¤é¡Ö¥Ø¥ë¥×¡×¥ê¥ó¥¯¤ò¾Êά¤·¤Þ¤¹¡£
++.TP 3
++\-nonavbar
++À¸À®¤µ¤ì¤ë¥Ú¡¼¥¸¤ÎºÇ¾åÉô¤ÈºÇ²¼Éô¤Ëɽ¼¨¤µ¤ì¤ë¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¡¢¥Ø¥Ã¥À¡¼¡¢¤ª¤è¤Ó¥Õ¥Ã¥¿¡¼¤òÀ¸À®¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢bottom¥ª¥×¥·¥ç¥ó¤Ë¤Ï±Æ¶Á¤òÍ¿¤¨¤Þ¤»¤ó¡£\f2\-nonavbar\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢°õºþ¤¹¤ë¤¿¤á¤Ë¤Î¤ß¥Õ¥¡¥¤¥ë¤òPostScript¤äPDF¤ËÊÑ´¹¤¹¤ë¾ì¹ç¤Ê¤É¡¢ÆâÍƤΤߤ¬½ÅÍפǡ¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¤ÎɬÍפ¬¤Ê¤¤¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£
++.TP 3
++\-helpfile\ path/filename
++ºÇ¾åÉô¤ª¤è¤ÓºÇ²¼Éô¤Î¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼¤Î¡Ö¥Ø¥ë¥×¡×¥ê¥ó¥¯¤Î¥ê¥ó¥¯Àè¤È¤Ê¤ëÂåÂإإë¥×¡¦¥Õ¥¡¥¤¥ë\f2path/filename\fP¤Î¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤È¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ä¡¼¥ëÆâ¤Ç¥Ï¡¼¥É¥³¡¼¥É¤µ¤ì¤Æ¤¤¤ë¥Ø¥ë¥×¡¦¥Õ¥¡¥¤¥ë\f2help\-doc.html\fP¤ò¼«Æ°ºîÀ®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¤½¤Î¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ç¤­¤Þ¤¹¡£\f2filename\fP¤Ë¤Ï¤É¤ó¤Ê¥Õ¥¡¥¤¥ë̾¤Ç¤â»ØÄê¤Ç¤­¡¢\f2help\-doc.html\fP¤Ë¸ÂÄꤵ¤ì¤Þ¤»¤ó¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ê¥Ó¥²¡¼¥·¥ç¥ó¡¦¥Ð¡¼Æâ¤Î¥ê¥ó¥¯¤òɬÍפ˱þ¤¸¤ÆÄ´À°¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-helpfile /home/user/myhelp.html java.awt\fP
++.fl
++.fi
++.TP 3
++\-stylesheetfile\ path/filename
++ÂåÂØHTML¥¹¥¿¥¤¥ë¥·¡¼¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤È¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¥Ä¡¼¥ëÆâ¤Ç¥Ï¡¼¥É¥³¡¼¥É¤µ¤ì¤Æ¤¤¤ë¥¹¥¿¥¤¥ë¥·¡¼¥È¡¦¥Õ¥¡¥¤¥ë\f2stylesheet.css\fP¤ò¼«Æ°ºîÀ®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¤½¤Î¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ç¤­¤Þ¤¹¡£\f2filename\fP¤Ë¤Ï¤É¤ó¤Ê¥Õ¥¡¥¤¥ë̾¤Ç¤â»ØÄê¤Ç¤­¡¢\f2stylesheet.css\fP¤Ë¸ÂÄꤵ¤ì¤Þ¤»¤ó¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-stylesheetfile /home/user/mystylesheet.css com.mypackage\fP
++.fl
++.fi
++.TP 3
++\-serialwarn
++@serial¥¿¥°¤¬¤Ê¤¤¾ì¹ç¤Ï¡¢¥³¥ó¥Ñ¥¤¥ë»þ¤Ë·Ù¹ð¤òÀ¸À®¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢Javadoc 1.2.2 (°Ê¹ß)¤Ç¤Ï¡¢Ä¾Î󲽤ηٹð¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£(°ÊÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤È¤ÏµÕ¤ÎÆ°ºî¤Ç¤¹¡£)¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢Ä¾Î󲽤ηٹð¤¬É½¼¨¤µ¤ì¤ë¤Î¤Ç¡¢¥Ç¥Õ¥©¥ë¥È¤ÎľÎó²½²Äǽ¥Õ¥£¡¼¥ë¥É¤È\f2writeExternal\fP¥á¥½¥Ã¥É¤òŬÀڤ˥ɥ­¥å¥á¥ó¥È²½¤¹¤ë¤Î¤ËÌòΩ¤Á¤Þ¤¹¡£
++.TP 3
++\-charset\ name
++¤³¤Î¥É¥­¥å¥á¥ó¥ÈÍѤÎHTMLʸ»ú¥»¥Ã¥È¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î̾Á°¤Ï¡¢
++.na
++\f2IANA¥ì¥¸¥¹¥È¥ê\fP @
++.fi
++http://www.iana.org/assignments/character\-sets¤Ç»ØÄꤵ¤ì¤¿¡¢¿ä¾©¤µ¤ì¤ëMIME̾¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-charset "iso\-8859\-1" mypackage\fP
++.fl
++.fi
++À¸À®¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Ú¡¼¥¸¤ÎÀèƬ¤Ë¡¢¼¡¤Î¹Ô¤¬ÁÞÆþ¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ <META http\-equiv="Content\-Type" content="text/html; charset=ISO\-8859\-1">
++.fl
++\fP
++.fi
++¤³¤ÎMETA¥¿¥°¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2HTMLµ¬³Ê\fP @
++.fi
++http://www.w3.org/TR/REC\-html40/charset.html#h\-5.2.2(4197265¤ª¤è¤Ó4137321)¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\-encoding¤ª¤è¤Ó\-docencoding¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-docencoding\ name
++À¸À®¤µ¤ì¤ëHTML¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î̾Á°¤Ï¡¢
++.na
++\f2IANA¥ì¥¸¥¹¥È¥ê\fP @
++.fi
++http://www.iana.org/assignments/character\-sets¤Ç»ØÄꤵ¤ì¤¿¡¢¿ä¾©¤µ¤ì¤ëMIME̾¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò¾Êά¤·¤Ê¤¬¤é\-encoding¤ò»ÈÍѤ·¤¿¾ì¹ç¡¢À¸À®¤µ¤ì¤ëHTML¥Õ¥¡¥¤¥ë¤Î¥¨¥ó¥³¡¼¥É¤Ï¡¢\-encoding¤Ë¤è¤Ã¤Æ·è¤á¤é¤ì¤Þ¤¹¡£Îã:
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-docencoding "ISO\-8859\-1" mypackage\fP
++.fl
++.fi
++\-encoding¤ª¤è¤Ó\-charset¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-keywords
++HTML¥á¥¿¡¦¥­¡¼¥ï¡¼¥É¡¦¥¿¥°¤ò¡¢¥¯¥é¥¹¤´¤È¤ËÀ¸À®¤µ¤ì¤ë¥Õ¥¡¥¤¥ë¤ËÄɲä·¤Þ¤¹¡£¤³¤ì¤é¤Î¥¿¥°¤Ï¡¢¥á¥¿¥¿¥°¤ò¸¡º÷¤¹¤ë¥µ¡¼¥Á¡¦¥¨¥ó¥¸¥ó¤¬¥Ú¡¼¥¸¤ò¸«¤Ä¤±¤ë¾ì¹ç¤ËÌòΩ¤Á¤Þ¤¹¡£(¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈÁ´ÂΤò¸¡º÷¤¹¤ë¿¤¯¤Î¥µ¡¼¥Á¡¦¥¨¥ó¥¸¥ó¤Ï¡¢¥Ú¡¼¥¸¤¬¥á¥¿¥¿¥°¤ò¸íÍѤ·¤Æ¤¤¤ë²ÄǽÀ­¤¬¤¢¤ë¤¿¤á¡¢¥á¥¿¥¿¥°¤òÄ´¤Ù¤Þ¤»¤ó¡£°ìÊý¡¢¸¡º÷¤ò¼«¿È¤ÎWeb¥µ¥¤¥È¤Ë¸ÂÄꤷ¤Æ¤¤¤ë´ë¶È¤¬Ä󶡤¹¤ë¥µ¡¼¥Á¡¦¥¨¥ó¥¸¥ó¤Ï¡¢¥á¥¿¥¿¥°¤òÄ´¤Ù¤ë¤³¤È¤Ë¤è¤Ã¤Æ¥á¥ê¥Ã¥È¤òÆÀ¤é¤ì¤Þ¤¹¡£)
++.br
++.br
++¥á¥¿¥¿¥°¤Ë¤Ï¡¢¥¯¥é¥¹¤Î´°Á´½¤¾þ̾¤È¡¢¥Õ¥£¡¼¥ë¥É¤ª¤è¤Ó¥á¥½¥Ã¥É¤Î½¤¾þ¤µ¤ì¤Æ¤¤¤Ê¤¤Ì¾Á°¤¬´Þ¤Þ¤ì¤Þ¤¹¡£¥³¥ó¥¹¥È¥é¥¯¥¿¤Ï¡¢¥¯¥é¥¹Ì¾¤ÈƱ¤¸¤Ç¤¢¤ë¤¿¤á´Þ¤Þ¤ì¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢¥¯¥é¥¹String¤Ï¼¡¤Î¥­¡¼¥ï¡¼¥É¤Ç³«»Ï¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ <META NAME="keywords" CONTENT="java.lang.String class">
++.fl
++ <META NAME="keywords" CONTENT="CASE_INSENSITIVE_ORDER">
++.fl
++ <META NAME="keywords" CONTENT="length()">
++.fl
++ <META NAME="keywords" CONTENT="charAt()">
++.fl
++\fP
++.fi
++.TP 3
++\-tag\ \ tagname:Xaoptcmf:"taghead"
++Javadoc¥Ä¡¼¥ë¤¬¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤Î°ú¿ô¤ò1¤Ä¼è¤ëñ½ã¤Ê¥«¥¹¥¿¥à¥Ö¥í¥Ã¥¯¡¦¥¿¥°\f2@\fP\f2tagname\fP¤ò²ò¼á¤Ç¤­¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢Javadoc¥Ä¡¼¥ë¤Ï¥¿¥°Ì¾¤Î¡Ö¥¹¥Ú¥ë¥Á¥§¥Ã¥¯¡×¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤ë¤Î¤Ç¡¢¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤Ë¸ºß¤¹¤ë¤¹¤Ù¤Æ¤Î¥«¥¹¥¿¥à¡¦¥¿¥°¤Ë¤Ä¤¤¤Æ¡¢\f2\-tag\fP¥ª¥×¥·¥ç¥ó¤òÁȤ߹þ¤à¤³¤È¤¬½ÅÍפǤ¹¡£º£²ó¤Î¼Â¹Ô¤Ç¤Ï½ÐÎϤµ¤ì¤Ê¤¤¥¿¥°¤Ï¡¢\f2X\fP¤òÉÕ¤±¤Æ̵¸ú¤Ë¤·¤Þ¤¹¡£
++.br
++.br
++¥³¥í¥ó(\f4:\fP)¤¬¾ï¤Ë¶èÀÚ¤êʸ»ú¤Ë¤Ê¤ê¤Þ¤¹¡£\f2tagname\fP¤Ç¥³¥í¥ó¤ò»ÈÍѤ¹¤ëÊýË¡¤Ë¤Ä¤¤¤Æ¤Ï¡¢¥¿¥°Ì¾¤Ç¤Î¥³¥í¥ó¤Î»ÈÍѤò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f2\-tag\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢¥¿¥°¤Î¸«½Ð¤·\f2taghead\fP¤òÂÀ»ú¤Ç½ÐÎϤ·¤Þ¤¹¡£¤½¤Î¼¡¤Î¹Ô¤Ë¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Î°ú¿ô¤Ç»ØÄꤷ¤¿¥Æ¥­¥¹¥È¤¬Â³¤­¤Þ¤¹(²¼¤ÎÎã¤ò»²¾È)¡£¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤ÈƱÍÍ¡¢¤³¤Î°ú¿ô¤Î¥Æ¥­¥¹¥È¤Ë¤Ï¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤â²ò¼á¤µ¤ì¤Þ¤¹¡£½ÐÎϤϡ¢°ú¿ô¤ò1¤Ä¼è¤ëɸ½à¤Î¥¿¥°(\f2@return\fP¤ä\f2@author\fP¤Ê¤É)¤Î½ÐÎϤȤ褯»÷¤Æ¤¤¤Þ¤¹¡£\f2taghead\fP¤ò¾Êά¤¹¤ë¤È¡¢\f2tagname\fP¤¬¸«½Ð¤·¤È¤·¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++\f3¥¿¥°¤ÎÇÛÃÖ\fP \- °ú¿ô¤Î\f4Xaoptcmf\fPÉôʬ¤Ï¡¢¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤Î¥¿¥°¤òÇÛÃ֤Ǥ­¤ë°ÌÃ֤ȡ¢¥¿¥°¤ò(\f2X\fP¤ò»ÈÍѤ·¤Æ)̵¸ú¤Ë¤Ç¤­¤ë¤«¤É¤¦¤«¤ò·èÄꤷ¤Þ¤¹¡£¥¿¥°¤ÎÇÛÃÖ°ÌÃÖ¤òÀ©¸Â¤·¤Ê¤¤¾ì¹ç¤Ï\f4a\fP¤ò»ØÄꤷ¤Þ¤¹¡£¤½¤ì°Ê³°¤Îʸ»ú¤ÎÁȹ礻¤â²Äǽ¤Ç¤¹¡£
++.br
++.br
++\f4X\fP (¥¿¥°¤Î̵¸ú²½)
++.br
++\f4a\fP (¤¹¤Ù¤Æ)
++.br
++\f4o\fP (³µÍ×)
++.br
++\f4p\fP (¥Ñ¥Ã¥±¡¼¥¸)
++.br
++\f4t\fP (·¿¡¢¤Ä¤Þ¤ê¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹)
++.br
++\f4c\fP (¥³¥ó¥¹¥È¥é¥¯¥¿)
++.br
++\f4m\fP (¥á¥½¥Ã¥É)
++.br
++\f4f\fP (¥Õ¥£¡¼¥ë¥É)
++.br
++.br
++\f3¥·¥ó¥°¥ë¡¦¥¿¥°¤ÎÎã\fP \- ¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤ÎǤ°Õ¤Î°ÌÃ֤ǻÈÍѤǤ­¤ë¥¿¥°¤Î¥¿¥°¡¦¥ª¥×¥·¥ç¥ó¤ÎÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-tag todo:a:"To Do:"
++.fl
++\fP
++.fi
++@todo¤ò¥³¥ó¥¹¥È¥é¥¯¥¿¡¢¥á¥½¥Ã¥É¡¢¥Õ¥£¡¼¥ë¥É¤Î¤ß¤Ç»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-tag todo:cmf:"To Do:"
++.fl
++\fP
++.fi
++¾å¤ÎÎã¤ÎºÇ¸å¤Î¥³¥í¥ó(\f2:\fP)¤Ï¡¢¥Ñ¥é¥á¡¼¥¿¶èÀÚ¤êʸ»ú¤Ç¤Ï¤Ê¤¯¡¢¸«½Ð¤·¥Æ¥­¥¹¥È¤Î°ìÉô¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹(²¼¤ÎÎã¤ò»²¾È)¡£¼¡¤ÎÎã¤Î¤è¤¦¤Ë¡¢\f2@todo\fP¥¿¥°¤ò´Þ¤à¥½¡¼¥¹¡¦¥³¡¼¥É¤Ç¤Ï¡¢¤¤¤º¤ì¤«¤Î¥¿¥°¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ @todo The documentation for this method needs work.
++.fl
++\fP
++.fi
++\f3¥¿¥°Ì¾¤Ç¤Î¥³¥í¥ó¤Î»ÈÍÑ\fP \- ¥³¥í¥ó(:)¤ò¥Ð¥Ã¥¯¥¹¥é¥Ã¥·¥å¤Ç¥¨¥¹¥±¡¼¥×¤¹¤ë¤È¡¢¥³¥í¥ó¤ò¥¿¥°Ì¾¤Ë»ÈÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ÎÃæ¤Ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ /**
++.fl
++ * @ejb:bean
++.fl
++ */
++.fl
++\fP
++.fi
++¤³¤Î¥¿¥°¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-tag ejb\\\\:bean:a:"EJB Bean:"
++.fl
++\fP
++.fi
++\f3¥¿¥°Ì¾¤Î¥¹¥Ú¥ë¥Á¥§¥Ã¥¯(¥¿¥°¤Î̵¸ú²½)\fP \- °ìÉô¤Î³«È¯¼Ô¤¬É¬¤º¤·¤â½ÐÎϤ·¤Ê¤¤¥«¥¹¥¿¥à¡¦¥¿¥°¤ò¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤ËÇÛÃÖ¤¹¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤Ë¸ºß¤¹¤ë¤¹¤Ù¤Æ¤Î¥¿¥°¤ò¥ê¥¹¥È¤·¡¢½ÐÎϤ¹¤ë¥¿¥°¤òÍ­¸ú¤Ë¤·¡¢½ÐÎϤ·¤Ê¤¤¥¿¥°¤ò̵¸ú¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£\f2X\fP¤ò»ØÄꤹ¤ë¤È¥¿¥°¤Ï̵¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£»ØÄꤷ¤Ê¤¤¤È¡¢¥¿¥°¤ÏÍ­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢Javadoc¥Ä¡¼¥ë¤Ï¡¢¸¡½Ð¤·¤¿¥¿¥°¤¬ÆþÎϥߥ¹¤Ê¤É¤Ë¤è¤ëÉÔÌÀ¥¿¥°¤Ç¤¢¤ë¤«¤É¤¦¤«¤òÆÃÄê¤Ç¤­¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï·Ù¹ð¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.br
++¤¹¤Ç¤ËÇÛÃÖ¤µ¤ì¤Æ¤¤¤ëÃͤË\f2X\fP¤òÄɲäǤ­¤Þ¤¹¡£¤³¤¦¤·¤Æ¤ª¤±¤Ð¡¢\f2X\fP¤òºï½ü¤¹¤ë¤Î¤ß¤Ç¥¿¥°¤òÍ­¸ú¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢@todo¥¿¥°¤Î½ÐÎϤòÍÞÀ©¤¹¤ë¾ì¹ç¡¢¼¡¤Î¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-tag todo:Xcmf:"To Do:"
++.fl
++\fP
++.fi
++¤µ¤é¤Ëñ½ã¤Ê»ØÄêÊýË¡¤â¤¢¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-tag todo:X
++.fl
++\fP
++.fi
++¹½Ê¸\f2\-tag todo:X\fP¤Ï¡¢\f2@todo\fP¤¬¥¿¥°¥ì¥Ã¥È¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Æ¤âµ¡Ç½¤·¤Þ¤¹¡£
++.br
++.br
++\f3¥¿¥°¤Î½ç½ø\fP \- \f2\-tag\fP (¤ª¤è¤Ó\f2\-taglet\fP)¥ª¥×¥·¥ç¥ó¤Î½ç½ø¤Ë¤è¤Ã¤Æ¡¢¥¿¥°¤Î½ÐÎϽ礬·è¤Þ¤ê¤Þ¤¹¡£¥«¥¹¥¿¥à¡¦¥¿¥°¤Èɸ½à¥¿¥°¤òÁȤ߹礻¤Æ»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£É¸½à¥¿¥°¤Î¥¿¥°¡¦¥ª¥×¥·¥ç¥ó¤Ï¡¢½ç½ø¤ò·èÄꤹ¤ë¤¿¤á¤Î¤ß¤Î¥×¥ì¡¼¥¹¥Û¥ë¥À¤Ç¤¹¡£¤³¤ì¤é¤Ïɸ½à¥¿¥°Ì¾¤Î¤ß¤ò»ÈÍѤ·¤Þ¤¹¡£(ɸ½à¥¿¥°¤Î¾®¸«½Ð¤·¤ÏÊѹ¹¤Ç¤­¤Þ¤»¤ó¡£)¤³¤ì¤Ë¤Ä¤¤¤Æ¤Ï¡¢²¼¤ÎÎã¤ÇÀâÌÀ¤·¤Þ¤¹¡£
++.br
++.br
++\f2\-tag\fP¤¬¤Ê¤¤¾ì¹ç¤Ï¡¢\f2\-taglet\fP¤Î°ÌÃ֤ˤè¤Ã¤Æ¤½¤Î½ç½ø¤¬·è¤Þ¤ê¤Þ¤¹¡£¥¿¥°¤¬Î¾Êý¤È¤â¸ºß¤¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎºÇ¸å¤Ë¤¢¤ëÊý¤¬¤½¤Î½ç½ø¤ò·èÄꤷ¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥¿¥°¤ä¥¿¥°¥ì¥Ã¥È¤¬¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤¿½çÈ֤˽èÍý¤µ¤ì¤ë¤¿¤á¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2\-taglet\fP¤È\f2\-tag\fP¤ÎξÊý¤¬¡Ötodo¡×¤È¤¤¤¦Ì¾Á°¤ò»ý¤Ã¤Æ¤¤¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎºÇ¸å¤Ë¤¢¤ëÊý¤¬½ç½ø¤ò·èÄꤷ¤Þ¤¹¡£
++.br
++.br
++\f3¥¿¥°¤Î´°Á´¥»¥Ã¥È¤ÎÎã\fP \- ¤³¤ÎÎã¤Ç¤Ï¡¢½ÐÎϤΡÖParameters¡×¤È¡ÖThrows¡×¤Î´Ö¤Ë¡ÖTo Do¡×¤òÁÞÆþ¤·¤Þ¤¹¡£¡ÖX¡×¤ò»ÈÍѤ·¤Æ¡¢@example¤¬¡¢¥½¡¼¥¹¡¦¥³¡¼¥ÉÆâ¤Îº£²ó¤Î¼Â¹Ô¤Ç¤Ï½ÐÎϤµ¤ì¤Ê¤¤¥¿¥°¤Ç¤¢¤ë¤³¤È¤ò»ØÄꤷ¤Þ¤¹¡£@argfile¤ò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¡¢°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤ÎÊÌ¡¹¤Î¹Ô¤Ë¥¿¥°¤òÇÛÃ֤Ǥ­¤Þ¤¹(¹Ô¤Î·Ñ³¤ò¼¨¤¹Ê¸»ú¤ÏÉÔÍ×)¡£
++.nf
++\f3
++.fl
++ \-tag param
++.fl
++ \-tag return
++.fl
++ \-tag todo:a:"To Do:"
++.fl
++ \-tag throws
++.fl
++ \-tag see
++.fl
++ \-tag example:X
++.fl
++\fP
++.fi
++Javadoc¤¬¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥È¤ò²òÀϤ¹¤ëºÝ¤Ë¸¡º÷¤µ¤ì¤¿¥¿¥°¤Î¤¦¤Á¡¢É¸½à¥¿¥°¤Ç¤â¡¢\f2\-tag\fP¤ä\f2\-taglet\fP¤ÇÅϤµ¤ì¤¿¥¿¥°¤Ç¤â¤Ê¤¤¤â¤Î¤Ï¤¹¤Ù¤ÆÉÔÌÀ¥¿¥°¤È¤ß¤Ê¤µ¤ì¡¢·Ù¹ð¤¬¥¹¥í¡¼¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++ɸ½à¥¿¥°¤Ï¡¢ºÇ½é¡¢¥Ç¥Õ¥©¥ë¥È¤Î½ç½ø¤Ç¥ê¥¹¥ÈÆâ¤ËÆâÉôŪ¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£\f2\-tag\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¤³¤Î¥ê¥¹¥È¤ËÄɲ䵤ì¤ë¥¿¥°¡¢¤¹¤Ê¤ï¤Áɸ½à¥¿¥°¤¬¥Ç¥Õ¥©¥ë¥È¤Î°ÌÃÖ¤«¤é°ÜÆ°¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢É¸½à¥¿¥°¤Î\f2\-tag\fP¥ª¥×¥·¥ç¥ó¤ò¾Êά¤¹¤ë¤È¡¢¤³¤ì¤é¤Ï¥Ç¥Õ¥©¥ë¥È¤Î°ÌÃÖ¤ËÇÛÃÖ¤µ¤ì¤¿¤Þ¤Þ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++\f3¶¥¹ç¤Î²óÈò\fP \- ¸ÇÍ­¤Î̾Á°¶õ´Ö¤òºÙ¤«¤¯Ê¬¤±¤ë¤Ë¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Ë»ÈÍѤµ¤ì¤Æ¤¤¤ë\f2com.mycompany.todo\fP¤È¤¤¤¦Ì¾Á°¤Î¤è¤¦¤Ë¡¢¥É¥Ã¥È(.)¤Ç¶èÀÚ¤é¤ì¤¿Ì¾Á°¤ò»ÈÍѤ·¤Þ¤¹¡£Oracle¤Ï¡¢º£¸å¤â̾Á°¤Ë¥É¥Ã¥È¤ò´Þ¤Þ¤Ê¤¤É¸½à¥¿¥°¤òºîÀ®¤·¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤¬ºîÀ®¤·¤¿¥¿¥°¤Ï¡¢Oracle¤¬ÄêµÁ¤¹¤ëƱ¤¸Ì¾Á°¤Î¥¿¥°¤ÎÆ°ºî¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢\f2@todo\fP¤È¤¤¤¦Ì¾Á°¤Î¥¿¥°¤Þ¤¿¤Ï¥¿¥°¥ì¥Ã¥È¤ò¥æ¡¼¥¶¡¼¤¬ºîÀ®¤·¤¿¾ì¹ç¡¢¤½¤Î¸å¤ËOracle¤¬Æ±¤¸Ì¾Á°¤Îɸ½à¥¿¥°¤òºîÀ®¤·¤Æ¤â¡¢¤½¤Î¥¿¥°¤Þ¤¿¤Ï¥¿¥°¥ì¥Ã¥È¤Ï¾ï¤Ë¥æ¡¼¥¶¡¼¤¬ÄêµÁ¤·¤¿¤Î¤ÈƱ¤¸Æ°ºî¤òÊÝ»ý¤·¤Þ¤¹¡£
++.br
++.br
++\f3Ãí¼ávs. Javadoc¥¿¥°\fP \- °ìÈ̤ˡ¢Äɲ乤ëɬÍפΤ¢¤ë¥Þ¡¼¥¯¥¢¥Ã¥×¤¬¡¢¥É¥­¥å¥á¥ó¥È¤Ë±Æ¶Á¤òÍ¿¤¨¤¿¤ê¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤·¤¿¤ê¤¹¤ë¤¿¤á¤Î¤â¤Î¤Ç¤¢¤ë¾ì¹ç¡¢¤½¤Î¥Þ¡¼¥¯¥¢¥Ã¥×¤ÏJavadoc¥¿¥°¤Ë¤·¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤ÏÃí¼á¤Ë¤·¤Þ¤¹¡£
++.na
++\f2Ãí¼á¤ÈJavadoc¥¿¥°¤ÎÈæ³Ó\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#annotations¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\-taglet¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢¤è¤êÊ£»¨¤Ê¥Ö¥í¥Ã¥¯¡¦¥¿¥°¤ä¥«¥¹¥¿¥à¡¦¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤òºîÀ®¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-taglet\ \ class
++¤½¤Î¥¿¥°¤Î¥É¥­¥å¥á¥ó¥È¤ÎÀ¸À®¤Ë»ÈÍѤ¹¤ë¥É¥Ã¥¯¥ì¥Ã¥È¤òµ¯Æ°¤¹¤ë¤¿¤á¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£\f2¥¯¥é¥¹\fP¤Î´°Á´½¤¾þ̾¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥¿¥°¥ì¥Ã¥È¤Ï¡¢¥«¥¹¥¿¥à¡¦¥¿¥°¤Î¥Æ¥­¥¹¥È°ú¿ô¤Î¿ô¤âÄêµÁ¤·¤Þ¤¹¡£¥¿¥°¥ì¥Ã¥È¤Ï¡¢¤³¤ì¤é¤Î°ú¿ô¤ò¼õ¤±ÉÕ¤±¡¢½èÍý¤·¡¢½ÐÎϤòÀ¸À®¤·¤Þ¤¹¡£³°Éô¥É¥­¥å¥á¥ó¥È¤È¥µ¥ó¥×¥ë¡¦¥¿¥°¥ì¥Ã¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢¼¡¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 2
++o
++.na
++\f2¥¿¥°¥ì¥Ã¥È¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/taglet/overview.html
++.RE
++¥¿¥°¥ì¥Ã¥È¤Ï¡¢¥Ö¥í¥Ã¥¯¥¿¥°¤Þ¤¿¤Ï¥¤¥ó¥é¥¤¥ó¡¦¥¿¥°¤ÇÊØÍø¤Ç¤¹¡£¥¿¥°¥ì¥Ã¥È¤ÏǤ°Õ¤Î¿ô¤Î°ú¿ô¤ò¤È¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢¥Æ¥­¥¹¥È¤òÂÀ»ú¤Ë¤¹¤ë¡¢²Õ¾ò½ñ¤­¤òºîÀ®¤¹¤ë¡¢¥Æ¥­¥¹¥È¤ò¥Õ¥¡¥¤¥ë¤Ë½ñ¤­½Ð¤¹¡¢¤½¤Î¾¤Î¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¤Ê¤É¤Î¥«¥¹¥¿¥àÆ°ºî¤ò¼ÂÁõ¤Ç¤­¤Þ¤¹¡£
++.br
++.br
++¥¿¥°¥ì¥Ã¥È¤Ç»ØÄê¤Ç¤­¤ë¤Î¤Ï¡¢¥¿¥°¤ÎÇÛÃÖ¾ì½ê¤ÈÇÛÃÖ·Á¼°¤Î¤ß¤Ç¤¹¡£¤½¤Î¾¤Î¤¹¤Ù¤Æ¤Î·èÄê¤Ï¡¢¥É¥Ã¥¯¥ì¥Ã¥È¤Ë¤è¤Ã¤Æ¹Ô¤ï¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥¿¥°¥ì¥Ã¥È¤ò»ÈÍѤ·¤Æ¤â¡¢Êñ´Þ¥¯¥é¥¹¤Î¥ê¥¹¥È¤«¤é¥¯¥é¥¹Ì¾¤òºï½ü¤¹¤ë¤Ê¤É¤Î½èÍý¤Ï¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¥¿¥°¤Î¥Æ¥­¥¹¥È¤ò¥Õ¥¡¥¤¥ë¤Ë½ÐÎϤ·¤¿¤ê¡¢ÊÌ¤Î¥×¥í¥»¥¹¤ò¥È¥ê¥¬¡¼¤¹¤ë¤Ê¤É¤ÎÉûºîÍѤÏÆÀ¤é¤ì¤Þ¤¹¡£
++.br
++.br
++¥¿¥°¥ì¥Ã¥È¤Ø¤Î¥Ñ¥¹¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢\f2\-tagletpath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£¼¡¤Ë¡¢À¸À®¤µ¤ì¤ë¥Ú¡¼¥¸¤Î¡ÖParameters¡×¤È¡ÖThrows¡×¤Î´Ö¤Ë¡ÖTo Do¡×¥¿¥°¥ì¥Ã¥È¤òÁÞÆþ¤¹¤ëÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-taglet com.sun.tools.doclets.ToDoTaglet
++.fl
++ \-tagletpath /home/taglets
++.fl
++ \-tag return
++.fl
++ \-tag param
++.fl
++ \-tag todo
++.fl
++ \-tag throws
++.fl
++ \-tag see
++.fl
++\fP
++.fi
++¤Þ¤¿¡¢\f2\-taglet\fP¥ª¥×¥·¥ç¥ó¤ò\f2\-tag\fP¥ª¥×¥·¥ç¥ó¤Î¤«¤ï¤ê¤Ë»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¤¬¡¢Æɤߤˤ¯¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-tagletpath\ \ tagletpathlist
++taglet¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë(.class)¤ò¸¡º÷¤¹¤ë¤¿¤á¤Î¸¡º÷¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£\f2tagletpathlist\fP¤Ë¤Ï¡¢¥³¥í¥ó(\f2:\fP)¤Ç¶èÀڤäÆÊ£¿ô¤Î¥Ñ¥¹¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£Javadoc¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ñ¥¹°Ê²¼¤Î¤¹¤Ù¤Æ¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ò¸¡º÷¤·¤Þ¤¹¡£
++.TP 3
++\-docfilessubdirs\
++¡Ö\f2doc\-files\fP¡×¥Ç¥£¥ì¥¯¥È¥ê¤Î¥Ç¥£¡¼¥×¡¦¥³¥Ô¡¼¤òÍ­¸ú¤Ë¤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢°¸Àè¤Ë¤Ï¡¢¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤È¤½¤Î¤¹¤Ù¤ÆÆâÍƤ¬ºÆµ¢Åª¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥Ç¥£¥ì¥¯¥È¥ê\f2doc\-files/example/images\fP¤È¤½¤ÎÆâÍƤ¬¤¹¤Ù¤Æ¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£¤³¤³¤Ç¤â¡¢¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ò½ü³°¤¹¤ë»ØÄ꤬²Äǽ¤Ç¤¹¡£
++.TP 3
++\-excludedocfilessubdir\ \ name1:name2...
++»ØÄꤵ¤ì¤¿Ì¾Á°¤Î¡Ö\f2doc\-files\fP¡×¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ò¤¹¤Ù¤Æ½ü³°¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢SCCS¤È¤½¤Î¾¤Î¥½¡¼¥¹¡¦¥³¡¼¥ÉÀ©¸æ¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤Î¥³¥Ô¡¼¤òËɤ®¤Þ¤¹¡£
++.TP 3
++\-noqualifier\ \ all\ | \ packagename1:packagename2:...
++½ÐÎϤµ¤ì¤ë¥¯¥é¥¹Ì¾¤ÎÀèƬ¤«¤é¥Ñ¥Ã¥±¡¼¥¸Ì¾(¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò)¤ò¾Êά¤·¤Þ¤¹¡£\f2\-noqualifier\fP¤Î°ú¿ô¤Ï¡¢¡Ö\f2all\fP¡×(¤¹¤Ù¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò¤ò¾Êά)¡¢½¤¾þ»Ò¤È¤·¤Æºï½ü¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Î¥³¥í¥ó¶èÀÚ¤ê¥ê¥¹¥È(¥ï¥¤¥ë¥É¥«¡¼¥É¤â²Ä)¡¢¤Î¤¤¤º¤ì¤«¤È¤Ê¤ê¤Þ¤¹¡£¥¯¥é¥¹¤Þ¤¿¤Ï¥¤¥ó¥¿¥Õ¥§¡¼¥¹Ì¾¤¬É½¼¨¤µ¤ì¤ë°ÌÃÖ¤«¤é¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬ºï½ü¤µ¤ì¤Þ¤¹¡£
++.br
++.br
++¼¡¤ÎÎã¤Ç¤Ï¡¢¤¹¤Ù¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò¤ò¾Êά¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-noqualifier all
++.fl
++\fP
++.fi
++¼¡¤ÎÎã¤Ç¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò¡Öjava.lang¡×¤ª¤è¤Ó¡Öjava.io¡×¤ò¾Êά¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-noqualifier java.lang:java.io
++.fl
++\fP
++.fi
++¼¡¤ÎÎã¤Ç¤Ï¡¢¡Öjava¡×¤Ç»Ï¤Þ¤ë¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò¤È¡Öcom.sun¡×¤È¤¤¤¦¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸(¡Öjavax¡×¤Ç¤Ï¤Ê¤¤)¤ò¾Êά¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-noqualifier java.*:com.sun.*
++.fl
++\fP
++.fi
++¥Ñ¥Ã¥±¡¼¥¸½¤¾þ»Ò¤¬Á°½Ò¤ÎÆ°ºî¤Ë½¾¤Ã¤Æɽ¼¨¤µ¤ì¤ë¾ì¹ç¡¢Ì¾Á°¤ÏŬÀÚ¤Ëû½Ì¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢Ì¾Á°¤¬É½¼¨¤µ¤ì¤ëÊýË¡¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤Î¥ë¡¼¥ë¤Ï¡¢\f2\-noqualifier\fP¤ò»ÈÍѤ¹¤ë¤«¤É¤¦¤«¤Ë¤«¤«¤ï¤é¤ºÍ­¸ú¤Ç¤¹¡£
++.TP 3
++\-notimestamp\
++¥¿¥¤¥à¥¹¥¿¥ó¥×¤¬ÍÞÀ©¤µ¤ì¤Þ¤¹¡£³Æ¥Ú¡¼¥¸¤ÎÀèƬ¶á¤¯¤Ë¤¢¤ë¡¢À¸À®¤µ¤ì¤¿HTMLÆâ¤ÎHTML¥³¥á¥ó¥È¤Ç¥¿¥¤¥à¥¹¥¿¥ó¥×¤¬±£¤µ¤ì¤Þ¤¹¡£Javadoc¤ò2¤Ä¤Î¥½¡¼¥¹¡¦¥Ù¡¼¥¹¤Ç¼Â¹Ô¤·¡¢¤½¤ì¤é¤ËÂФ·¤Ædiff¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥¿¥¤¥à¥¹¥¿¥ó¥×¤Ë¤è¤Ã¤Ædiff¤¬È¯À¸¤·¤Ê¤¯¤Ê¤ë¤Î¤ÇÊØÍø¤Ç¤¹(¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Ê¤¤¤È¡¢³Æ¥Ú¡¼¥¸¤Çdiff¤Ë¤Ê¤ê¤Þ¤¹)¡£¥¿¥¤¥à¥¹¥¿¥ó¥×¤Ë¤ÏJavadoc¤Î¥Ð¡¼¥¸¥ç¥óÈֹ椬´Þ¤Þ¤ì¤Æ¤ª¤ê¡¢¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ <!\-\- Generated by javadoc (build 1.5.0_01) on Thu Apr 02 14:04:52 IST 2009 \-\->
++.fl
++\fP
++.fi
++.TP 3
++\-nocomment\
++¼çÀâÌÀ¤ª¤è¤Ó¤¹¤Ù¤Æ¤Î¥¿¥°¤ò´Þ¤à¥³¥á¥ó¥ÈËÜʸÁ´ÂΤòÍÞÀ©¤·¡¢Àë¸À¤Î¤ß¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê¡¢¸µ¤Ï°Û¤Ê¤ëÌÜŪ¤Î¤¿¤á¤À¤Ã¤¿¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òºÆÍøÍѤ·¡¢¿·¤·¤¤¥×¥í¥¸¥§¥¯¥È¤ÎÁᤤÃʳ¬¤Ç¥¹¥±¥ë¥È¥óHTML¥É¥­¥å¥á¥ó¥È¤òºîÀ®¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-sourcetab tabLength
++¥½¡¼¥¹Æâ¤Î³Æ¥¿¥Ö¤¬¼è¤ë¶õÇòʸ»ú¤Î¿ô¤ò»ØÄꤷ¤Þ¤¹¡£
++.RE
++.SH "¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë"
++.LP
++Javadoc¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤òû¤¯¤·¤¿¤ê´Ê·é¤Ë¤·¤¿¤ê¤¹¤ë¤¿¤á¤Ë¡¢\f2javadoc\fP¥³¥Þ¥ó¥É¤ËÂФ¹¤ë°ú¿ô(\f2\-J\fP¥ª¥×¥·¥ç¥ó¤ò½ü¤¯)¤¬Æþ¤Ã¤¿1¤Ä°Ê¾å¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¤³¤È¤òÍøÍѤ¹¤ì¤Ð¡¢¤É¤Î¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¾å¤Ç¤â¡¢Ç¤°Õ¤ÎŤµ¤Îjavadoc¥³¥Þ¥ó¥É¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢javac¤Î¥ª¥×¥·¥ç¥ó¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾¤ò¼«Í³¤ËÁȤ߹礻¤Æµ­½Ò¤Ç¤­¤Þ¤¹¡£¥Õ¥¡¥¤¥ëÆâ¤Î³Æ°ú¿ô¤Ï¡¢¥¹¥Ú¡¼¥¹¤Þ¤¿¤Ï²þ¹Ô¤Ç¶èÀÚ¤ê¤Þ¤¹¡£¥Õ¥¡¥¤¥ë̾¤Ë¶õÇò¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤Î¥Õ¥¡¥¤¥ë̾Á´ÂΤòÆó½Å°úÍÑÉä¤Ç°Ï¤ß¤Þ¤¹¡£
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸«¤¿ÁêÂХѥ¹¤Ë¤Ê¤ê¤Þ¤¹¡£°ú¿ô¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤«¤é¸«¤¿ÁêÂХѥ¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë̾¥ê¥¹¥È¤Ç¤Ï¡¢¥ï¥¤¥ë¥É¥«¡¼¥É(*)¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2*.java\fP¤È¤Ï»ØÄê¤Ç¤­¤Þ¤»¤ó¡£°ú¿ô¥Õ¥¡¥¤¥ëÆâ¤Î°ú¿ô¤Ç\f2@\fPʸ»ú¤ò»ÈÍѤ·¤Æ¡¢Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤òºÆµ¢Åª¤Ë²ò¼á¤¹¤ë¤³¤È¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤Þ¤¿¡¢\f2\-J\fP¥ª¥×¥·¥ç¥ó¤â¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ïµ¯Æ°¥Ä¡¼¥ë¤ËÅϤµ¤ì¤Þ¤¹¤¬¡¢µ¯Æ°¥Ä¡¼¥ë¤Ç¤Ï°ú¿ô¥Õ¥¡¥¤¥ë¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Ê¤¤¤«¤é¤Ç¤¹¡£
++.LP
++Javadoc¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢³Æ°ú¿ô¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤È¥Õ¥¡¥¤¥ë̾¤ÎÀèƬ¤Ë\f2@\fPʸ»ú¤òÉÕ¤±¤ÆÅϤ·¤Þ¤¹¡£Javadoc¤Ï¡¢\f2@\fPʸ»ú¤Ç»Ï¤Þ¤ë°ú¿ô¤ò¸«¤Ä¤±¤ë¤È¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤ÎÆâÍƤòŸ³«¤·¤Æ°ú¿ô¥ê¥¹¥È¤ËÁÞÆþ¤·¤Þ¤¹¡£
++.SS
++°ú¿ô¥Õ¥¡¥¤¥ë¤ò1¤Ä»ØÄꤹ¤ëÎã
++.LP
++¼¡¤Î¤è¤¦¤Ë¤·¤Æ¡¢¡Ö\f2argfile\fP¡×¤È¤¤¤¦Ì¾Á°¤Îñ°ì¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¡¢¤¹¤Ù¤Æ¤ÎJavadoc°ú¿ô¤ò³ÊǼ¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc @argfile\fP
++.fl
++.fi
++.LP
++¤³¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¼¡¤ÎÎã¤Ç¼¨¤µ¤ì¤Æ¤¤¤ë2¤Ä¤Î¥Õ¥¡¥¤¥ë¤ÎÆâÍƤòξÊý¤È¤âÆþ¤ì¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.SS
++°ú¿ô¥Õ¥¡¥¤¥ë¤ò2¤Ä»ØÄꤹ¤ëÎã
++.LP
++¼¡¤Î¤è¤¦¤Ë¤·¤Æ¡¢Javadoc¥ª¥×¥·¥ç¥óÍѤË1¤Ä¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Þ¤¿¤Ï¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë̾ÍѤË1¤Ä¤È¤¤¤¦¤è¤¦¤Ë¡¢2¤Ä¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤¹(¤Ê¤ª¡¢¼¡¤Î¥ê¥¹¥È¤Ç¤Ï¹Ô·Ñ³ʸ»ú¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤»¤ó)¡£
++.LP
++¼¡¤ÎÆâÍƤò´Þ¤à¡¢¡Ö\f2options\fP¡×¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-d docs\-filelist
++.fl
++ \-use
++.fl
++ \-splitindex
++.fl
++ \-windowtitle 'Java SE 7 API Specification'
++.fl
++ \-doctitle 'Java SE 7 API Specification'
++.fl
++ \-header '<b>Java(TM) SE 7</b>'
++.fl
++ \-bottom 'Copyright &copy; 1993\-2011 Oracle and/or its affiliates. All rights reserved.'
++.fl
++ \-group "Core Packages" "java.*"
++.fl
++ \-overview /java/pubs/ws/1.7.0/src/share/classes/overview\-core.html
++.fl
++ \-sourcepath /java/pubs/ws/1.7.0/src/share/classes
++.fl
++\fP
++.fi
++.LP
++¼¡¤ÎÆâÍƤò´Þ¤à¡¢¡Ö\f2packages\fP¡×¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ com.mypackage1
++.fl
++ com.mypackage2
++.fl
++ com.mypackage3
++.fl
++\fP
++.fi
++.LP
++¤½¤Î¸å¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc @options @packages\fP
++.fl
++.fi
++.SS
++¥Ñ¥¹ÉÕ¤­¤Î°ú¿ô¥Õ¥¡¥¤¥ë¤ÎÎã
++.LP
++°ú¿ô¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¥Ñ¥¹¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤½¤Î¥Õ¥¡¥¤¥ëÆâ¤Ë»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤Ï¡¢¸½ºß¤Îºî¶È¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¸«¤¿ÁêÂХѥ¹¤Ë¤Ê¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢²¼¤ÎÎã¤Î¾ì¹ç¤Ï¡¢\f2path1\fP¤ä\f2path2\fP¤«¤é¸«¤¿ÁêÂХѥ¹¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc @path1/options @path2/packages\fP
++.fl
++.fi
++.SS
++¥ª¥×¥·¥ç¥ó¤Î°ú¿ô¤ÎÎã
++.LP
++¼¡¤Ë¡¢Javadoc¥ª¥×¥·¥ç¥ó¤ËÂФ¹¤ë°ú¿ô¤Î¤ß¤ò°ú¿ô¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤¹¤ëÎã¤ò¼¨¤·¤Þ¤¹¡£¤³¤³¤Ç¤Ï\f2\-bottom\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£¤½¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ï¡¢Ä¹¤¤°ú¿ô¤ò»ØÄê¤Ç¤­¤ë¤«¤é¤Ç¤¹¡£¼¡¤Î¤è¤¦¤Ê¥Æ¥­¥¹¥È°ú¿ô¤ò´Þ¤à¡¢¡Ö\f2bottom\fP¡×¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤òºîÀ®¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++<font size="\-1">
++.fl
++ <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a><br/>
++.fl
++ Copyright &copy; 1993, 2011, Oracle and/or its affiliates. All rights reserved.<br/>
++.fl
++ Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
++.fl
++ Other names may be trademarks of their respective owners.</font>
++.fl
++\fP
++.fi
++.LP
++¤½¤Î¸å¡¢¼¡¤Î¤è¤¦¤Ë¤·¤ÆJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-bottom @bottom @packages\fP
++.fl
++.fi
++.LP
++¤¢¤ë¤¤¤Ï¡¢°ú¿ô¥Õ¥¡¥¤¥ë¤ÎÀèƬ¤Ë\f2\-bottom\fP¥ª¥×¥·¥ç¥ó¤òÁȤ߹þ¤ó¤À¸å¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Æ¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc @bottom @packages\fP
++.fl
++.fi
++.SH "̾Á°"
++¼Â¹Ô
++.SH "Javadoc¤Î¼Â¹Ô"
++.LP
++\f3¥Ð¡¼¥¸¥ç¥óÈÖ¹æ\fP \- Javadoc¤Î¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òȽÊ̤¹¤ë¤Ë¤Ï¡¢\f3javadoc \-J\-version\fP¤ò»ÈÍѤ·¤Þ¤¹¡£½ÐÎÏ¥¹¥È¥ê¡¼¥à¤Ë¤Ïɸ½à¥É¥Ã¥¯¥ì¥Ã¥È¤Î¥Ð¡¼¥¸¥ç¥óÈֹ椬´Þ¤Þ¤ì¤Þ¤¹¡£\f2\-quiet\fP¤Ç̵¸ú¤Ë¤Ç¤­¤Þ¤¹¡£
++.LP
++\f3¸ø³«¥×¥í¥°¥é¥à¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹\fP \- Java¸À¸ì¤Çµ­½Ò¤µ¤ì¤¿¥×¥í¥°¥é¥à¤«¤éJavadoc¥Ä¡¼¥ë¤òµ¯Æ°¤¹¤ë¤È¤­»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ï\f2com.sun.tools.javadoc.Main\fP¤Ë¤¢¤ê¤Þ¤¹(Javadoc¤ÏºÆÆþ²Äǽ)¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2ɸ½à¥É¥Ã¥¯¥ì¥Ã¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/standard\-doclet.html#runningprogrammatically¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++\f3¥É¥Ã¥¯¥ì¥Ã¥È¤Î¼Â¹Ô\fP \- ²¼¤ÎÀâÌÀ¤Ï¡¢É¸½àHTML¥É¥Ã¥¯¥ì¥Ã¥È¤ò¸Æ¤Ó½Ð¤¹¤¿¤á¤Î¤â¤Î¤Ç¤¹¡£¥«¥¹¥¿¥à¡¦¥É¥Ã¥¯¥ì¥Ã¥È¤ò¸Æ¤Ó½Ð¤¹¤Ë¤Ï¡¢\-doclet¤ª¤è¤Ó\-docletpath¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2¥É¥Ã¥¯¥ì¥Ã¥È¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/doclet/overview.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.SH "´Êñ¤ÊÎã"
++.LP
++Javadoc¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸Á´ÂΤËÂФ·¤Æ¼Â¹Ô¤¹¤ë¤³¤È¤â¡¢¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¼Â¹Ô¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£³Æ¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ï¡¢¤½¤ì¤¾¤ì¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ËÂбþ¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê̾¤ò»ý¤Á¤Þ¤¹¡£¼¡¤ÎÎã¤Ç¤Ï¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï\f2/home/src/java/awt/*.java\fP¤Ë¤¢¤ê¤Þ¤¹¡£À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê¤Ï\f2/home/html\fP¤Ç¤¹¡£
++.SS
++1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥É¥­¥å¥á¥ó¥È²½
++.LP
++¥Ñ¥Ã¥±¡¼¥¸¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤Ë¤Ï¡¢¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(\f2*.java\fP)¤ò¡¢¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¤ÈƱ¤¸Ì¾Á°¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë³ÊǼ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬(\f2java.awt.color\fP¤Î¤è¤¦¤Ë¥É¥Ã¥È¤Ç¶èÀÚ¤é¤ì¤¿)Ê£¿ô¤Î¼±Ê̻Ҥ«¤é¹½À®¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¸å³¤Î³Æ¼±Ê̻Ҥ¬²¼°Ì¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê(\f2java/awt/color\fP¤Ê¤É)¤ËÂбþ¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£1¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤¿¤á¤ÎÊ£¿ô¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¡¢°Û¤Ê¤ë¾ì½ê¤Ë¤¢¤ë¤½¤Î¤è¤¦¤Ê2¤Ä¤Î¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ä¥ê¡¼¤Ëʬ¤±¤Æ³ÊǼ¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹(\f2src1/java/awt/color\fP¤ä\f2src2/java/awt/color\fP¤Ê¤É)¡£¤¿¤À¤·¡¢¤½¤Î¾ì¹ç¤Ï\f2\-sourcepath\fP¤Ë¤è¤Ã¤Æ¤½¤ÎξÊý¤Î¾ì½ê¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++Javadoc¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢\f2cd\fP¤ò»ÈÍѤ·¤Æ¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤¹¤ë¤«¡¢\f2\-sourcepath\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£¼¡¤ÎÎã¤Ç¤Ï¡¢Î¾Êý¤ÎÊýË¡¤Ë¤Ä¤¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f3¥±¡¼¥¹1 \- 1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸¤«¤é¤Îµ¯Æ°¤òºÆµ¢Åª¤Ë¼Â¹Ô\fP \- ¤³¤ÎÎã¤Ç¤ÏJavadoc¤¬Ç¤°Õ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¼Â¹Ô¤Ç¤­¤ë¤è¤¦¤Ë¡¢\-sourcepath¤ò»ÈÍѤ·¡¢ºÆµ¢Åª½èÍý¤Î¤¿¤á¤Ë\-subpackages(1.4¤Î¿·¥ª¥×¥·¥ç¥ó)¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤ì¤Ï¡¢\f2java\fP¥Ç¥£¥ì¥¯¥È¥ê¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤ò¤¿¤É¤ê¤Þ¤¹¤¬¡¢\f2java.net\fP¤È\f2java.lang\fP¤ò¥ë¡¼¥È¤Ë»ý¤Ä¥Ñ¥Ã¥±¡¼¥¸¤Ï½ü³°¤µ¤ì¤Þ¤¹¡£\f2java.lang\fP¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤Ç¤¢¤ë\f2java.lang.ref\fP¤¬½ü³°¤µ¤ì¤ëÅÀ¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \fP\f3\-d\fP\f3 /home/html \fP\f3\-sourcepath\fP\f3 /home/src \fP\f3\-subpackages\fP\f3 java \fP\f3\-exclude\fP\f3 java.net:java.lang\fP
++.fl
++.fi
++.LP
++¤Þ¤¿¡¢Â¾¤Î¥Ñ¥Ã¥±¡¼¥¸¡¦¥Ä¥ê¡¼¤ò²¼Êý¤Ë¤¿¤É¤ë¤Ë¤Ï¡¢\f2java:javax:org.xml.sax\fP¤Î¤è¤¦¤Ë¡¢¤½¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î̾Á°¤ò\f2\-subpackages\fP¤Î°ú¿ô¤ËÄɲä·¤Þ¤¹¡£
++.TP 2
++o
++\f3¥±¡¼¥¹2 \- ¥ë¡¼¥È¡¦¥½¡¼¥¹¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤Ã¤Æ¤«¤éÌÀ¼¨Åª¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¤Æ¼Â¹Ô\fP \- ´°Á´½¤¾þ¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Î¿Æ¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤ê¤Þ¤¹¡£¼¡¤Ë¡¢¥É¥­¥å¥á¥ó¥È²½¤¹¤ë1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î̾Á°¤ò»ØÄꤷ¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3cd /home/src/\fP
++.fl
++ % \f3javadoc \-d /home/html java.awt java.awt.event\fP
++.fl
++.fi
++.TP 2
++o
++\f3¥±¡¼¥¹3 \- 1¤Ä¤Î¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ä¥ê¡¼Æâ¤Ë¤¢¤ëÌÀ¼¨Åª¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¤ÆǤ°Õ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¼Â¹Ô\fP \- ¤³¤Î¥±¡¼¥¹¤Ç¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤¬¤É¤³¤Ç¤¢¤Ã¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£ºÇ¾å°Ì¥Ñ¥Ã¥±¡¼¥¸¤Î¿Æ¥Ç¥£¥ì¥¯¥È¥ê¤ò\f2\-sourcepath\fP¤Ë»ØÄꤷ¡¢¥É¥­¥å¥á¥ó¥È²½¤¹¤ë1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò»ØÄꤷ¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d /home/html \-sourcepath /home/src java.awt java.awt.event\fP
++.fl
++.fi
++.TP 2
++o
++\f3¥±¡¼¥¹4 \- Ê£¿ô¤Î¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ä¥ê¡¼Æâ¤Ë¤¢¤ëÌÀ¼¨Åª¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¤ÆǤ°Õ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¼Â¹Ô\fP \- ¤³¤ì¤Ï¥±¡¼¥¹3¤È»÷¤Æ¤¤¤Þ¤¹¤¬¡¢¥Ñ¥Ã¥±¡¼¥¸¤¬Ê£¿ô¤Î¥Ç¥£¥ì¥¯¥È¥ê¡¦¥Ä¥ê¡¼¤Ë¸ºß¤·¤Þ¤¹¡£¤½¤ì¤¾¤ì¤Î¥Ä¥ê¡¼¤Î¥ë¡¼¥È¤Ø¤Î¥Ñ¥¹¤ò\f2\-sourcepath\fP¤Ë»ØÄꤷ(¥³¥í¥ó¤Ç¶èÀÚ¤ë)¡¢¥É¥­¥å¥á¥ó¥È²½¤¹¤ë1¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ò»ØÄꤷ¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£1¤Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤¹¤Ù¤Æ¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬¡¢1¤Ä¤Î¥ë¡¼¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Î²¼¤Ë¸ºß¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¥½¡¼¥¹¡¦¥Ñ¥¹¤È¤·¤Æ»ØÄꤵ¤ì¤¿¾ì½ê¤Î¤É¤³¤«¤Ç¸«¤Ä¤«¤ì¤Ð½½Ê¬¤Ç¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d /home/html \-sourcepath /home/src1:/home/src2 java.awt java.awt.event\fP
++.fl
++.fi
++.RE
++.LP
++·ë²Ì: ¤¹¤Ù¤Æ¤Î¥±¡¼¥¹¤Ç\f2java.awt\fP¤ª¤è¤Ó\f2java.awt.event\fP¥Ñ¥Ã¥±¡¼¥¸Æâ¤Îpublic¤ª¤è¤Óprotected¥¯¥é¥¹¤È¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë¤Ä¤¤¤Æ¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¡¢»ØÄꤵ¤ì¤¿À¸À®Àè¥Ç¥£¥ì¥¯¥È¥ê(\f2/home/html\fP)¤ËHTML¥Õ¥¡¥¤¥ë¤¬Êݸ¤µ¤ì¤Þ¤¹¡£2¤Ä°Ê¾å¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬À¸À®¤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¥É¥­¥å¥á¥ó¥È¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Î¥ê¥¹¥È¡¢¥¯¥é¥¹¤Î¥ê¥¹¥È¡¢¤ª¤è¤Ó¥á¥¤¥ó¤Î¥¯¥é¥¹¡¦¥Ú¡¼¥¸¤È¤¤¤¦3¤Ä¤ÎHTML¥Õ¥ì¡¼¥à¤ò»ý¤Ä¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.SS
++1¤Ä°Ê¾å¤Î¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È²½
++.LP
++¤Þ¤¿¡¢1¤Ä°Ê¾å¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë(\f2.java\fP)¤òÅϤ·¤Æ¡¢Javadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£Javadoc¤Ï¡¢¼¡¤Î2¤Ä¤ÎÊýË¡¤Î¤¤¤º¤ì¤«¤Ç¼Â¹Ô¤Ç¤­¤Þ¤¹¡£1¤Ä¤Ï\f2cd\fP¤ò»ÈÍѤ·¤Æ¥Ç¥£¥ì¥¯¥È¥ê¤òÊѹ¹¤¹¤ëÊýË¡¡¢¤â¤¦1¤Ä¤Ï\f2.java\fP¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤ò´°Á´¤Ë»ØÄꤹ¤ëÊýË¡¤Ç¤¹¡£ÁêÂХѥ¹¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òµ¯ÅÀ¤È¤·¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÅϤ¹¤È¤­¤Ï¡¢\f2\-sourcepath\fP¥ª¥×¥·¥ç¥ó¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯(*)¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ï¥¤¥ë¥É¥«¡¼¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¥¯¥é¥¹¤Î¥°¥ë¡¼¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f3¥±¡¼¥¹1 \- ¥½¡¼¥¹¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤ë\fP \- \f2.java\fP¥Õ¥¡¥¤¥ë¤Î¤¢¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤ê¤Þ¤¹¡£¼¡¤Ë¡¢¥É¥­¥å¥á¥ó¥È²½¤¹¤ë1¤Ä°Ê¾å¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»ØÄꤷ¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3cd /home/src/java/awt\fP
++.fl
++ % \f3javadoc \-d /home/html Button.java Canvas.java Graphics*.java\fP
++.fl
++.fi
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2Button\fP¥¯¥é¥¹¤È\f2Canvas\fP¥¯¥é¥¹¡¢¤ª¤è¤Ó̾Á°¤¬\f2Graphics\fP¤Ç»Ï¤Þ¤ë¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ç¤Ï¤Ê¤¯¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤¬Javadoc¤Ë°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢¥É¥­¥å¥á¥ó¥È¤Ï¡¢¥¯¥é¥¹¤Î¥ê¥¹¥È¤È¥á¥¤¥ó¡¦¥Ú¡¼¥¸¤È¤¤¤¦2¤Ä¤Î¥Õ¥ì¡¼¥à¤ò»ý¤Ä¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f3¥±¡¼¥¹2 \- ¥Ñ¥Ã¥±¡¼¥¸¤Î¥ë¡¼¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤ë\fP \- ¤³¤ì¤Ï¡¢Æ±¤¸¥ë¡¼¥ÈÆâ¤Ë¤¢¤ëÊ£¿ô¤Î¥µ¥Ö¥Ñ¥Ã¥±¡¼¥¸¤Î¸Ä¡¹¤Î¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£¥Ñ¥Ã¥±¡¼¥¸¤Î¥ë¡¼¥È¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë°Ü¤ê¡¢³Æ¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¡¢¥ë¡¼¥È¤«¤é¤Î¥Ñ¥¹¤È¤È¤â¤Ë»ØÄꤷ¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3cd /home/src/\fP
++.fl
++ % \f3javadoc \-d /home/html java/awt/Button.java java/applet/Applet.java\fP
++.fl
++.fi
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2Button\fP¥¯¥é¥¹¤ª¤è¤Ó\f2Applet\fP¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 2
++o
++\f3¥±¡¼¥¹3 \- Ǥ°Õ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é\fP \- ¤³¤Î¥±¡¼¥¹¤Ç¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤¬¤É¤³¤Ç¤¢¤Ã¤Æ¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£¥É¥­¥å¥á¥ó¥È²½¤¹¤ë\f2.java\fP¥Õ¥¡¥¤¥ë¤Ø¤ÎÀäÂХѥ¹(¤Þ¤¿¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤é¤ÎÁêÂХѥ¹)¤ò»ØÄꤷ¤ÆJavadoc¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d /home/html /home/src/java/awt/Button.java /home/src/java/awt/Graphics*.java\fP
++.fl
++.fi
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2Button\fP¥¯¥é¥¹¡¢¤ª¤è¤Ó̾Á°¤¬\f2Graphics\fP¤Ç»Ï¤Þ¤ë¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.RE
++.SS
++¥Ñ¥Ã¥±¡¼¥¸¤È¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È²½
++.LP
++¥Ñ¥Ã¥±¡¼¥¸Á´ÂΤȸġ¹¤Î¥¯¥é¥¹¤òƱ»þ¤Ë»ØÄꤷ¤Æ¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¼¡¤Ë¡¢Á°½Ò¤Î2¤Ä¤ÎÎã¤òÁȤ߹礻¤¿Îã¤ò¼¨¤·¤Þ¤¹¡£\f2\-sourcepath\fP¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸¤Ø¤Î¥Ñ¥¹¤ËÂФ·¤Æ¤Ï»ÈÍѤǤ­¤Þ¤¹¤¬¡¢¸Ä¡¹¤Î¥¯¥é¥¹¤Ø¤Î¥Ñ¥¹¤ËÂФ·¤Æ¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.nf
++\f3
++.fl
++ % \fP\f3javadoc \-d /home/html \-sourcepath /home/src java.awt /home/src/java/applet/Applet.java\fP
++.fl
++.fi
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2java.awt\fP¥Ñ¥Ã¥±¡¼¥¸¤ª¤è¤Ó\f2Applet\fP¥¯¥é¥¹¤Ë¤Ä¤¤¤Æ¡¢HTML·Á¼°¤Î¥É¥­¥å¥á¥ó¥È¤¬À¸À®¤µ¤ì¤Þ¤¹¡£(Javadoc¥Ä¡¼¥ë¤Ï¡¢\f2Applet.java\fP¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë¥Ñ¥Ã¥±¡¼¥¸Àë¸À¤¬¤¢¤ì¤Ð¡¢¤½¤ÎÀë¸À¤Ë´ð¤Å¤¤¤Æ\f2Applet\fP¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤òȽÊ̤·¤Þ¤¹¡£)
++.SH "»ÈÍÑÎã"
++.LP
++Javadoc¥Ä¡¼¥ë¤Ë¤Ï¿¤¯¤ÎÊØÍø¤Ê¥ª¥×¥·¥ç¥ó¤¬¤¢¤ê¡¢¤½¤ÎÃæ¤Ë¤Ï¾¤Î¥ª¥×¥·¥ç¥ó¤è¤ê¤âÉÑÈˤ˻ÈÍѤµ¤ì¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤¹¡£¤³¤³¤Ç¾Ò²ð¤¹¤ë¤Î¤Ï¡¢Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥àAPI¤ËÂФ·¤ÆJavadoc¥Ä¡¼¥ë¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë»ÈÍѤ¹¤ë¼ÂºÝ¤Î¥³¥Þ¥ó¥É¤Ç¤¹¡£Java SE Platform, Standard Edition, v1.2¤Ë¸ºß¤¹¤ë¡¢Ìó1500¸Ä¤Îpublic¤ª¤è¤Óprotected¥¯¥é¥¹¤Î¥É¥­¥å¥á¥ó¥È¤òÀ¸À®¤¹¤ë¤¿¤á¤Ë¡¢180MB¤Î¥á¥â¥ê¡¼¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++Ʊ¤¸Îã¤ò2²ó·ÇºÜ¤·¤Þ¤¹¡£ºÇ½é¤ÎÎã¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é¼Â¹Ô¤¹¤ë¤â¤Î¤Ç¡¢2ÈÖÌܤÎÎã¤ÏMakefile¤«¤é¼Â¹Ô¤¹¤ë¤â¤Î¤Ç¤¹¡£¥ª¥×¥·¥ç¥ó¤Î°ú¿ô¤ÇÀäÂХѥ¹¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¤¿¤á¡¢Ç¤°Õ¤Î¥Ç¥£¥ì¥¯¥È¥ê¤«¤éƱ¤¸\f2javadoc\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.SS
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎÎã
++.LP
++¼¡¤ÎÎã¤Ï¡¢DOS¤Ê¤É¤Î°ìÉô¤Î¥·¥§¥ë¤Ë¤ÏŤ¹¤®¤Þ¤¹¡£¤³¤ÎÀ©¸Â¤ò²óÈò¤¹¤ë¤Ë¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ·¤Þ¤¹¡£¤Þ¤¿¤Ï¡¢¥·¥§¥ë¡¦¥¹¥¯¥ê¥×¥È¤òµ­½Ò¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% javadoc \-sourcepath /java/jdk/src/share/classes \\
++.fl
++ \-overview /java/jdk/src/share/classes/overview.html \\
++.fl
++ \-d /java/jdk/build/api \\
++.fl
++ \-use \\
++.fl
++ \-splitIndex \\
++.fl
++ \-windowtitle 'Java Platform, Standard Edition 7 API Specification' \\
++.fl
++ \-doctitle 'Java Platform, Standard Edition 7 API Specification' \\
++.fl
++ \-header '<b>Java(TM) SE 7</b>' \\
++.fl
++ \-bottom '<font size="\-1">
++.fl
++ <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a><br/>
++.fl
++ Copyright &copy; 1993, 2011, Oracle and/or its affiliates. All rights reserved.<br/>
++.fl
++ Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
++.fl
++ Other names may be trademarks of their respective owners.</font>' \\
++.fl
++ \-group "Core Packages" "java.*:com.sun.java.*:org.omg.*" \\
++.fl
++ \-group "Extension Packages" "javax.*" \\
++.fl
++ \-J\-Xmx180m \\
++.fl
++ @packages
++.fl
++\fP
++.fi
++.LP
++¤³¤³¤Ç¡¢\f2packages\fP¤Ï¡¢½èÍýÂоݤΥѥ屡¼¥¸Ì¾(\f2java.applet java.lang\fP¤Ê¤É)¤¬Æþ¤Ã¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¤Î̾Á°¤Ç¤¹¡£³Æ¥ª¥×¥·¥ç¥ó¤Î¡¢°ì½Å°úÍÑÉä¤Ç°Ï¤Þ¤ì¤¿°ú¿ô¤ÎÆ⦤ˤϡ¢²þ¹Ôʸ»ú¤òÁÞÆþ¤Ç¤­¤Þ¤»¤ó¡£(¤¿¤È¤¨¤Ð¡¢¤³¤ÎÎã¤ò¥³¥Ô¡¼&¥Ú¡¼¥¹¥È¤¹¤ë¾ì¹ç¤Ï¡¢\f2\-bottom\fP¥ª¥×¥·¥ç¥ó¤«¤é²þ¹Ôʸ»ú¤òºï½ü¤·¤Æ¤¯¤À¤µ¤¤¡£)¤µ¤é¤Ë¡¢²¼¤Î¡ÖÃí°Õ¡×¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.SS
++Makefile¤ÎÎã
++.LP
++¤³¤³¤Ç¤Ï¡¢GNU Makefile¤ÎÎã¤ò¼¨¤·¤Þ¤¹¡£Windows¤ÎMakefile¤ÎÎã¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2Windows¤ÎMakefile¤ÎºîÀ®ÊýË¡\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137483.html#makefiles¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.nf
++\f3
++.fl
++javadoc \-\fP\f3sourcepath\fP\f3 $(SRCDIR) \\ /* Sets path for source files */
++.fl
++ \-\fP\f3overview\fP\f3 $(SRCDIR)/overview.html \\ /* Sets file for overview text */
++.fl
++ \-\fP\f3d\fP\f3 /java/jdk/build/api \\ /* Sets destination directory */
++.fl
++ \-\fP\f3use\fP\f3 \\ /* Adds "Use" files */
++.fl
++ \-\fP\f3splitIndex\fP\f3 \\ /* Splits index A\-Z */
++.fl
++ \-\fP\f3windowtitle\fP\f3 $(WINDOWTITLE) \\ /* Adds a window title */
++.fl
++ \-\fP\f3doctitle\fP\f3 $(DOCTITLE) \\ /* Adds a doc title */
++.fl
++ \-\fP\f3header\fP\f3 $(HEADER) \\ /* Adds running header text */
++.fl
++ \-\fP\f3bottom\fP\f3 $(BOTTOM) \\ /* Adds text at bottom */
++.fl
++ \-\fP\f3group\fP\f3 $(GROUPCORE) \\ /* 1st subhead on overview page */
++.fl
++ \-\fP\f3group\fP\f3 $(GROUPEXT) \\ /* 2nd subhead on overview page */
++.fl
++ \-\fP\f3J\fP\f3\-Xmx180m \\ /* Sets memory to 180MB */
++.fl
++ java.lang java.lang.reflect \\ /* Sets packages to document */
++.fl
++ java.util java.io java.net \\
++.fl
++ java.applet
++.fl
++
++.fl
++WINDOWTITLE = 'Java(TM) SE 7 API Specification'
++.fl
++DOCTITLE = 'Java(TM) Platform Standard Edition 7 API Specification'
++.fl
++HEADER = '<b>Java(TM) SE 7</font>'
++.fl
++BOTTOM = '<font size="\-1">
++.fl
++ <a href="http://bugreport.sun.com/bugreport/">Submit a bug or feature</a><br/>
++.fl
++ Copyright &copy; 1993, 2011, Oracle and/or its affiliates. All rights reserved.<br/>
++.fl
++ Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
++.fl
++ Other names may be trademarks of their respective owners.</font>'
++.fl
++GROUPCORE = '"Core Packages" "java.*:com.sun.java.*:org.omg.*"'
++.fl
++GROUPEXT = '"Extension Packages" "javax.*"'
++.fl
++SRCDIR = '/java/jdk/1.7.0/src/share/classes'
++.fl
++\fP
++.fi
++.LP
++Makefile¤Î°ú¿ô¤Ï¡¢°ì½Å°úÍÑÉä¤Ç°Ï¤ß¤Þ¤¹¡£
++.LP
++\f3Ãí°Õ\fP
++.RS 3
++.TP 2
++o
++\f2\-windowtitle\fP¥ª¥×¥·¥ç¥ó¤ò¾Êά¤¹¤ë¤È¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ¥É¥­¥å¥á¥ó¥È¡¦¥¿¥¤¥È¥ë¤¬¥¦¥£¥ó¥É¥¦¡¦¥¿¥¤¥È¥ë¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£\f2\-windowtitle\fP¤Î¥Æ¥­¥¹¥È¤Ï¡¢´ðËÜŪ¤Ë\f2\-doctitle\fP¤ÈƱ¤¸¤Ç¤¹¡£¤¿¤À¤·¡¢HTML¥¿¥°¤Ï´Þ¤Þ¤ì¤Þ¤»¤ó¡£¤³¤ì¤Ï¡¢HTML¥¿¥°¤¬¡¢¥¦¥£¥ó¥É¥¦¡¦¥¿¥¤¥È¥ëÆâ¤Ë¤½¤Î¤Þ¤Þ¤Î¥Æ¥­¥¹¥È¤È¤·¤Æɽ¼¨¤µ¤ì¤ë¤Î¤òËɤ°¤¿¤á¤Ç¤¹¡£.
++.TP 2
++o
++¤³¤ÎÎã¤Î¤è¤¦¤Ë\f2\-footer\fP¥ª¥×¥·¥ç¥ó¤ò¾Êά¤¹¤ë¤È¡¢Javadoc¥Ä¡¼¥ë¤Ë¤è¤Ã¤Æ¥Ø¥Ã¥À¡¼¡¦¥Æ¥­¥¹¥È¤¬¥Õ¥Ã¥¿¡¼¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.TP 2
++o
++¤³¤ÎÎã¤Ç¤ÏɬÍפ¢¤ê¤Þ¤»¤ó¤¬¡¢\f2\-classpath\fP¤È\f2\-link\fP¤â½ÅÍפʥª¥×¥·¥ç¥ó¤Ç¤¹¡£
++.RE
++.SH "¥È¥é¥Ö¥ë¥·¥å¡¼¥Æ¥£¥ó¥°"
++.SS
++°ìÈÌŪ¤Ê¥È¥é¥Ö¥ë¥·¥å¡¼¥Æ¥£¥ó¥°
++.RS 3
++.TP 2
++o
++\f3Javadoc¤ÎFAQ\fP \- °ìÈÌŪ¤Ê¥Ð¥°¤ª¤è¤Ó¥È¥é¥Ö¥ë¥·¥å¡¼¥Æ¥£¥ó¥°¤Î¥Ò¥ó¥È¤Ï¡¢
++.na
++\f2Javadoc¤ÎFAQ\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137483.html¤Ç»²¾È¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++\f3¥Ð¥°¤ª¤è¤ÓÀ©¸Â»ö¹à\fP \- ¥Ð¥°¤Î°ìÉô¤Ï¡¢¥Ð¥°½¤Àµ¤ª¤è¤ÓÊѹ¹¤Î¥¤¥ó¥Ý¡¼¥È¤Ç¤â»²¾È¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++\f3¥Ð¡¼¥¸¥ç¥óÈÖ¹æ\fP \- ¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++\f3Í­¸ú¤Ê¥¯¥é¥¹¤Î¤ß¤ò¥É¥­¥å¥á¥ó¥È²½\fP \- ¥Ñ¥Ã¥±¡¼¥¸¤ò¥É¥­¥å¥á¥ó¥È²½¤¹¤ë¤È¤­¡¢Javadoc¤Ï¡¢Ì¾Á°¤¬Í­¸ú¤Ê¥¯¥é¥¹Ì¾¤Ç¹½À®¤µ¤ì¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë¤Î¤ß¤òÆɤ߹þ¤ß¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥Õ¥¡¥¤¥ë̾¤Ë¥Ï¥¤¥Õ¥ó¡Ö\-¡×¤ò´Þ¤á¤ë¤³¤È¤Ç¡¢Javadoc¤Ë¤è¤ë¥Õ¥¡¥¤¥ë¤Î²òÀϤòËɤ°¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++.SS
++¥¨¥é¡¼¤È·Ù¹ð
++.LP
++¥¨¥é¡¼¤ª¤è¤Ó·Ù¹ð¥á¥Ã¥»¡¼¥¸¤Ë¤Ï¡¢¥Õ¥¡¥¤¥ë̾¤ÈÀë¸À¹Ô(¥É¥­¥å¥á¥ó¥Æ¡¼¥·¥ç¥ó¡¦¥³¥á¥ó¥ÈÆâ¤ÎÆÃÄê¤Î¹Ô¤Ç¤Ï¤Ê¤¤)¤Î¹ÔÈֹ椬´Þ¤Þ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++¡Ö\f2¥¨¥é¡¼: Class1.java¤òÆɤ߹þ¤á¤Þ¤»¤ó\fP¡×: Javadoc¥Ä¡¼¥ë¤Ï¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËClass1.java¥¯¥é¥¹¤ò¥í¡¼¥É¤·¤è¤¦¤È¤·¤Æ¤¤¤Þ¤¹¡£ÀäÂХѥ¹¤Þ¤¿¤ÏÁêÂХѥ¹¤È¤È¤â¤Ëɽ¼¨¤µ¤ì¤ë¥¯¥é¥¹Ì¾¤Ï¡¢¤³¤ÎÎã¤Î¾ì¹ç\f2./Class1.java\fP¤ÈƱ¤¸¤Ç¤¹¡£
++.RE
++.SH "´Ä¶­"
++.RS 3
++.TP 3
++CLASSPATH
++Javadoc¤¬¥æ¡¼¥¶¡¼¡¦¥¯¥é¥¹¤Î¥Õ¥¡¥¤¥ë¤òõ¤¹¤È¤­¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¤ò»ØÄꤹ¤ë´Ä¶­ÊÑ¿ô¤Ç¤¹¡£¤³¤Î´Ä¶­ÊÑ¿ô¤Ï¡¢\f2\-classpath\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¥ª¡¼¥Ð¡¼¥é¥¤¥É¤µ¤ì¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¥³¥í¥ó¤Ç¶èÀÚ¤ê¤Þ¤¹¡£
++.:/home/classes:/usr/local/java/classes
++.RE
++.SH "´ØÏ¢¹àÌÜ"
++.RS 3
++.TP 2
++o
++javac(1)
++.TP 2
++o
++java(1)
++.TP 2
++o
++jdb(1)
++.TP 2
++o
++javah(1)
++.TP 2
++o
++javap(1)
++.TP 2
++o
++.na
++\f2Javadoc¤Î¥Û¡¼¥à¡¦¥Ú¡¼¥¸\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-jsp\-135444.html
++.TP 2
++o
++.na
++\f2How to Write Doc Comments for Javadoc\fP @
++.fi
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html
++.TP 2
++o
++.na
++\f2¥¯¥é¥¹¡¦¥Ñ¥¹¤ÎÀßÄê\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general
++.TP 2
++o
++.na
++\f2javac¤Èjavadoc¤¬¥¯¥é¥¹¤ò¸¡º÷¤¹¤ëÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles(tools.jar)
++.RE
++
+--- jdk/src/bsd/doc/man/ja/javah.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/javah.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,120 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javah 1 "07 May 2011"
++.TH javah 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++javah \- C¥Ø¥Ã¥À¡¼¤È¥¹¥¿¥Ö¡¦¥Õ¥¡¥¤¥ë¡¦¥¸¥§¥Í¥ì¡¼¥¿
++.LP
++.LP
++\f3javah\fP¤Ï¡¢Java¥¯¥é¥¹¤«¤éC¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë¤ÈC¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Ç½ñ¤«¤ì¤¿¥³¡¼¥É¤È¡¢C¤Ê¤É¤Î¤½¤Î¾¤Î¸À¸ì¤Ç½ñ¤«¤ì¤¿¥³¡¼¥É¤òÀܳ¤·¡¢¥³¡¼¥É¤¬Áê¸ß¤ËºîÍѤ¹¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++javah [ \fP\f3options\fP\f3 ] fully\-qualified\-classname. . .
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3javah\fP¤Ï¡¢¥Í¥¤¥Æ¥£¥Ö¡¦¥á¥½¥Ã¥É¤ò¼ÂÁõ¤¹¤ë¤¿¤á¤ËɬÍפÊC¥Ø¥Ã¥À¡¼¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£ºîÀ®¤µ¤ì¤¿¥Ø¥Ã¥À¡¼¤È¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¥Í¥¤¥Æ¥£¥Ö¡¦¥½¡¼¥¹¡¦¥³¡¼¥É¤«¤é¥ª¥Ö¥¸¥§¥¯¥È¤Î¥¤¥ó¥¹¥¿¥ó¥¹ÊÑ¿ô¤ò»²¾È¤¹¤ë¤¿¤á¤ËC¥×¥í¥°¥é¥à¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£.h¥Õ¥¡¥¤¥ë¤Ï¡¢Âбþ¤¹¤ë¥¯¥é¥¹¤È°ìÃפ¹¤ëÇÛÃÖ¤ò»ý¤Ä¹½Â¤ÂÎÄêµÁ¤ò´Þ¤ß¤Þ¤¹¡£¹½Â¤ÂΤΥե£¡¼¥ë¥É¤Ï¡¢¥¯¥é¥¹¤Î¥¤¥ó¥¹¥¿¥ó¥¹ÊÑ¿ô¤ËÂбþ¤·¤Þ¤¹¡£
++.LP
++.LP
++¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë¤È¤½¤ÎÃæ¤ÇÀë¸À¤µ¤ì¤ë¹½Â¤ÂΤÎ̾Á°¤Ï¥¯¥é¥¹¤Î̾Á°¤«¤éÇÉÀ¸¤·¤Þ¤¹¡£\f3javah\fP¤ËÅϤµ¤ì¤ë¥¯¥é¥¹¤¬¥Ñ¥Ã¥±¡¼¥¸¤ÎÃæ¤Ë¤¢¤ë¾ì¹ç¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ï¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë̾¤È¹½Â¤ÂÎ̾¤ÎξÊý¤ËÉղ䵤ì¤Þ¤¹¡£²¼Àþ(_)¤¬Ì¾Á°¤Î¶èÀÚ¤êʸ»ú¤È¤·¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï\f3javah\fP¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¥ê¥¹¥È¤µ¤ì¤ë³Æ¥¯¥é¥¹¤Î¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥Õ¥¡¥¤¥ë¤òÃÖ¤­¤Þ¤¹¡£¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤¹¤ë¤Ë¤Ï¡¢\f2\-stubs\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£1¤Ä¤Î¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ë¡¢¥ê¥¹¥È¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤Î·ë²Ì¤òÏ¢·ë¤¹¤ë¤Ë¤Ï¡¢\f2\-o\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¿·¤·¤¤¥Í¥¤¥Æ¥£¥Ö¡¦¥á¥½¥Ã¥É¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç¤¢¤ëJava Native Interface(JNI)¤Ï¡¢¥Ø¥Ã¥À¡¼¾ðÊó¤Þ¤¿¤Ï¥¹¥¿¥Ö¡¦¥Õ¥¡¥¤¥ë¤òɬÍפȤ·¤Þ¤»¤ó¡£¸½ºß¤Ç¤Ï¡¢\f3javah\fP¤Ï¡¢JNI·Á¼°¤Î¥Í¥¤¥Æ¥£¥Ö¡¦¥á¥½¥Ã¥É¤ËɬÍפʥͥ¤¥Æ¥£¥Ö¡¦¥á¥½¥Ã¥Éµ¡Ç½¥×¥í¥È¥¿¥¤¥×¤òÀ¸À®¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢\f3javah\fP¤ÏJNI·Á¼°¤Ç½ÐÎϤµ¤ì¡¢¤½¤Î·ë²Ì¤Ï .h¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-o outputfile
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¥ê¥¹¥È¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤ËÂФ·¤Æ¡¢·ë²Ì¤Î¥Ø¥Ã¥À¡¼¤Þ¤¿¤Ï¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤òÏ¢·ë¤·¤Æ\f2outputfile\fP¤Ë³ÊǼ¤·¤Þ¤¹¡£\f3\-o\fP¤Þ¤¿¤Ï\f3\-d\fP¤Î¤É¤Á¤é¤«°ìÊý¤Î¤ß»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-ddirectory
++\f3javah\fP¤¬¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥¹¥¿¥Ö¡¦¥Õ¥¡¥¤¥ë¤òÊݸ¤¹¤ë¡¢¥Ç¥£¥ì¥¯¥È¥ê¤òÀßÄꤷ¤Þ¤¹¡£\f3\-d\fP¤Þ¤¿¤Ï\f3\-o\fP¤Î¤É¤Á¤é¤«°ìÊý¤Î¤ß»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-stubs
++\f3javah\fP¤¬¡¢Java¥ª¥Ö¥¸¥§¥¯¥È¡¦¥Õ¥¡¥¤¥ë¤«¤éCÀë¸À¤òÀ¸À®¤·¤Þ¤¹¡£
++.TP 3
++\-verbose
++¾ÜºÙ½ÐÎϤò»ØÄꤷ¡¢ºîÀ®¥Õ¥¡¥¤¥ë¤Î¾õÂ֤˴ؤ¹¤ë¥á¥Ã¥»¡¼¥¸¤ò¡¢\f3javah\fP¤¬É¸½à½ÐÎϤ˽ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-help
++\f3javah\fP¤Î»ÈÍÑÊýË¡¤Ë¤Ä¤¤¤Æ¤Î¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-version
++\f3javah\fP¤Î¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-jni
++JNI·Á¼°¤Î¥Í¥¤¥Æ¥£¥Ö¡¦¥Õ¥¡¥¤¥ëµ¡Ç½¥×¥í¥È¥¿¥¤¥×¤ò´Þ¤à½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò¡¢\f3javah\fP¤¬ºîÀ®¤·¤Þ¤¹¡£¤³¤ì¤Ïɸ½à½ÐÎϤǤ¢¤ë¤¿¤á¡¢\f3\-jni\fP¤Î»ÈÍѤϥª¥×¥·¥ç¥ó¤Ç¤¹¡£
++.TP 3
++\-classpath path
++¥¯¥é¥¹¤òõ¤¹¤¿¤á¤Ë\f3javah\fP¤¬»ÈÍѤ¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Þ¤¿¤ÏCLASSPATH´Ä¶­ÊÑ¿ôÀßÄê¤ò¾å½ñ¤­¤·¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥³¥í¥ó¤Çʬ³ä¤·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2path\fP¤Î°ìÈÌ·Á¼°¤Ï¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ .:<your_path>
++.fl
++\fP
++.fi
++¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ .:/home/avh/classes:/usr/local/java/classes
++.fl
++\fP
++.fi
++Êص¹¾å¡¢\f2*\fP¤Î¥Ù¡¼¥¹Ì¾¤ò´Þ¤à¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁǤϡ¢\f2.jar\fP¤Þ¤¿¤Ï\f2.JAR\fP¤ò³ÈÄ¥»Ò¤Ë»ý¤Ä¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ò»ØÄꤹ¤ë¤Î¤ÈƱÅù¤È¤ß¤Ê¤µ¤ì¤Þ¤¹(java¥×¥í¥°¥é¥à¤Ï¤³¤Î2¤Ä¤Î¸Æ½Ð¤·¤ò¶èÊ̤Ǥ­¤Ê¤¤)¡£
++.br
++.br
++¤¿¤È¤¨¤Ð¡¢¥Ç¥£¥ì¥¯¥È¥ê\f2foo\fP¤Ë\f2a.jar\fP¤È\f2b.JAR\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥¯¥é¥¹¡¦¥Ñ¥¹Í×ÁÇ\f2foo/*\fP¤Ï\f2A.jar:b.JAR\fP¤ËŸ³«¤µ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢JAR¥Õ¥¡¥¤¥ë¤Î½çÈÖ¤Ï̤»ØÄê¤È¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥ê¥¹¥È¤Ë¤Ï¡¢±£¤·¥Õ¥¡¥¤¥ë¤â´Þ¤á¡¢»ØÄꤵ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤¬´Þ¤Þ¤ì¤Þ¤¹¡£\f2*\fP¤Î¤ß¤«¤é¤Ê¤ë¥¯¥é¥¹¡¦¥Ñ¥¹¡¦¥¨¥ó¥È¥ê¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤ÎJAR¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ËŸ³«¤µ¤ì¤Þ¤¹¡£\f2CLASSPATH\fP´Ä¶­ÊÑ¿ô¤â¡¢ÄêµÁ»þ¤Ë¤ÏƱÍͤËŸ³«¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¹¡¦¥Ñ¥¹¤Î¥ï¥¤¥ë¥É¥«¡¼¥ÉŸ³«¤Ïɬ¤º¡¢Java²¾ÁÛ¥Þ¥·¥ó¤Îµ¯Æ°Á°¤Ë¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢´Ä¶­¤ËÌä¹ç¤»¤ò¹Ô¤ï¤Ê¤¤¸Â¤ê¡¢Java¥×¥í¥°¥é¥à¤¬Å¸³«¤µ¤ì¤Æ¤¤¤Ê¤¤¥ï¥¤¥ë¥É¥«¡¼¥É¤òǧ¼±¤¹¤ë¤³¤È¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢\f2System.getenv(\\"CLASSPATH\\")\fP¸Æ½Ð¤·¤¬¤½¤ÎÎã¤Ç¤¹¡£
++.TP 3
++\-bootclasspath path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ò¥í¡¼¥É¤¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï\f2jre/lib/rt.jar\fP¤ª¤è¤Ó¾¤Î¤¤¤¯¤Ä¤«¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¤¢¤ë¡¢¥³¥¢Java 2¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤ò¼ÂÁõ¤¹¤ë¥¯¥é¥¹¤Ç¤¹¡£
++.TP 3
++\-old
++¸Å¤¤JDK1.0·Á¼°¤Î¥Ø¥Ã¥À¡¼¡¦¥Õ¥¡¥¤¥ë¤òÀ¸À®¤¹¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-force
++½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬¾ï¤Ë½ñ¤­¹þ¤Þ¤ì¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´Ä¶­ÊÑ¿ô"
++.LP
++.RS 3
++.TP 3
++CLASSPATH
++¥æ¡¼¥¶¡¼ÄêµÁ¥¯¥é¥¹¤Ø¤Î¥Ñ¥¹¤ò¥·¥¹¥Æ¥à¤Ë»ØÄꤷ¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥³¥í¥ó¤Çʬ³ä¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++.:/home/avh/classes:/usr/local/java/classes
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++javac(1)¡¢java(1)¡¢jdb(1)¡¢javap(1)¡¢javadoc(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/javap.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/javap.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,299 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javap 1 "07 May 2011"
++.TH javap 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++javap \- Java¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ëµÕ¥¢¥»¥ó¥Ö¥é
++.LP
++.LP
++¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òµÕ¥¢¥»¥ó¥Ö¥ë¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++javap [ \fP\f3options\fP\f3 ] classes
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3javap\fP¥³¥Þ¥ó¥É¤Ï¡¢1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òµÕ¥¢¥»¥ó¥Ö¥ë¤·¤Þ¤¹¡£¤½¤Î½ÐÎϤϻØÄꤹ¤ë¥ª¥×¥·¥ç¥ó¤Ë¤è¤ê°Û¤Ê¤ê¤Þ¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢\f3javap\fP¤Ï¡¢¤½¤Î¥Ñ¥Ã¥±¡¼¥¸¡¢ÅϤµ¤ì¤¿¥¯¥é¥¹¤Îprotected¤ª¤è¤Ópublic¤Î¥Õ¥£¡¼¥ë¥É¤È¥á¥½¥Ã¥É¤ò½ÐÎϤ·¤Þ¤¹¡£\f3javap\fP¤Ï¤½¤Î½ÐÎϤòɸ½à½ÐÎϤËɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£
++.TP 3
++classes
++Ãí¼á¤Î½èÍýÂоݤȤʤë1¤Ä°Ê¾å¤Î¥¯¥é¥¹\f2DocFooter.class\fP¤Ê¤É¤Î¥ê¥¹¥È(¶õÇò¶èÀÚ¤ê)¡£¥¯¥é¥¹¡¦¥Ñ¥¹¤Ç¸«¤Ä¤«¤ë¥¯¥é¥¹¤Ï¡¢¥Õ¥¡¥¤¥ë̾(\f2/home/user/myproject/src/DocFooter.class\fP¤Ê¤É)¤Þ¤¿¤ÏURL(\f2file:///home/user/myproject/src/DocFooter.class\fP¤Ê¤É)¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥¯¥é¥¹Àë¸À¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤È¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++import java.awt.*;
++.fl
++import java.applet.*;
++.fl
++
++.fl
++public class DocFooter extends Applet {
++.fl
++ String date;
++.fl
++ String email;
++.fl
++
++.fl
++ public void init() {
++.fl
++ resize(500,100);
++.fl
++ date = getParameter("LAST_UPDATED");
++.fl
++ email = getParameter("EMAIL");
++.fl
++ }
++.fl
++
++.fl
++ public void paint(Graphics g) {
++.fl
++ g.drawString(date + " by ",100, 15);
++.fl
++ g.drawString(email,290,15);
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f3javap DocFooter.class\fP¤¬¤â¤¿¤é¤¹½ÐÎϤϼ¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++Compiled from "DocFooter.java"
++.fl
++public class DocFooter extends java.applet.Applet {
++.fl
++ java.lang.String date;
++.fl
++ java.lang.String email;
++.fl
++ public DocFooter();
++.fl
++ public void init();
++.fl
++ public void paint(java.awt.Graphics);
++.fl
++}
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f3javap \-c DocFooter.class\fP¤¬¤â¤¿¤é¤¹½ÐÎϤϼ¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++Compiled from "DocFooter.java"
++.fl
++public class DocFooter extends java.applet.Applet {
++.fl
++ java.lang.String date;
++.fl
++
++.fl
++ java.lang.String email;
++.fl
++
++.fl
++ public DocFooter();
++.fl
++ Code:
++.fl
++ 0: aload_0
++.fl
++ 1: invokespecial #1 // Method java/applet/Applet."<init>":()V
++.fl
++ 4: return
++.fl
++
++.fl
++ public void init();
++.fl
++ Code:
++.fl
++ 0: aload_0
++.fl
++ 1: sipush 500
++.fl
++ 4: bipush 100
++.fl
++ 6: invokevirtual #2 // Method resize:(II)V
++.fl
++ 9: aload_0
++.fl
++ 10: aload_0
++.fl
++ 11: ldc #3 // String LAST_UPDATED
++.fl
++ 13: invokevirtual #4 // Method getParameter:(Ljava/lang/String;)Ljava/lang/String;
++.fl
++ 16: putfield #5 // Field date:Ljava/lang/String;
++.fl
++ 19: aload_0
++.fl
++ 20: aload_0
++.fl
++ 21: ldc #6 // String EMAIL
++.fl
++ 23: invokevirtual #4 // Method getParameter:(Ljava/lang/String;)Ljava/lang/String;
++.fl
++ 26: putfield #7 // Field email:Ljava/lang/String;
++.fl
++ 29: return
++.fl
++
++.fl
++ public void paint(java.awt.Graphics);
++.fl
++ Code:
++.fl
++ 0: aload_1
++.fl
++ 1: new #8 // class java/lang/StringBuilder
++.fl
++ 4: dup
++.fl
++ 5: invokespecial #9 // Method java/lang/StringBuilder."<init>":()V
++.fl
++ 8: aload_0
++.fl
++ 9: getfield #5 // Field date:Ljava/lang/String;
++.fl
++ 12: invokevirtual #10 // Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
++.fl
++ 15: ldc #11 // String by
++.fl
++ 17: invokevirtual #10 // Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
++.fl
++ 20: invokevirtual #12 // Method java/lang/StringBuilder.toString:()Ljava/lang/String;
++.fl
++ 23: bipush 100
++.fl
++ 25: bipush 15
++.fl
++ 27: invokevirtual #13 // Method java/awt/Graphics.drawString:(Ljava/lang/String;II)V
++.fl
++ 30: aload_1
++.fl
++ 31: aload_0
++.fl
++ 32: getfield #7 // Field email:Ljava/lang/String;
++.fl
++ 35: sipush 290
++.fl
++ 38: bipush 15
++.fl
++ 40: invokevirtual #13 // Method java/awt/Graphics.drawString:(Ljava/lang/String;II)V
++.fl
++ 43: return
++.fl
++}
++.fl
++\fP
++.fi
++
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-help \-\-help \-?
++\f3javap\fP¤Î¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-l
++¹ÔÈÖ¹æ¤È¥í¡¼¥«¥ëÊÑ¿ôɽ¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-public
++public¥¯¥é¥¹¤ª¤è¤Ó¥á¥ó¥Ð¡¼¤Î¤ßɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-protected
++protected¤ª¤è¤Ópublic¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤Î¤ß¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-package
++package¡¢protected¡¢¤ª¤è¤Ópublic¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤Î¤ßɽ¼¨¤·¤Þ¤¹¡£¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¹¡£
++.TP 3
++\-private \-p
++¤¹¤Ù¤Æ¤Î¥¯¥é¥¹¤È¥á¥ó¥Ð¡¼¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-Jflag
++¥é¥ó¥¿¥¤¥à¡¦¥·¥¹¥Æ¥à¤ËľÀÜ\f2flag\fP¤òÅϤ·¤Þ¤¹¡£»ÈÍÑÎã¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++javap \-J\-version
++.fl
++javap \-J\-Djava.security.manager \-J\-Djava.security.policy=MyPolicy MyClassName
++.fl
++\fP
++.fi
++.TP 3
++\-s
++ÆâÉô¤Î·¿¥·¥°¥Ë¥Á¥ã¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-sysinfo
++½èÍýÃæ¤Î¥¯¥é¥¹¤Î¥·¥¹¥Æ¥à¾ðÊó(¥Ñ¥¹¡¢¥µ¥¤¥º¡¢ÆüÉÕ¡¢MD5¥Ï¥Ã¥·¥å)¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-constants
++static finalÄê¿ô¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-c
++¥¯¥é¥¹¤Î³Æ¥á¥½¥Ã¥É¤Î¤¿¤á¤ËµÕ¥¢¥»¥ó¥Ö¥ë¤µ¤ì¤ë¥³¡¼¥É¡¢¤¹¤Ê¤ï¤ÁJava¥Ð¥¤¥È¥³¡¼¥É¤«¤é¤Ê¤ëÌ¿Îá¤òɽ¼¨¤·¤Þ¤¹¡£¤³¤ì¤é¤Ï
++.na
++\f2Java Virtual Machine Specification\fP @
++.fi
++http://docs.oracle.com/javase/specs/¤Ë¥É¥­¥å¥á¥ó¥È²½¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++\-verbose
++¥á¥½¥Ã¥É¤Î¥¹¥¿¥Ã¥¯¡¦¥µ¥¤¥º¡¢¤ª¤è¤Ó\f2locals\fP¤È\f2args\fP¤Î¿ô¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-classpath path
++\f3javap\fP¤¬¥¯¥é¥¹¤òõ¤¹¤¿¤á¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Þ¤¿¤ÏCLASSPATH´Ä¶­ÊÑ¿ôÀßÄê¤ò¾å½ñ¤­¤·¤Þ¤¹¡£
++.TP 3
++\-bootclasspath path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤ò¥í¡¼¥É¤¹¤ë¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï\f2jre/lib/rt.jar\fP¤ª¤è¤Ó¾¤Î¤¤¤¯¤Ä¤«¤ÎJAR¥Õ¥¡¥¤¥ë¤Ë¤¢¤ë¡¢¥³¥¢Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤ò¼ÂÁõ¤¹¤ë¥¯¥é¥¹¤Ç¤¹¡£
++.TP 3
++\-extdirs dirs
++¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤¿³ÈÄ¥µ¡Ç½¤ò¸¡º÷¤¹¤ë¾ì½ê¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£³ÈÄ¥µ¡Ç½¤Î¥Ç¥Õ¥©¥ë¥È°ÌÃÖ¤Ï\f2java.ext.dirs\fP¤Ç¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++javac(1)¡¢java(1)¡¢jdb(1)¡¢javah(1)¡¢javadoc(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/javaws.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/javaws.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,204 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javaws 1 "07 May 2011"
++.TH javaws 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++\f2javaws\fP¥³¥Þ¥ó¥É¥é¥¤¥ó
++.LP
++.SH "̾Á°"
++.LP
++.LP
++\f2javaws\fP \- Java Web Startµ¯Æ°¥³¥Þ¥ó¥É
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++\f2javaws [run\-options] <jnlp>\fP
++.LP
++.LP
++\f2javaws [control\-options]\fP
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.LP
++\f2[run\-options]\fP
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¼Â¹Ô¥ª¥×¥·¥ç¥ó¡£¼Â¹Ô¥ª¥×¥·¥ç¥ó¤ÏǤ°Õ¤Î½ç½ø¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£³Æ¼ï¼Â¹Ô¥ª¥×¥·¥ç¥ó¤Î¾ÜºÙ¤Ï¡¢¼¡¤Î¼Â¹Ô¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f2<jnlp>\fP
++.LP
++.LP
++JNLP(Java Network Launching Protocol)¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¤Þ¤¿¤ÏURL(Uniform Resource Locator)¤Î¤É¤Á¤é¤«¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2[control\-options]\fP
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥óÀ©¸æ¥ª¥×¥·¥ç¥ó¡£À©¸æ¥ª¥×¥·¥ç¥ó¤ÏǤ°Õ¤Î½ç½ø¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£³Æ¼ïÀ©¸æ¥ª¥×¥·¥ç¥ó¤Î¾ÜºÙ¤Ï¡¢¼¡¤ÎÀ©¸æ¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f2javaws\fP¥³¥Þ¥ó¥É¤Ï¡¢JNLP(Java Network Launching Protocol)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¼ÂÁõ¤Ç¤¢¤ëJava Web Start¤òµ¯Æ°¤·¤Þ¤¹¡£Java Web Start¤Ï¡¢¥Í¥Ã¥È¥ï¡¼¥¯¾å¤ÇÆ°ºî¤¹¤ëJava¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥¢¥×¥ì¥Ã¥È¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++JNLP¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢\f2javaws\fP¤Ï¡¢¤½¤ÎJNLP¥Õ¥¡¥¤¥ë¤Ç»ØÄꤵ¤ì¤¿Java¥¢¥×¥ê¥±¡¼¥·¥ç¥ó/¥¢¥×¥ì¥Ã¥È¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2javaws\fPµ¯Æ°¥Ä¡¼¥ë¤Ë¤Ï¡¢¸½ºß¤Î¥ê¥ê¡¼¥¹¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë1ÁȤΥª¥×¥·¥ç¥ó¤¬¤¢¤ê¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ï¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤Ïºï½ü¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "¼Â¹Ô¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f2\-offline\fP
++.LP
++.LP
++Java Web Start¤ò¥ª¥Õ¥é¥¤¥ó¡¦¥â¡¼¥É¤Ç¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-Xnosplash\fP
++.LP
++.LP
++½é´ü¥¹¥×¥é¥Ã¥·¥å²èÌ̤òɽ¼¨¤·¤Þ¤»¤ó¡£
++.LP
++.LP
++\f2\-open <arguments>\fP
++.LP
++.LP
++¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢JNLP¥Õ¥¡¥¤¥ëÆâ¤Î°ú¿ô¤¬\f2\-open<arguments>\fP¤ËÃÖ¤­´¹¤ï¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2\-print <arguments>\fP
++.LP
++.LP
++¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢JNLP¥Õ¥¡¥¤¥ëÆâ¤Î°ú¿ô¤¬\f2\-print<arguments>\fP¤ËÃÖ¤­´¹¤ï¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2\-online\fP
++.LP
++.LP
++¥ª¥ó¥é¥¤¥ó¡¦¥â¡¼¥É¤ò»ÈÍѤ·¤Þ¤¹(¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî)¡£
++.LP
++.LP
++\f2\-wait\fP
++.LP
++.LP
++¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢\f2javaws\fP¥×¥í¥»¥¹¤Ï¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬½ªÎ»¤¹¤ë¤Þ¤Ç½ªÎ»¤·¤Þ¤»¤ó¡£Windows¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¾å¤Ç¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ÏÀâÌÀ¤·¤¿¤È¤ª¤ê¤Ëµ¡Ç½¤·¤Þ¤»¤ó¡£
++.LP
++.LP
++\f2\-verbose\fP
++.LP
++.LP
++ÄɲäνÐÎϤòɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-J<option>\fP
++.LP
++.LP
++VM¤ËÂФ¹¤ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f2\-system\fP
++.LP
++.LP
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¥·¥¹¥Æ¥à¡¦¥­¥ã¥Ã¥·¥å¤Î¤ß¤«¤é¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.SH "À©¸æ¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f2\-viewer\fP
++.LP
++.LP
++Java¥³¥ó¥È¥í¡¼¥ë¡¦¥Ñ¥Í¥ë¤Ç¥­¥ã¥Ã¥·¥å¡¦¥Ó¥å¡¼¥¢¤òɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-clearcache\fP
++.LP
++.LP
++¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¤¹¤Ù¤Æ¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¥­¥ã¥Ã¥·¥å¤«¤éºï½ü¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-userConfig <property name>\fP
++.LP
++.LP
++»ØÄꤵ¤ì¤¿¥Ç¥×¥í¥¤¥á¥ó¥È¡¦¥×¥í¥Ñ¥Æ¥£¤ò¥¯¥ê¥¢¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-userConfig <property name> <property value>\fP
++.LP
++.LP
++»ØÄꤵ¤ì¤¿¥Ç¥×¥í¥¤¥á¥ó¥È¡¦¥×¥í¥Ñ¥Æ¥£¤ò»ØÄꤵ¤ì¤¿ÃͤËÀßÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f2\-uninstall\fP
++.LP
++.LP
++¥­¥ã¥Ã¥·¥å¤«¤é¤¹¤Ù¤Æ¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òºï½ü¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-uninstall <jnlp>\fP
++.LP
++.LP
++¥­¥ã¥Ã¥·¥å¤«¤é¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òºï½ü¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-import [import\-options] <jnlp>\fP
++.LP
++.LP
++¥­¥ã¥Ã¥·¥å¤Ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.LP
++.SH "¥¤¥ó¥Ý¡¼¥È¡¦¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f2\-silent\fP
++.LP
++.LP
++¥µ¥¤¥ì¥ó¥È¡¦¥â¡¼¥É¤Ç¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹(¥æ¡¼¥¶¡¼¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ïɽ¼¨¤µ¤ì¤Þ¤»¤ó)¡£
++.LP
++.LP
++\f2\-system\fP
++.LP
++.LP
++¥·¥¹¥Æ¥à¡¦¥­¥ã¥Ã¥·¥å¤Ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-codebase <url>\fP
++.LP
++.LP
++»ØÄꤷ¤¿codebase¤«¤é¥ê¥½¡¼¥¹¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-shortcut\fP
++.LP
++.LP
++¥æ¡¼¥¶¡¼¤¬¥×¥í¥ó¥×¥È¤Çµö²Ä¤·¤¿¾ì¹ç¤Î¤è¤¦¤Ë¥·¥ç¡¼¥È¥«¥Ã¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2\-silent\fP¥ª¥×¥·¥ç¥ó¤â»ÈÍѤ·¤Ê¤¤¤È¸ú²Ì¤¬¤¢¤ê¤Þ¤»¤ó¡£
++.LP
++.LP
++\f2\-association\fP
++.LP
++.LP
++¥æ¡¼¥¶¡¼¤¬¥×¥í¥ó¥×¥È¤Çµö²Ä¤·¤¿¾ì¹ç¤Î¤è¤¦¤Ë¥¢¥½¥·¥¨¡¼¥·¥ç¥ó¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2\-silent\fP¥ª¥×¥·¥ç¥ó¤â»ÈÍѤ·¤Ê¤¤¤È¸ú²Ì¤¬¤¢¤ê¤Þ¤»¤ó¡£
++.LP
++.SH "¥Õ¥¡¥¤¥ë"
++.LP
++.LP
++¥æ¡¼¥¶¡¼¡¦¥­¥ã¥Ã¥·¥å¡¢¥·¥¹¥Æ¥à¡¦¥­¥ã¥Ã¥·¥å¤ª¤è¤Ódeployment.properties¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2¥·¥¹¥Æ¥à¡¦¥ì¥Ù¥ë¤ª¤è¤Ó¥æ¡¼¥¶¡¼¡¦¥ì¥Ù¥ë¤Î¥×¥í¥Ñ¥Æ¥£\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/properties.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¾ÜºÙ¾ðÊó"
++.LP
++.LP
++Java Web Start¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2Java Web Start\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/index.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jcmd.1 1969-12-31 16:00:00.000000000 -0800
++++ jdk/src/bsd/doc/man/ja/jcmd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -0,0 +1,118 @@
++." Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved.
++." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++."
++." This code is free software; you can redistribute it and/or modify it
++." under the terms of the GNU General Public License version 2 only, as
++." published by the Free Software Foundation.
++."
++." This code is distributed in the hope that it will be useful, but WITHOUT
++." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++." version 2 for more details (a copy is included in the LICENSE file that
++." accompanied this code).
++."
++." You should have received a copy of the GNU General Public License version
++." 2 along with this work; if not, write to the Free Software Foundation,
++." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++."
++." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++." or visit www.oracle.com if you need additional information or have any
++." questions.
++."
++.TH jcmd 1 "05 Jul 2012"
++
++.LP
++.SH "̾Á°"
++jcmd \- ¿ÇÃÇ¥³¥Þ¥ó¥É
++.LP
++.LP
++\f3jcmd\fP¤Ï¡¢¼Â¹ÔÃæ¤ÎJava²¾ÁÛ¥Þ¥·¥ó¤Ë¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤¹¤ë¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ç¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++ \fP\f3jcmd\fP [ option ]
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> PerfCounter.print
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> \f2command\fP [\f2arguments\fP]
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> \-f \f2file\fP
++.fl
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jcmd\fP¤Ï¡¢¤³¤Îµ¡Ç½¤ò¥µ¥Ý¡¼¥È¤¹¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤¹¤ë¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ç¤¹¡£
++.LP
++.LP
++°ú¿ô¤Ê¤·¤Þ¤¿¤Ï\-l¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æjcmd¤ò»ÈÍѤ¹¤ë¤È¡¢¼Â¹ÔÃæ¤ÎJava¥×¥í¥»¥¹¤¬¥×¥í¥»¥¹ID¡¢¥á¥¤¥ó¡¦¥¯¥é¥¹¤ª¤è¤Ó¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤È¤È¤â¤Ëɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥×¥í¥»¥¹ID¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤹ¤ë¤È¡¢jcmd¤Ç¤Ï¡¢¤³¤ÎID¤Î¥×¥í¥»¥¹¤Ë¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤¬Á÷¿®¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥á¥¤¥ó¡¦¥¯¥é¥¹¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤹ¤ë¤È¡¢jcmd¤Ç¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤¬Java¥×¥í¥»¥¹¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤ÎÉôʬʸ»úÎó¤Ç¤¢¤ë¤¹¤Ù¤Æ¤ÎJava¥×¥í¥»¥¹¤Ë¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤¬Á÷¿®¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++PerfCounter.print°ú¿ô¤ò»ØÄꤹ¤ë¤È¡¢jcmd¤Ç¤Ï¡¢¥¿¡¼¥²¥Ã¥È¤ÎJava¥×¥í¥»¥¹¤Ç»ÈÍѲÄǽ¤Ê¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¡¦¥«¥¦¥ó¥¿¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\-f ¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢jcmd¤Ç¤Ï¡¢\f2file\fP¤ËÊݸ¤µ¤ì¤Æ¤¤¤ë¿ÇÃÇ¥³¥Þ¥ó¥É¤¬¥¿¡¼¥²¥Ã¥È¤ÎJava¥×¥í¥»¥¹¤ËÁ÷¿®¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++³Æ¥ª¥×¥·¥ç¥ó¤Ï¸ß¤¤¤ËÇÓ¾Ū¤Ç¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++\-l
++¼Â¹ÔÃæ¤ÎJava¥×¥í¥»¥¹¤Î°ìÍ÷¤¬¥×¥í¥»¥¹ID¡¢¥á¥¤¥ó¡¦¥¯¥é¥¹¤ª¤è¤Ó¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤È¤È¤â¤Ë½ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-h
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++pid
++¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤ò¼õ¿®¤¹¤ë¥×¥í¥»¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¥×¥í¥»¥¹¤ÏJava¥×¥í¥»¥¹¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤Þ¤¿¤Ïjcmd(1)¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++main class
++¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤ò¼õ¿®¤¹¤ë¥×¥í¥»¥¹¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤Ç¤¹¡£¥×¥í¥»¥¹¤ò¾È¹ç¤¹¤ëºÝ¤Ë¤Ï¡¢»ØÄꤵ¤ì¤¿Ê¸»úÎ󤬥ᥤ¥ó¡¦¥¯¥é¥¹Ì¾¤ËÉôʬʸ»úÎó¤È¤·¤Æ´Þ¤Þ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥×¥í¥»¥¹¤¬°ìÃפ·¤¿¤È¤ß¤Ê¤µ¤ì¤Þ¤¹¡£¤¤¤¯¤Ä¤«¤Î¼Â¹ÔÃæ¤ÎJava¥×¥í¥»¥¹¤¬¤³¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤ò¶¦Í­¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤ì¤é¤¹¤Ù¤Æ¤Î¥×¥í¥»¥¹¤Ë¿ÇÃÇ¥³¥Þ¥ó¥É¡¦¥ê¥¯¥¨¥¹¥È¤¬Á÷¿®¤µ¤ì¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤Þ¤¿¤Ïjcmd(1)¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++command [arguments]
++\f2command\fP¤È¤¤¤¦Ì¾Á°¤Î¿ÇÃÇ¥³¥Þ¥ó¥É¤ò¥¿¡¼¥²¥Ã¥È¤ÎJava¥×¥í¥»¥¹¤ËÂФ·¤Æµ¯Æ°¤·¤Þ¤¹¡£»ØÄꤷ¤¿¥×¥í¥»¥¹¤Ç»ÈÍѤǤ­¤ë¿ÇÃÇ¥³¥Þ¥ó¥É¤Î¥ê¥¹¥È¤Ï¡¢¤³¤Î¥×¥í¥»¥¹¤ËÂФ·¤Æ\f3help\fP¥³¥Þ¥ó¥É¤ò¸Æ¤Ó½Ð¤»¤Ðɽ¼¨¤µ¤ì¤Þ¤¹¡£³Æ¿ÇÃÇ¥³¥Þ¥ó¥É¤Ë¤ÏÆȼ«¤Î\f2arguments\fP¤Î¥»¥Ã¥È¤¬¤¢¤ê¡¢¥³¥Þ¥ó¥É̾¤Î¸å¤Ë\f3help\fP¤ò»ØÄꤷ¤Æ¸Æ¤Ó½Ð¤»¤Ðɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++PerfCounter.print
++¥¿¡¼¥²¥Ã¥È¤ÎJava¥×¥í¥»¥¹¤Ç»ÈÍѲÄǽ¤Ê¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¡¦¥«¥¦¥ó¥¿¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹¡¦¥«¥¦¥ó¥¿¤Î¥ê¥¹¥È¤ÏJava¥×¥í¥»¥¹¤Ë¤è¤Ã¤Æ°Û¤Ê¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-f file
++\f2file\fP¤«¤é¥³¥Þ¥ó¥É¤òÆɤ߼è¤Ã¤Æ¡¢¥¿¡¼¥²¥Ã¥È¤ÎJava¥×¥í¥»¥¹¤Ç¸Æ¤Ó½Ð¤·¤Þ¤¹¡£\f2file\fP¤Ç¤Ï¡¢³Æ¥³¥Þ¥ó¥É¤ò1¹Ô¤Ëµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£#¤Ç»Ï¤Þ¤ë¹Ô¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¹Ô¤¬¸Æ¤Ó½Ð¤µ¤ì¤ë¤«¡¢\f3stop\fP¥­¡¼¥ï¡¼¥É¤ò´Þ¤à¹Ô¤¬Æɤ߼è¤é¤ì¤ë¤È¡¢\f2file\fP¤Î½èÍý¤¬½ªÎ»¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jps(1)
++.RE
++
++.LP
++.LP
++jps(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jconsole.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jconsole.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,138 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jconsole 1 "07 May 2011"
++.TH jconsole 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jconsole \- Java´Æ»ë¤ª¤è¤Ó´ÉÍý¥³¥ó¥½¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jconsole\fP [ \f2options\fP ] [ connection ... ]
++.fl
++
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++options
++¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++connection = pid | host:port | jmxUrl
++.RS 3
++.TP 2
++o
++\f2pid\fP¥í¡¼¥«¥ë¤ÎJava VM¤Î¥×¥í¥»¥¹ID¡£Java VM¤Ï¡¢jconsole¤ò¼Â¹Ô¤·¤Æ¤¤¤ë¥æ¡¼¥¶¡¼ID¤ÈƱ¤¸¥æ¡¼¥¶¡¼ID¤ò»ÈÍѤ·¤Æ¼Â¹Ô¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2JMX¤Î´Æ»ë¤ª¤è¤Ó´ÉÍý\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++\f2host\fP:\f2port\fP: Java VM¤ò¼Â¹Ô¤·¤Æ¤¤¤ë¥Û¥¹¥È¡¦¥·¥¹¥Æ¥à¤Î̾Á°¤È¡¢Java VM¤òµ¯Æ°¤·¤¿¤È¤­¤Ë¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£\f2com.sun.management.jmxremote.port\fP¤Ç»ØÄꤷ¤¿¥Ý¡¼¥ÈÈֹ档¾ÜºÙ¤Ï¡¢
++.na
++\f2JMX¤Î´Æ»ë¤ª¤è¤Ó´ÉÍý\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++\f2jmxUrl\fP:
++.na
++\f2JMXServiceURL\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/javax/management/remote/JMXServiceURL.html¤Ëµ­½Ò¤µ¤ì¤Æ¤¤¤ëÀܳÀè¤ÎJMX¥¨¡¼¥¸¥§¥ó¥È¤Î¥¢¥É¥ì¥¹¡£
++.RE
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jconsole\fP¥³¥Þ¥ó¥É¤Ï¡¢¥í¡¼¥«¥ë¡¦¥Þ¥·¥ó¤Þ¤¿¤Ï¥ê¥â¡¼¥È¡¦¥Þ¥·¥ó¾å¤ÎJava¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤È²¾ÁÛ¥Þ¥·¥ó¤Î´Æ»ë¤È´ÉÍý¤ò¹Ô¤¦¥°¥é¥Õ¥£¥«¥ë¡¦¥³¥ó¥½¡¼¥ë¡¦¥Ä¡¼¥ë¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++Windows¾å¤Ç¤Ï¡¢\f3jconsole\fP¤Ï¥³¥ó¥½¡¼¥ë¡¦¥¦¥£¥ó¥É¥¦¤È´ØÏ¢ÉÕ¤±¤é¤ì¤Æ¤¤¤Þ¤»¤ó¡£¤¿¤À¤·¡¢¤Ê¤ó¤é¤«¤ÎÍýͳ¤Ç\f3jconsole\fP¥³¥Þ¥ó¥É¤¬¼ºÇÔ¤¹¤ë¤È¡¢¥¨¥é¡¼¾ðÊó¤ò¼¨¤¹¥À¥¤¥¢¥í¥°¡¦¥Ü¥Ã¥¯¥¹¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-interval=n
++¹¹¿·´Ö³Ö¤ò\f2n\fPÉäËÀßÄꤷ¤Þ¤¹(¥Ç¥Õ¥©¥ë¥È¤Ï4ÉÃ)¡£
++.TP 3
++\-notile
++ºÇ½é¤Ë¥¦¥£¥ó¥É¥¦¤ò¥¿¥¤¥ê¥ó¥°¤·¤Þ¤»¤ó(Ê£¿ôÀܳ¤Î¾ì¹ç)¡£
++.TP 3
++\-pluginpath plugins
++JConsole¥×¥é¥°¥¤¥ó¤Î¸¡º÷Àè¤È¤Ê¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë¤Î¥ê¥¹¥È¤ò»ØÄꤷ¤Þ¤¹¡£\f2plugins\fP¥Ñ¥¹¤Ë¤Ï¡¢¼¡¤Î̾Á°¤Î¥×¥í¥Ð¥¤¥À¹½À®¥Õ¥¡¥¤¥ë¤ò´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.nf
++\f3
++.fl
++ META\-INF/services/com.sun.tools.jconsole.JConsolePlugin
++.fl
++\fP
++.fi
++¤³¤ì¤Ë¤Ï¡¢
++.na
++\f2com.sun.tools.jconsole.JConsolePlugin\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/jdk/api/jconsole/spec/com/sun/tools/jconsole/JConsolePlugin.html¥¯¥é¥¹¤ò¼ÂÁõ¤¹¤ë¥¯¥é¥¹¤Î´°Á´½¤¾þ¥¯¥é¥¹Ì¾¤ò»ØÄꤹ¤ë¹Ô¤¬¡¢¥×¥é¥°¥¤¥ó¤´¤È¤Ë1¹Ô¤º¤Ä´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-J<flag>
++jconsole¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë<flag>¤òÅϤ·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++.na
++\f2JConsole¤Î»ÈÍÑ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/jconsole.html
++.TP 2
++o
++.na
++\f2Java¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î´Æ»ë¤ª¤è¤Ó´ÉÍý\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/index.html
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jdb.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jdb.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,312 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jdb 1 "07 May 2011"
++.TH jdb 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jdb \- Java¥Ç¥Ð¥Ã¥¬
++.LP
++.LP
++\f3jdb\fP¤Ï¡¢Java¸À¸ì¥×¥í¥°¥é¥à¤Î¥Ð¥°¤ò¸«¤Ä¤±¤Æ½¤Àµ¤¹¤ë¤¿¤á¤Ë»ÈÍѤ¹¤ë¥Ä¡¼¥ë¤Ç¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jdb\fP [ options ] [ class ] [ arguments ]
++.fl
++.fi
++
++.LP
++.RS 3
++.TP 3
++options
++¼¡¤Ë¼¨¤¹¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó
++.TP 3
++class
++¥Ç¥Ð¥Ã¥°¤ò³«»Ï¤¹¤ë¥¯¥é¥¹¤Î̾Á°
++.TP 3
++arguments
++\f2class\fP¤Î\f2main()\fP¥á¥½¥Ã¥É¤ËÅϤ¹°ú¿ô
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++Java¥Ç¥Ð¥Ã¥¬\f3jdb\fP¤Ï¡¢Java¥¯¥é¥¹ÍѤδÊñ¤Ê¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Ç¥Ð¥Ã¥¬¤Ç¤¹¡£
++.na
++\f2Java Platform Debugger Architecture\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/index.html¤ò»ë³ÐŪ¤Ë¼Â¹Ô¤·¡¢¥í¡¼¥«¥ë¤Þ¤¿¤Ï¥ê¥â¡¼¥È¤ÎJava Virtual Machine¤Î¸¡ºº¤È¥Ç¥Ð¥Ã¥°¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.SS
++jdb¥»¥Ã¥·¥ç¥ó¤Î³«»Ï
++.LP
++.LP
++jdb¥»¥Ã¥·¥ç¥ó¤ò³«»Ï¤¹¤ë¤Ë¤ÏÍÍ¡¹¤ÊÊýË¡¤¬¤¢¤ê¤Þ¤¹¡£ºÇ¤âÉÑÈˤ˻ÈÍѤµ¤ì¤ë¤Î¤Ï¡¢¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤ò»ÈÍѤ·¤Æ¡¢\f3jdb\fP¤«¤é¿·¤·¤¤Java²¾ÁÛ¥Þ¥·¥ó(VM)¤òµ¯Æ°¤¹¤ëÊýË¡¤Ç¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¡¢\f3java\fP¤Î¤«¤ï¤ê¤Ë\f3jdb\fP¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤¬MyClass¤Î¾ì¹ç¤Ï¡¢JDB´Ä¶­¤Ç¥Ç¥Ð¥Ã¥°¤¹¤ë¤È¤­¤Ë¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ % jdb MyClass
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÊýË¡¤Çµ¯Æ°¤¹¤ë¤È¡¢\f3jdb\fP¤Ï¡¢»ØÄꤵ¤ì¤¿¥Ñ¥é¥á¡¼¥¿¤ò»ÈÍѤ·¤Æ2¤ÄÌܤÎJava VM¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£¼¡¤Ë¡¢»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤ò¥í¡¼¥É¤·¤Æ¡¢¥¯¥é¥¹¤ÎºÇ½é¤ÎÌ¿Îá¤ò¼Â¹Ô¤¹¤ëÁ°¤ËVM¤òÄä»ß¤µ¤»¤Þ¤¹¡£
++.LP
++.LP
++\f3jdb\fP¤Î¤â¤¦1¤Ä¤Î»ÈÍÑÊýË¡¤Ï¡¢¤¹¤Ç¤Ë¼Â¹ÔÃæ¤ÎJava VM¤Ëjdb¤òÀܳ¤¹¤ë¤³¤È¤Ç¤¹¡£jdb¤¬Àܳ¤¹¤ëVM¤ò¡¢¤½¤Î¼Â¹ÔÃæ¤Ëµ¯Æ°¤¹¤ë¤¿¤á¤Î¹½Ê¸¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥¤¥ó¥×¥í¥»¥¹¡¦¥Ç¥Ð¥Ã¥°Íѥ饤¥Ö¥é¥ê¤ò¥í¡¼¥É¤·¡¢Àܳ¤Î¼ïÎà¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\-agentlib:jdwp=transport=dt_socket,server=y,suspend=n
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢MyClass¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤·¤Æ¡¢\f3jdb\fP¤¬¤¢¤È¤Ç¤½¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ËÀܳ¤Ç¤­¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ % java \-agentlib:jdwp=transport=dt_socket,address=8000,server=y,suspend=n MyClass
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¡¢\f3jdb\fP¤òVM¤ËÀܳ¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ % jdb \-attach 8000
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¾ì¹ç¡¢\f3jdb\fP¤Ï¿·¤·¤¤VM¤òµ¯Æ°¤¹¤ë¤«¤ï¤ê¤Ë´û¸¤ÎVM¤ËÀܳ¤µ¤ì¤ë¤¿¤á¡¢\f3jdb\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤Ï¡ÖMyClass¡×¤Ï»ØÄꤷ¤Þ¤»¤ó¡£
++.LP
++.LP
++¥Ç¥Ð¥Ã¥¬¤òVM¤ËÀܳ¤¹¤ë¤Ë¤Ï¾¤Ë¤âÍÍ¡¹¤ÊÊýË¡¤¬¤¢¤ê¡¢¤¹¤Ù¤Æ\f3jdb\fP¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Àܳ¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤Ï¡¢Java Platform Debugger Architecture¤Î
++.na
++\f2¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£\f3jdb\fP¤Ç»ÈÍѤ¹¤ë¤¿¤á¤ËJ2SE 1.4.2°ÊÁ°¤ÎVM¤òµ¯Æ°¤¹¤ëÊýË¡¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f21.4.2¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://docs.oracle.com/javase/1.4.2/docs/guide/jpda/conninv.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++´ðËÜjdb¥³¥Þ¥ó¥É
++.LP
++.LP
++´ðËÜŪ¤Ê\f3jdb\fP¥³¥Þ¥ó¥É¤Î°ìÍ÷¤ò¼¨¤·¤Þ¤¹¡£Java¥Ç¥Ð¥Ã¥¬¤¬¥µ¥Ý¡¼¥È¤¹¤ë¥³¥Þ¥ó¥É¤Ï¤³¤ì°Ê³°¤Ë¤â¤¢¤ê¡¢¤½¤ì¤é¤Ï\f3jdb\fP¤Î\f2help\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æɽ¼¨¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++help¤Þ¤¿¤Ï?
++ºÇ¤â½ÅÍפÊ\f3jdb\fP¥³¥Þ¥ó¥É\f2help\fP¤Ï¡¢Ç§¼±¤µ¤ì¤¿¥³¥Þ¥ó¥É¤Î¥ê¥¹¥È¤Ë´Ê·é¤ÊÀâÌÀ¤òÉÕ¤±¤Æɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++run
++\f3jdb\fP¤òµ¯Æ°¤·¤ÆɬÍפʥ֥졼¥¯¥Ý¥¤¥ó¥È¤òÀßÄꤷ¤¿¤¢¤È¤Ë¡¢¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¡¢¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¼Â¹Ô¤ò³«»Ï¤Ç¤­¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢´û¸¤ÎVM¤ËÀܳ¤·¤Æ¤¤¤ë¾ì¹ç¤È¤Ï°Û¤Ê¤ê¡¢¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤¬\f3jdb\fP¤«¤éµ¯Æ°¤·¤¿¤È¤­¤Ë¤Î¤ß»ÈÍѤǤ­¤Þ¤¹¡£
++.TP 3
++cont
++¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¡¢Îã³°¡¢¤Þ¤¿¤Ï¥¹¥Æ¥Ã¥×¼Â¹Ô¤Î¸å¤Ç¡¢¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¼Â¹Ô¤ò·Ñ³¤·¤Þ¤¹¡£
++.TP 3
++print
++Java¥ª¥Ö¥¸¥§¥¯¥È¤ª¤è¤Ó¥×¥ê¥ß¥Æ¥£¥ÖÃͤòɽ¼¨¤·¤Þ¤¹¡£¥×¥ê¥ß¥Æ¥£¥Ö·¿¤ÎÊÑ¿ô¤Þ¤¿¤Ï¥Õ¥£¡¼¥ë¥É¤Î¾ì¹ç¤Ë¤Ï¡¢¼ÂºÝ¤ÎÃͤ¬½ÐÎϤµ¤ì¤Þ¤¹¡£¥ª¥Ö¥¸¥§¥¯¥È¤Î¾ì¹ç¤Ë¤Ï¡¢Ã»¤¤ÀâÌÀ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¥ª¥Ö¥¸¥§¥¯¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢°Ê¹ß¤Î\f2dump\fP¥³¥Þ¥ó¥É¤ÎÀâÌÀ¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f2Ãí°Õ: ¥í¡¼¥«¥ëÊÑ¿ô¤òɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¤½¤ÎÊÑ¿ô¤ò´Þ¤à¥¯¥é¥¹¤¬\fP\f2javac(1)\fP\f2 \fP\f2\-g\fP¥ª¥×¥·¥ç¥ó¤Ç¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++\f2print\fP¤Ç¤Ï¡¢¥á¥½¥Ã¥É¤Î¸Æ½Ð¤·¤ò´Þ¤à¿¿ô¤Î´Êñ¤ÊJava¼°¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2print MyClass.myStaticField\fP
++.TP 2
++o
++\f2print myObj.myInstanceField\fP
++.TP 2
++o
++\f2print i+j+k\fP \f2(i¡¢j¡¢¤ª¤è¤Ók¤Ï¥×¥ê¥ß¥Æ¥£¥Ö¤Ç¤¢¤ê¡¢¥Õ¥£¡¼¥ë¥É¤Þ¤¿¤Ï¥í¡¼¥«¥ëÊÑ¿ô¤Î¤¤¤º¤ì¤«)\fP
++.TP 2
++o
++\f2print myObj.myMethod()\fP \f2(myMethod¤¬null°Ê³°¤òÊÖ¤¹¾ì¹ç)\fP
++.TP 2
++o
++\f2print new java.lang.String("Hello").length()\fP
++.RE
++.TP 3
++dump
++¥×¥ê¥ß¥Æ¥£¥ÖÃͤξì¹ç¤Ë¤Ï¡¢¤³¤Î¥³¥Þ¥ó¥É¤Ï\f2print\fP¤ÈƱ¤¸¤Ç¤¹¡£¥ª¥Ö¥¸¥§¥¯¥È¤Î¾ì¹ç¤Ë¤Ï¡¢¥ª¥Ö¥¸¥§¥¯¥ÈÆâ¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤ë³Æ¥Õ¥£¡¼¥ë¥É¤Î¸½ºß¤ÎÃͤ¬½ÐÎϤµ¤ì¤Þ¤¹¡£static¥Õ¥£¡¼¥ë¥É¤Èinstance¥Õ¥£¡¼¥ë¥É¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.br
++\f2dump\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢\f2print\fP¥³¥Þ¥ó¥É¤ÈƱ¤¸¼°¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£
++.TP 3
++threads
++¸½ºß¼Â¹ÔÃæ¤Î¥¹¥ì¥Ã¥É¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£¥¹¥ì¥Ã¥É¤´¤È¤Ë¡¢Ì¾Á°¤È¸½ºß¤Î¾õÂÖ¡¢¤ª¤è¤Ó¾¤Î¥³¥Þ¥ó¥É¤Ë»ÈÍѤǤ­¤ë¥¤¥ó¥Ç¥Ã¥¯¥¹¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++4. (java.lang.Thread)0x1 main running
++.fl
++\fP
++.fi
++¤³¤ÎÎã¤Ç¤Ï¡¢¥¹¥ì¥Ã¥É¡¦¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ï4¤Ç¤¢¤ê¡¢¥¹¥ì¥Ã¥É¤Ïjava.lang.Thread¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤¹¡£¥¹¥ì¥Ã¥É¤Î̾Á°¤Ï¡Ömain¡×¤Ç¤¢¤ê¡¢¸½ºß¼Â¹ÔÃæ¤Ç¤¹¡£
++.TP 3
++thread
++¸½ºß¤Î¥¹¥ì¥Ã¥É¤Ë¤¹¤ë¥¹¥ì¥Ã¥É¤òÁªÂò¤·¤Þ¤¹¡£Â¿¤¯¤Î\f3jdb\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥¹¥ì¥Ã¥É¤ÎÀßÄê¤Ë´ð¤Å¤¤¤Æ¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¥¹¥ì¥Ã¥É¤Ï¡¢\f2threads\fP¥³¥Þ¥ó¥É¤ÇÀâÌÀ¤·¤¿¥¹¥ì¥Ã¥É¡¦¥¤¥ó¥Ç¥Ã¥¯¥¹¤È¤È¤â¤Ë»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++where
++°ú¿ô¤ò»ØÄꤷ¤Ê¤¤¤Ç\f2where\fP¤ò¼Â¹Ô¤¹¤ë¤È¡¢¸½ºß¤Î¥¹¥ì¥Ã¥É¤Î¥¹¥¿¥Ã¥¯¤¬¥À¥ó¥×¤µ¤ì¤Þ¤¹¡£\f2where all\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥¹¥ì¥Ã¥É¡¦¥°¥ë¡¼¥×¤Ë¤¢¤ë¥¹¥ì¥Ã¥É¤Î¥¹¥¿¥Ã¥¯¤ò¤¹¤Ù¤Æ¥À¥ó¥×¤·¤Þ¤¹¡£\f2where\fP \f2threadindex\fP¤Ï¡¢»ØÄꤵ¤ì¤¿¥¹¥ì¥Ã¥É¤Î¥¹¥¿¥Ã¥¯¤ò¥À¥ó¥×¤·¤Þ¤¹¡£
++.br
++.br
++¸½ºß¤Î¥¹¥ì¥Ã¥É¤¬(¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤«\f2suspend\fP¥³¥Þ¥ó¥É¤Ë¤è¤Ã¤Æ)ÃæÃǤ·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥í¡¼¥«¥ëÊÑ¿ô¤È¥Õ¥£¡¼¥ë¥É¤Ï\f2print\fP¥³¥Þ¥ó¥É¤È\f2dump\fP¥³¥Þ¥ó¥É¤Çɽ¼¨¤Ç¤­¤Þ¤¹¡£\f2up\fP¥³¥Þ¥ó¥É¤È\f2down\fP¥³¥Þ¥ó¥É¤Ç¡¢¤É¤Î¥¹¥¿¥Ã¥¯¡¦¥Õ¥ì¡¼¥à¤ò¥«¥ì¥ó¥È¤Ë¤¹¤ë¤«¤òÁª¤Ö¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È
++.LP
++.LP
++¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤Ï¡¢¹ÔÈÖ¹æ¤Þ¤¿¤Ï¥á¥½¥Ã¥É¤ÎºÇ½é¤ÎÌ¿Îá¤Ç\f3jdb\fP¤ËÀßÄê¤Ç¤­¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f2stop at MyClass:22\fP \f2(MyClass¤¬´Þ¤Þ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î22¹ÔÌܤκǽé¤ÎÌ¿Îá¤Ë¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤òÀßÄê)\fP
++.TP 2
++o
++\f2stop in java.lang.String.length\fP \f2(\fP\f2java.lang.String.length\fP¥á¥½¥Ã¥É¤ÎºÇ½é¤Ë¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤òÀßÄê)
++.TP 2
++o
++\f2stop in MyClass.<init>\fP \f2(<init>¤ÏMyClass¥³¥ó¥¹¥È¥é¥¯¥¿¤ò¼±ÊÌ)\fP
++.TP 2
++o
++\f2stop in MyClass.<clinit>\fP \f2(<clinit>¤ÏMyClass¤ÎÀÅŪ½é´ü²½¥³¡¼¥É¤ò¼±ÊÌ)\fP
++.RE
++
++.LP
++.LP
++¥á¥½¥Ã¥É¤¬¥ª¡¼¥Ð¡¼¥í¡¼¥É¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ë¤Ï¡¢¥á¥½¥Ã¥É¤Î°ú¿ô¤Î·¿¤â»ØÄꤷ¤Æ¡¢¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤ËÂФ·¤ÆŬÀڤʥ᥽¥Ã¥É¤¬ÁªÂò¤µ¤ì¤ë¤è¤¦¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¡Ö\f2MyClass.myMethod(int,java.lang.String)\fP¡×¤Þ¤¿¤Ï¡Ö\f2MyClass.myMethod()\fP¡×¤È»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f2clear\fP¥³¥Þ¥ó¥É¤Ï¡¢¡Ö\f2clear\ MyClass:45\fP¡×¤Î¤è¤¦¤Ê¹½Ê¸¤ò»ÈÍѤ·¤Æ¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤òºï½ü¤·¤Þ¤¹¡£\f2clear\fP¤ò»ÈÍѤ¹¤ë¤«¡¢°ú¿ô¤ò»ØÄꤷ¤Ê¤¤¤Ç¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¸½ºßÀßÄꤵ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥Ö¥ì¡¼¥¯¥Ý¥¤¥ó¥È¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£\f2cont\fP¥³¥Þ¥ó¥É¤Ï¼Â¹Ô¤ò·Ñ³¤·¤Þ¤¹¡£
++.LP
++.SS
++¥¹¥Æ¥Ã¥×¼Â¹Ô
++.LP
++.LP
++\f2step\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥¹¥¿¥Ã¥¯¡¦¥Õ¥ì¡¼¥à¤Þ¤¿¤Ï¸Æ¤Ó½Ð¤µ¤ì¤¿¥á¥½¥Ã¥ÉÆâ¤Ç¡¢¼¡¤Î¹Ô¤ò¼Â¹Ô¤·¤Þ¤¹¡£\f2next\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥¹¥¿¥Ã¥¯¡¦¥Õ¥ì¡¼¥à¤Î¼¡¤Î¹Ô¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.SS
++Îã³°
++.LP
++.LP
++¥¹¥í¡¼¤·¤Æ¤¤¤ë¥¹¥ì¥Ã¥É¤Î¸Æ½Ð¤·¥¹¥¿¥Ã¥¯¾å¤Î¤É¤³¤Ë¤âcatchʸ¤¬¤Ê¤¤¾ì¹ç¤ËÎã³°¤¬È¯À¸¤¹¤ë¤È¡¢VM¤ÏÄ̾Îã³°¥È¥ì¡¼¥¹¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£¤¿¤À¤·¡¢\f3jdb\fP´Ä¶­¤Ç¼Â¹Ô¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢°ãÈ¿¤Î¥¹¥í¡¼»þ¤Ë\f3jdb\fP¤ËÀ©¸æ¤¬Ìá¤ê¤Þ¤¹¡£¼¡¤Ë¡¢\f3jdb\fP¤ò»ÈÍѤ·¤ÆÎã³°¤Î¸¶°ø¤ò¿ÇÃǤ·¤Þ¤¹¡£
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢¡Ö\f2catch java.io.FileNotFoundException\fP¡×¤Þ¤¿¤Ï¡Ö\f2catch mypackage.BigTroubleException\fP¡×¤Î¤è¤¦¤Ë\f2catch\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¥Ç¥Ð¥Ã¥°¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢Â¾¤ÎÎã³°¤¬¥¹¥í¡¼¤µ¤ì¤¿¤È¤­¤ËÄä»ß¤·¤Þ¤¹¡£Îã³°¤¬ÆÃÄê¤Î¥¯¥é¥¹(¤Þ¤¿¤Ï¥µ¥Ö¥¯¥é¥¹)¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Î¾ì¹ç¤Ï¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÏÎã³°¤¬¥¹¥í¡¼¤µ¤ì¤¿¾ì½ê¤ÇÄä»ß¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2ignore\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤È¡¢°ÊÁ°¤Î\f2catch\fP¥³¥Þ¥ó¥É¤Î¸ú²Ì¤¬Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2Ãí°Õ: \fP\f2ignore\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¥Ç¥Ð¥Ã¥°¤µ¤ì¤ëVM¤ÏÎã³°¤ò̵»ë¤»¤º¡¢¥Ç¥Ð¥Ã¥¬¤Î¤ß¤¬Îã³°¤ò̵»ë¤·¤Þ¤¹¡£
++.LP
++.SH "¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÇJava¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë¤Î¤«¤ï¤ê¤Ë\f3jdb\fP¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢\f3jdb\fP¤Ï¡¢\f2\-D\fP¡¢\f2\-classpath\fP¡¢\f2\-X<option>\fP¤Ê¤É¡¢java¥³¥Þ¥ó¥É¤ÈƱ¤¸¿ô¤Î¥ª¥×¥·¥ç¥ó¤ò¼õ¤±Æþ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3jdb\fP¤Ï¡¢¤½¤Î¾¤Ë¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò¼õ¤±Æþ¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-sourcepath <dir1:dir2:...>
++»ØÄꤵ¤ì¤¿¥Ñ¥¹¤ò»ÈÍѤ·¤Æ¡¢¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò¸¡º÷¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥Ñ¥¹¤Î¡Ö.¡×¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-attach <address>
++¥Ç¥Õ¥©¥ë¥È¤ÎÀܳµ¡¹½¤ò»ÈÍѤ·¤Æ¡¢¤¹¤Ç¤Ë¼Â¹ÔÃæ¤ÎVM¤Ë¥Ç¥Ð¥Ã¥¬¤òÀܳ¤·¤Þ¤¹¡£
++.TP 3
++\-listen <address>
++¼Â¹ÔÃæ¤ÎVM¤¬É¸½à¤Î¥³¥Í¥¯¥¿¤ò»ÈÍѤ·¤Æ»ØÄꤵ¤ì¤¿¥¢¥É¥ì¥¹¤ËÀܳ¤¹¤ë¤Î¤òÂÔµ¡¤·¤Þ¤¹¡£
++.TP 3
++\-listenany
++¼Â¹ÔÃæ¤ÎVM¤¬É¸½à¤Î¥³¥Í¥¯¥¿¤ò»ÈÍѤ·¤ÆÍøÍѲÄǽ¤ÊǤ°Õ¤Î¥¢¥É¥ì¥¹¤ËÀܳ¤¹¤ë¤Î¤òÂÔµ¡¤·¤Þ¤¹¡£
++.TP 3
++\-launch
++¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òjdb¤Îµ¯Æ°¸å¤¿¤À¤Á¤Ëµ¯Æ°¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¡¢\f2run\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ëɬÍפ¬¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£¥Ç¥Ð¥Ã¥°¤¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢µ¯Æ°¸å¡¢½é´ü¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥¯¥é¥¹¤¬¥í¡¼¥É¤µ¤ì¤ëľÁ°¤ËÄä»ß¤·¤Þ¤¹¡£¤½¤Î»þÅÀ¤Ç¡¢É¬Íפʥ֥졼¥¯¥Ý¥¤¥ó¥È¤òÀßÄꤷ¡¢\f2cont\fP¤ò»ÈÍѤ·¤Æ¼Â¹Ô¤ò·Ñ³¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-listconnectors
++¤³¤ÎVM¤ÇÍøÍѤǤ­¤ë¥³¥Í¥¯¥¿¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-connect <connector\-name>:<name1>=<value1>,...
++°ìÍ÷ɽ¼¨¤µ¤ì¤¿°ú¿ô¤ÎÃͤȻØÄê¤Î¥³¥Í¥¯¥¿¤ò»ÈÍѤ·¤Æ¥¿¡¼¥²¥Ã¥ÈVM¤ËÀܳ¤·¤Þ¤¹¡£
++.TP 3
++\-dbgtrace [flags]
++jdb¤Î¥Ç¥Ð¥Ã¥°¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-tclient
++Java HotSpot(tm) VM(¥¯¥é¥¤¥¢¥ó¥È)Æâ¤Ç¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.TP 3
++\-tserver
++Java HotSpot(tm) VM(¥µ¡¼¥Ð¡¼)Æâ¤Ç¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.TP 3
++\-Joption
++jdb¤Î¼Â¹Ô¤Ë»ÈÍѤµ¤ì¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£(¥¢¥×¥ê¥±¡¼¥·¥ç¥óJava²¾ÁÛ¥Þ¥·¥ó¤ËÂФ¹¤ë¥ª¥×¥·¥ç¥ó¤Ï¡¢\f3run\fP¥³¥Þ¥ó¥É¤ËÅϤµ¤ì¤ë)¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¥Ç¥Ð¥Ã¥¬¤È¥Ç¥Ð¥Ã¥°¤ò¹Ô¤¦VM¤òÀܳ¤¹¤ë¤¿¤á¤ÎÂåÂص¡¹½¤ËÂФ·¤Æ¡¢¤½¤Î¾¤Î¥ª¥×¥·¥ç¥ó¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤½¤Î¾¤ÎÀܳ¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤Ï¡¢Java Platform Debugger Architecture¤Î
++.na
++\f2¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++¥Ç¥Ð¥Ã¥°ÂÐ¾Ý¤Î¥×¥í¥»¥¹¤ËžÁ÷¤µ¤ì¤ë¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-v \-verbose[:class|gc|jni]
++¾éĹ¥â¡¼¥É¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-D<name>=<value>
++¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-classpath <directories separated by ":">
++¥¯¥é¥¹¤ò¸¡º÷¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-X<option>
++Èóɸ½à¥¿¡¼¥²¥Ã¥ÈVM¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++javac(1)¡¢java(1)¡¢javah(1)¡¢javap(1)¡¢javadoc(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jhat.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jhat.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,135 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jhat 1 "07 May 2011"
++.TH jhat 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jhat \- Java¥Ò¡¼¥×²òÀϥġ¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jhat\fP [ \f2options\fP ] <heap\-dump\-file>
++.fl
++
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++options
++¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++heap\-dump\-file
++¥Ö¥é¥¦¥ºÂоݤȤʤëJava¥Ð¥¤¥Ê¥ê¡¦¥Ò¡¼¥×¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¡£Ê£¿ô¤Î¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò´Þ¤à¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤Î¾ì¹ç¡¢¡Öfoo.hprof#3¡×¤Î¤è¤¦¤Ë¥Õ¥¡¥¤¥ë̾¤Î¸å¤Ë¡Ö#<number>¡×¤òÉղ乤뤳¤È¤Ç¡¢¥Õ¥¡¥¤¥ëÆâ¤ÎÆÃÄê¤Î¥À¥ó¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jhat\fP¥³¥Þ¥ó¥É¤Ï¡¢java¥Ò¡¼¥×¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤ò²òÀϤ·¡¢Web¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤·¤Þ¤¹¡£jhat¤ò»ÈÍѤ¹¤ì¤Ð¡¢»È¤¤´·¤ì¤¿Web¥Ö¥é¥¦¥¶¤ò»ÈÍѤ·¤Æ¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò¥Ö¥é¥¦¥º¤Ç¤­¤Þ¤¹¡£jhat¤Ï¡¢¡Ö´ûÃΤΥ¯¥é¥¹¡ÖFoo¡×¤Î¤¹¤Ù¤Æ¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤òɽ¼¨¤¹¤ë¡×¤È¤¤¤Ã¤¿¡¢»öÁ°¤ËÀ߷פµ¤ì¤¿¥¯¥¨¥ê¡¼¤Î¾¡¢¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò¥¯¥¨¥ê¡¼¤¹¤ëSQL¤Ë»÷¤¿¥¯¥¨¥ê¡¼¸À¸ì¤Ç¤¢¤ë\f3OQL\fP(\f3O\fPbject\f3Q\fPuery\f3L\fPanguage)¤â¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£OQL¤Î¥Ø¥ë¥×¤Ë¤Ï¡¢jhat¤Ë¤è¤Ã¤Æɽ¼¨¤µ¤ì¤ëOQL¥Ø¥ë¥×¡¦¥Ú¡¼¥¸¤«¤é¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢OQL¤Î¥Ø¥ë¥×¤Ïhttp://localhost:7000/oqlhelp/¤ÇÍøÍѲÄǽ¤Ç¤¹¡£
++.LP
++.LP
++Java¤Î¥Ò¡¼¥×¡¦¥À¥ó¥×¤òÀ¸À®¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤¤¤¯¤Ä¤«¤ÎÊýË¡¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++jmap(1)¤Î\-dump¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¼Â¹Ô»þ¤Ë¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò¼èÆÀ¤¹¤ëÊýË¡
++.TP 2
++o
++jconsole(1)¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ
++.na
++\f2HotSpotDiagnosticMXBean\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/jre/api/management/extension/com/sun/management/HotSpotDiagnosticMXBean.html·Ðͳ¤Ç¼Â¹Ô»þ¤Ë¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò¼èÆÀ¤¹¤ëÊýË¡
++.TP 2
++o
++\-XX:+HeapDumpOnOutOfMemoryError VM¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æ¡¢OutOfMemoryError¤Î¥¹¥í¡¼»þ¤Ë¥Ò¡¼¥×¡¦¥À¥ó¥×¤òÀ¸À®¤¹¤ëÊýË¡
++.TP 2
++o
++hprof¤ò»ÈÍѤ¹¤ëÊýË¡
++.RE
++
++.LP
++.LP
++\f3Ãí°Õ:\fP ¤³¤Î¥Ä¡¼¥ë¤Ï\f3»î¸³Åª¤Ê¤â¤Î\fP¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍÑ\f3¤Ç¤­¤Ê¤¯¤Ê¤ë\fP²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-stack false/true
++¥ª¥Ö¥¸¥§¥¯¥È³äÅö¸Æ½Ð¤·¥¹¥¿¥Ã¥¯¤ÎÄÉÀפò̵¸ú¤Ë¤·¤Þ¤¹¡£¥Ò¡¼¥×¡¦¥À¥ó¥×Æâ¤Ç³äÅö¥µ¥¤¥È¾ðÊ󤬻ÈÍѤǤ­¤Ê¤¤¾ì¹ç¡¢¤³¤Î¥Õ¥é¥°¤òfalse¤ËÀßÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ïtrue¤Ç¤¹¡£
++.TP 3
++\-refs false/true
++¥ª¥Ö¥¸¥§¥¯¥È¤Ø¤Î»²¾È¤ÎÄÉÀפò̵¸ú¤Ë¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ïtrue¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥Ò¡¼¥×Æâ¤Î¤¹¤Ù¤Æ¤Î¥ª¥Ö¥¸¥§¥¯¥È¤Ë¤Ä¤¤¤Æ¡¢¥Ð¥Ã¥¯¥Ý¥¤¥ó¥¿(»ØÄꤵ¤ì¤¿¥ª¥Ö¥¸¥§¥¯¥È¤ò¥Ý¥¤¥ó¥È¤·¤Æ¤¤¤ë¥ª¥Ö¥¸¥§¥¯¥È¡£»²¾È¼Ô¤Þ¤¿¤Ï¼õ¿®»²¾È¤È¤â¸Æ¤Ð¤ì¤ë)¤¬·×»»¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-port port\-number
++jhat¤ÎHTTP¥µ¡¼¥Ð¡¼¤Î¥Ý¡¼¥È¤òÀßÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï7000¤Ç¤¹¡£
++.TP 3
++\-exclude exclude\-file
++¡ÖÅþã²Äǽ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¡×¤Î¥¯¥¨¥ê¡¼¤«¤é½ü³°¤¹¤ëɬÍפ¬¤¢¤ë¥Ç¡¼¥¿¡¦¥á¥ó¥Ð¡¼¤Î°ìÍ÷¤ò´Þ¤à¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Ë\f2java.lang.String.value\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢ÆÃÄê¤Î¥ª¥Ö¥¸¥§¥¯¥È¡Öo¡×¤«¤éÅþã²Äǽ¤Ê¥ª¥Ö¥¸¥§¥¯¥È¤Î¥ê¥¹¥È¤ò·×»»¤¹¤ëºÝ¤Ë¡¢\f2java.lang.String.value\fP¥Õ¥£¡¼¥ë¥É¤Ë´ØÏ¢¤¹¤ë»²¾È¥Ñ¥¹¤¬¹Í褵¤ì¤Ê¤¯¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-baseline baseline\-dump\-file
++¥Ù¡¼¥¹¥é¥¤¥ó¤È¤Ê¤ë¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò»ØÄꤷ¤Þ¤¹¡£Î¾Êý¤Î¥Ò¡¼¥×¡¦¥À¥ó¥×Æâ¤ÇƱ¤¸¥ª¥Ö¥¸¥§¥¯¥ÈID¤ò»ý¤Ä¥ª¥Ö¥¸¥§¥¯¥È¤Ï¡Ö¿·µ¬¤Ç¤Ï¤Ê¤¤¡×¤È¤·¤Æ¥Þ¡¼¥¯¤µ¤ì¤Þ¤¹¡£¤½¤Î¾¤Î¥ª¥Ö¥¸¥§¥¯¥È¤Ï¡Ö¿·µ¬¡×¤È¤·¤Æ¥Þ¡¼¥¯¤µ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢°Û¤Ê¤ë2¤Ä¤Î¥Ò¡¼¥×¡¦¥À¥ó¥×¤òÈæ³Ó¤¹¤ëºÝ¤ËÌòΩ¤Á¤Þ¤¹¡£
++.TP 3
++\-debug int
++¤³¤Î¥Ä¡¼¥ë¤Î¥Ç¥Ð¥Ã¥°¡¦¥ì¥Ù¥ë¤òÀßÄꤷ¤Þ¤¹¡£0¤Ï¡Ö¥Ç¥Ð¥Ã¥°½ÐÎϤʤ·¡×¤ò°ÕÌ£¤·¤Þ¤¹¡£¤è¤êÂ礭¤ÊÃͤòÀßÄꤹ¤ë¤È¡¢¤è¤ê¾éĹ¤Ê¥â¡¼¥É¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥óÈÖ¹æ¤òÊó¹ð¤·¤¿¤¢¤È¡¢½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-h
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-J<flag>
++jhat¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë<flag>¤òÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢512M¥Ð¥¤¥È¤ÎºÇÂç¥Ò¡¼¥×¡¦¥µ¥¤¥º¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢\-J\-Xmx512m¤È¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jmap(1)
++.TP 2
++o
++jconsole(1)
++.TP 2
++o
++hprof \- ¥Ò¡¼¥×¤ª¤è¤ÓCPU¥×¥í¥Õ¥¡¥¤¥ê¥ó¥°¡¦¥Ä¡¼¥ë
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jinfo.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jinfo.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,148 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jinfo 1 "07 May 2011"
++.TH jinfo 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jinfo \- ¹½À®¾ðÊó
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jinfo\fP [ option ] pid
++.fl
++\f3jinfo\fP [ option ] executable core
++.fl
++\f3jinfo\fP [ option ] [server\-id@]remote\-hostname\-or\-IP
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++option
++³Æ¥ª¥×¥·¥ç¥ó¤Ï¸ß¤¤¤ËÇÓ¾Ū¤Ç¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++pid
++½ÐÎϤ¹¤ë¹½À®¾ðÊó¤Î¥×¥í¥»¥¹ID¡£¥×¥í¥»¥¹¤ÏJava¥×¥í¥»¥¹¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤ò»ÈÍѤ·¤Þ¤¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++executable
++¥³¥¢¡¦¥À¥ó¥×¤ÎºîÀ®¸µ¤ÎJava¼Â¹Ô²Äǽ¥Õ¥¡¥¤¥ë¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++core
++½ÐÎϤ¹¤ë¹½À®¾ðÊó¤Î¥³¥¢¡¦¥Õ¥¡¥¤¥ë¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++remote\-hostname\-or\-IP
++¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼(jsadebugd(1)¤ò»²¾È)¤Î¥Û¥¹¥È̾¤Þ¤¿¤ÏIP¥¢¥É¥ì¥¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++server\-id
++Ê£¿ô¤Î¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤¬Æ±°ì¤Î¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Ç¼Â¹Ô¤·¤Æ¤¤¤ë¾ì¹ç¤Î¡¢¥ª¥×¥·¥ç¥ó¸ÇÍ­¤ÎID¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jinfo\fP¤Ï¡¢»ØÄꤵ¤ì¤¿Java¥×¥í¥»¥¹¤ä¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤ÎJava¹½À®¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£¹½À®¾ðÊó¤Ë¤Ï¡¢Java¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤ÈJava²¾ÁÛ¥Þ¥·¥ó¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£»ØÄꤵ¤ì¤¿¥×¥í¥»¥¹¤¬64¥Ó¥Ã¥ÈVM¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2\-J\-d64\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.br
++jinfo \-J\-d64 \-sysprops pid
++.LP
++.LP
++\f3Ãí°Õ \- ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£dbgeng.dll¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤Windows¥·¥¹¥Æ¥à¤Ç¤Ï¡¢¡ÖDebugging Tools For Windows¡×¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ê¤¤¤È¤³¤ì¤é¤Î¥Ä¡¼¥ë¤¬Àµ¾ï¤ËÆ°ºî¤·¤Þ¤»¤ó¡£¤Þ¤¿¡¢\fP\f4PATH\fP\f3´Ä¶­ÊÑ¿ô¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥×¥í¥»¥¹¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤ë\fP\f4jvm.dll\fP\f3¤Î¾ì½ê¡¢¤Þ¤¿¤Ï¥¯¥é¥Ã¥·¥å¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤¿¾ì½ê¤¬´Þ¤Þ¤ì¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£\fP
++.LP
++.LP
++\f3¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£\fP\f4set PATH=<jdk>\\jre\\bin\\client;%PATH%\fP
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++<¥ª¥×¥·¥ç¥ó¤Ê¤·>
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤ò¡¢¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£Ì¾¤ÈÃͤΥڥ¢¤È¤È¤â¤Ë½ÐÎϤ·¤Þ¤¹¡£
++.br
++.TP 3
++\-flag name
++»ØÄꤵ¤ì¤¿¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤Î̾Á°¤ÈÃͤò½ÐÎϤ·¤Þ¤¹¡£
++.br
++.TP 3
++\-flag [+|\-]name
++»ØÄꤵ¤ì¤¿¥Ö¡¼¥ë·¿¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤òÍ­¸ú¤Þ¤¿¤Ï̵¸ú¤Ë¤·¤Þ¤¹¡£
++.br
++.TP 3
++\-flag name=value
++»ØÄꤵ¤ì¤¿¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤ò»ØÄꤵ¤ì¤¿ÃͤËÀßÄꤷ¤Þ¤¹¡£
++.br
++.TP 3
++\-flags
++JVM¤ËÅϤµ¤ì¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Õ¥é¥°¤ò¥Ú¥¢¤Ç½ÐÎϤ·¤Þ¤¹¡£
++.br
++.TP 3
++\-sysprops
++Java¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤ò̾Á°¤ÈÃͤΥڥ¢¤È¤·¤Æ½ÐÎϤ·¤Þ¤¹¡£
++.br
++.TP 3
++\-h
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jps(1)
++.TP 2
++o
++jsadebugd(1)
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jmap.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jmap.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,161 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jmap 1 "07 May 2011"
++.TH jmap 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jmap \- ¥á¥â¥ê¡¼¡¦¥Þ¥Ã¥×
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jmap\fP [ option ] pid
++.fl
++\f3jmap\fP [ option ] executable core
++.fl
++\f3jmap\fP [ option ] [server\-id@]remote\-hostname\-or\-IP
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++option
++³Æ¥ª¥×¥·¥ç¥ó¤Ï¸ß¤¤¤ËÇÓ¾Ū¤Ç¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Þ¤¹¡£
++.TP 3
++pid
++½ÐÎϤ¹¤ë¥á¥â¥ê¡¼¡¦¥Þ¥Ã¥×¤Î¥×¥í¥»¥¹ID¡£¥×¥í¥»¥¹¤ÏJava¥×¥í¥»¥¹¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.TP 3
++executable
++¥³¥¢¡¦¥À¥ó¥×¤ÎºîÀ®¸µ¤ÎJava¼Â¹Ô²Äǽ¥Õ¥¡¥¤¥ë¡£
++.br
++.TP 3
++core
++½ÐÎϤ¹¤ë¥á¥â¥ê¡¼¡¦¥Þ¥Ã¥×¤Î¥³¥¢¡¦¥Õ¥¡¥¤¥ë¡£
++.br
++.TP 3
++remote\-hostname\-or\-IP
++¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼(jsadebugd(1)¤ò»²¾È)¤Î¥Û¥¹¥È̾¤Þ¤¿¤ÏIP¥¢¥É¥ì¥¹¡£
++.br
++.TP 3
++server\-id
++Ê£¿ô¤Î¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤¬Æ±°ì¤Î¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤ÇÆ°ºî¤·¤Æ¤¤¤ë¾ì¹ç¤Î¡¢¥ª¥×¥·¥ç¥ó¸ÇÍ­¤ÎID¤Ç¤¹¡£
++.br
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jmap\fP¤Ï¡¢»ØÄꤵ¤ì¤¿¥×¥í¥»¥¹¤ä¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤Î¡¢¶¦ÍÑ¥ª¥Ö¥¸¥§¥¯¥È¡¦¥á¥â¥ê¡¼¡¦¥Þ¥Ã¥×¤Þ¤¿¤Ï¥Ò¡¼¥×¡¦¥á¥â¥ê¡¼¤Î¾ÜºÙ¤ò½ÐÎϤ·¤Þ¤¹¡£»ØÄꤵ¤ì¤¿¥×¥í¥»¥¹¤¬64¥Ó¥Ã¥ÈVM¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2\-J\-d64\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++jmap \-J\-d64 \-heap pid
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f3Ãí°Õ: ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£dbgeng.dll¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤Windows¥·¥¹¥Æ¥à¤Ç¤Ï¡¢¡ÖDebugging Tools For Windows¡×¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ê¤¤¤È¤³¤ì¤é¤Î¥Ä¡¼¥ë¤¬Àµ¾ï¤ËÆ°ºî¤·¤Þ¤»¤ó¡£¤Þ¤¿¡¢\fP\f4PATH\fP\f3´Ä¶­ÊÑ¿ô¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥×¥í¥»¥¹¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤ë\fP\f4jvm.dll\fP\f3¤Î¾ì½ê¡¢¤Þ¤¿¤Ï¥¯¥é¥Ã¥·¥å¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤¿¾ì½ê¤¬´Þ¤Þ¤ì¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£\fP
++.LP
++.LP
++\f3¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£\fP\f4set PATH=<jdk>\\jre\\bin\\client;%PATH%\fP
++.LP
++.br
++
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++<¥ª¥×¥·¥ç¥ó¤Ê¤·>
++¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Ê¤¤¾ì¹ç¡¢jmap¤Ï¶¦ÍÑ¥ª¥Ö¥¸¥§¥¯¥È¡¦¥Þ¥Ã¥Ô¥ó¥°¤ò½ÐÎϤ·¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥ÈVM¤Ë¥í¡¼¥É¤µ¤ì¤¿¶¦ÍÑ¥ª¥Ö¥¸¥§¥¯¥È¤´¤È¤Ë¡¢³«»Ï¥¢¥É¥ì¥¹¡¢¥Þ¥Ã¥Ô¥ó¥°¤Î¥µ¥¤¥º¤ª¤è¤Ó¶¦ÍÑ¥ª¥Ö¥¸¥§¥¯¥È¡¦¥Õ¥¡¥¤¥ë¤Î¥Õ¥ë¥Ñ¥¹¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢Solaris \f3pmap\fP¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ÈÎà»÷¤·¤Æ¤¤¤Þ¤¹¡£
++.br
++.TP 3
++\-dump:[live,]format=b,file=<filename>
++Java¥Ò¡¼¥×¤òhprof¥Ð¥¤¥Ê¥ê·Á¼°¤Çfilename¤Ë¥À¥ó¥×¤·¤Þ¤¹¡£\f2live\fP¥µ¥Ö¥ª¥×¥·¥ç¥ó¤Ï¾Êά²Äǽ¤Ç¤¹¡£¤³¤ì¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢¥Ò¡¼¥×Æâ¤ÇÀ¸Â¸Ãæ¤Î¥ª¥Ö¥¸¥§¥¯¥È¤Î¤ß¤¬¥À¥ó¥×¤µ¤ì¤Þ¤¹¡£¥Ò¡¼¥×¡¦¥À¥ó¥×¤ò»²¾È¤¹¤ë¤Ë¤Ï¡¢À¸À®¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òjhat(1) (Java Heap Analysis Tool)¤ò»ÈÍѤ·¤ÆÆɤ߼è¤ê¤Þ¤¹¡£
++.br
++.TP 3
++\-finalizerinfo
++¥Õ¥¡¥¤¥Ê¥é¥¤¥º¤òÂԤäƤ¤¤ë¥ª¥Ö¥¸¥§¥¯¥È¤Ë´Ø¤¹¤ë¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.br
++.TP 3
++\-heap
++¥Ò¡¼¥×¡¦¥µ¥Þ¥ê¡¼¤ò½ÐÎϤ·¤Þ¤¹¡£»ÈÍѤµ¤ì¤ëGC¥¢¥ë¥´¥ê¥º¥à¡¢¥Ò¡¼¥×¹½À®¤ª¤è¤ÓÀ¤Â头¤È¤Î¥Ò¡¼¥×»ÈÍÑΨ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.TP 3
++\-histo[:live]
++¥Ò¡¼¥×¤Î¥Ò¥¹¥È¥°¥é¥à¤ò½ÐÎϤ·¤Þ¤¹¡£Java¥¯¥é¥¹¤´¤È¤Ë¡¢¥ª¥Ö¥¸¥§¥¯¥È¤Î¿ô¡¢¥Ð¥¤¥Èñ°Ì¤Ç¤Î¥á¥â¥ê¡¼¡¦¥µ¥¤¥º¡¢¤ª¤è¤Ó´°Á´½¤¾þ¥¯¥é¥¹Ì¾¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£VMÆâÉô¥¯¥é¥¹Ì¾¤Ï¡¢¡Ö*¡×¤ÎÀÜƬ¼­¤òÉÕ¤±¤Æ½ÐÎϤµ¤ì¤Þ¤¹¡£\f2live\fP¥µ¥Ö¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢À¸Â¸Ãæ¤Î¥ª¥Ö¥¸¥§¥¯¥È¤Î¤ß¤¬¥«¥¦¥ó¥È¤µ¤ì¤Þ¤¹¡£
++.br
++.TP 3
++\-permstat
++PermanentÀ¤Âå¤ÎJava¥Ò¡¼¥×¤Î¡¢¥¯¥é¥¹¡¦¥í¡¼¥À¡¼´ØÏ¢¤ÎÅý·×¥Ç¡¼¥¿¤ò½ÐÎϤ·¤Þ¤¹¡£¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤´¤È¤Ë¡¢¤½¤Î̾Á°¡¢¾õÂÖ¡¢¥¢¥É¥ì¥¹¡¢¿Æ¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¡¢¤ª¤è¤Ó¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤¬¥í¡¼¥É¤·¤¿¥¯¥é¥¹¤Î¿ô¤È¥µ¥¤¥º¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¤µ¤é¤Ë¡¢intern¤µ¤ì¤¿Ê¸»úÎó¤Î¿ô¤È¥µ¥¤¥º¤â½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.TP 3
++\-F
++¶¯À©(Force)¡£pid¤¬±þÅú¤·¤Ê¤¤¾ì¹ç¤Ë¡¢jmap \-dump¤Þ¤¿¤Ïjmap \-histo¥ª¥×¥·¥ç¥ó¤È¤È¤â¤Ë»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥â¡¼¥É¤Ç¤Ï¡¢\f2live\fP¥µ¥Ö¥ª¥×¥·¥ç¥ó¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó¡£
++.br
++.TP 3
++\-h
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.br
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.br
++.br
++.TP 3
++\-J<flag>
++jmap¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë<flag>¤òÅϤ·¤Þ¤¹¡£
++.br
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++pmap(1)
++.TP 2
++o
++jhat(1)
++.TP 2
++o
++jps(1)
++.TP 2
++o
++jsadebugd(1)
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jps.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jps.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,260 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jps 1 "07 May 2011"
++.TH jps 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jps \- Java²¾ÁÛ¥Þ¥·¥ó¡¦¥×¥í¥»¥¹¡¦¥¹¥Æ¡¼¥¿¥¹¡¦¥Ä¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++¥Û¥¹¥È¼±ÊÌ»Ò
++.TP 2
++o
++½ÐÎÏ·Á¼°
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jps\fP [ \f2options\fP ] [ \f2hostid\fP ]
++.br
++
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£
++.TP 3
++hostid
++¥×¥í¥»¥¹¡¦¥ì¥Ý¡¼¥È¤òÀ¸À®¤¹¤ë¥Û¥¹¥È¤Î¥Û¥¹¥È¼±Ê̻ҡ£\f2hostid\fP¤Ë¤Ï¡¢ÄÌ¿®¥×¥í¥È¥³¥ë¡¢¥Ý¡¼¥ÈÈֹ桢¼ÂÁõ¤Ë¸ÇÍ­¤Ê¾¤Î¥Ç¡¼¥¿¤ò»ØÄꤷ¤¿¥ª¥×¥·¥ç¥ó¡¦¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jps\fP¥Ä¡¼¥ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥·¥¹¥Æ¥à¾å¤Ç·×¬¤µ¤ì¤¿HotSpot Java²¾ÁÛ¥Þ¥·¥ó(JVM)¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£¤³¤Î¥Ä¡¼¥ë¤Çɽ¼¨¤Ç¤­¤ë¥ì¥Ý¡¼¥È¾ðÊó¤Ï¡¢¥¢¥¯¥»¥¹¸¢¤ò»ý¤Ã¤¿JVM¤Ë´Ø¤¹¤ë¤â¤Î¤Ë¸ÂÄꤵ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2hostid\fP¤ò»ØÄꤻ¤º¤Ë\f3jps\fP¤ò¼Â¹Ô¤·¤¿¾ì¹ç¡¢¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤Ç·×¬¤µ¤ì¤¿JVM¤¬¸¡º÷¤µ¤ì¤Þ¤¹¡£\f2hostid\fP¤ò»ØÄꤷ¤Æµ¯Æ°¤·¤¿¾ì¹ç¡¢»ØÄꤵ¤ì¤¿¥×¥í¥È¥³¥ë¤È¥Ý¡¼¥È¤ò»ÈÍѤ·¤Æ¡¢»ØÄꤵ¤ì¤¿¥Û¥¹¥È¾å¤ÎJVM¤ò¸¡º÷¤·¤Þ¤¹¡£\f3jstatd\fP¥×¥í¥»¥¹¤¬¥¿¡¼¥²¥Ã¥È¡¦¥Û¥¹¥È¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤ÈÁÛÄꤵ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3jps\fP¥³¥Þ¥ó¥É¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥·¥¹¥Æ¥à¤Ç·×¬¤µ¤ì¤¿³ÆJVM¤Ë¤Ä¤¤¤Æ¡¢¥í¡¼¥«¥ëVM¼±Ê̻ҡ¢¤Ä¤Þ¤ê\f2lvmid\fP¤ò¥ì¥Ý¡¼¥È¤·¤Þ¤¹¡£\f3lvmid\fP¤Ï¡¢°ìÈÌŪ¤Ë¤ÏJVM¥×¥í¥»¥¹¤ËÂФ¹¤ë¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¤Î¥×¥í¥»¥¹¼±Ê̻ҤǤ¹¤¬¡¢É¬¤º¤·¤â¤½¤¦¤Ç¤¢¤ë¤È¤Ï¸Â¤ê¤Þ¤»¤ó¡£¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢\f3jps\fP¤Ë¤è¤Ã¤Æ¡¢³ÆJava¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î\f2lvmid\fP¤¬°ìÍ÷ɽ¼¨¤µ¤ì¡¢¤½¤ì¤¾¤ì¤Ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹Ì¾¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë̾¤¬´Êñ¤Ê·Á¼°¤Ç¼¨¤µ¤ì¤Þ¤¹¡£¤³¤Î´Êñ¤Ê·Á¼°¤Î¥¯¥é¥¹Ì¾¤ÈJAR¥Õ¥¡¥¤¥ë̾¤Ç¤Ï¡¢¥¯¥é¥¹¤Î¥Ñ¥Ã¥±¡¼¥¸¾ðÊó¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë¡¦¥Ñ¥¹¾ðÊ󤬾Êά¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++\f3jps\fP¥³¥Þ¥ó¥É¤Ï¡¢\f3Java\fPµ¯Æ°¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ\f2main\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤ë¥¯¥é¥¹Ì¾¤È°ú¿ô¤ò¸¡º÷¤·¤Þ¤¹¡£Æȼ«¤Îµ¯Æ°¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ¥¿¡¼¥²¥Ã¥ÈJVM¤òµ¯Æ°¤·¤¿¾ì¹ç¤Ï¡¢\f2main\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤ë¥¯¥é¥¹Ì¾(¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë̾)¤È°ú¿ô¤ÏÍøÍѤǤ­¤Þ¤»¤ó¡£¤³¤Î¾ì¹ç¡¢\f3jps\fP¥³¥Þ¥ó¥É¤Ï¡¢main¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤ë¥¯¥é¥¹Ì¾(¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë̾)¤È°ú¿ô¤ËÂФ·¤Æ¡¢Ê¸»úÎó\f2Unknown\fP¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\f3jps\fP¥³¥Þ¥ó¥É¤ÇÀ¸À®¤µ¤ì¤ëJVM¤Î¥ê¥¹¥È¤Ï¡¢¤³¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¥×¥ê¥ó¥·¥Ñ¥ë¤ËÍ¿¤¨¤é¤ì¤¿¥¢¥¯¥»¥¹¸¢¤Ë´ð¤Å¤­¡¢À©¸Â¤µ¤ì¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥àÆȼ«¤Î¥¢¥¯¥»¥¹À©¸æµ¡¹½¤Ë¤è¤ë·èÄê¤Ë´ð¤Å¤¤¤Æ¡¢¥×¥ê¥ó¥·¥Ñ¥ë¤Ë¥¢¥¯¥»¥¹¸¢¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤ëJVM¤Î¤ß¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£¸½ºß¡¢Windows 98¤ª¤è¤ÓWindows ME¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f3jps\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¥³¥Þ¥ó¥É¤Î½ÐÎϤòÊѹ¹¤¹¤ë¥ª¥×¥·¥ç¥ó¤¬Â¿¿ô¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¾­Íè¡¢¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢Êѹ¹¤Þ¤¿¤ÏÇѻߤµ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++\-q
++¥¯¥é¥¹Ì¾¡¢JAR¥Õ¥¡¥¤¥ë̾¡¢¤ª¤è¤Ó\f2main\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤¿°ú¿ô¤Î½ÐÎϤòÍÞÀ©¤·¡¢¥í¡¼¥«¥ëVM¼±Ê̻ҤΰìÍ÷¤Î¤ß¤òÀ¸À®¤·¤Þ¤¹¡£
++.TP 3
++\-m
++main¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤ë°ú¿ô¤ò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î½ÐÎϤϡ¢ÁȤ߹þ¤Þ¤ì¤Æ¤¤¤ëJVM¤ËÂФ·¤Ænull¤Ë¤Ê¤ë¤³¤È¤â¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-l
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹¤Î¥Õ¥ë¡¦¥Ñ¥Ã¥±¡¼¥¸Ì¾¡¢¤Þ¤¿¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÎJAR¥Õ¥¡¥¤¥ë¤Ø¤Î¥Õ¥ë¥Ñ¥¹Ì¾¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-v
++JVM¤ËÅϤµ¤ì¤ë°ú¿ô¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-V
++¥Õ¥é¥°¡¦¥Õ¥¡¥¤¥ë(.hotspotrc¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï\-XX:Flags=<\f2filename\fP>¤Î°ú¿ô¤Ç»ØÄꤵ¤ì¤¿¥Õ¥¡¥¤¥ë)¤òÄ̤¸¤ÆJVM¤ËÅϤµ¤ì¤ë°ú¿ô¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-Joption
++\f3jps\fP¤¬¸Æ¤Ó½Ð¤¹\f3java\fPµ¯Æ°¥Ä¡¼¥ë¤Ë¡¢\f2option\fP¤òÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤Æ¡¢Java¤Çµ­½Ò¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ëÇظå¤ÎVM¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¡¢¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥Û¥¹¥È¼±ÊÌ»Ò
++.LP
++.LP
++¥Û¥¹¥È¼±Ê̻ҡ¢¤Ä¤Þ¤ê\f2hostid\fP¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥·¥¹¥Æ¥à¤ò¼¨¤¹Ê¸»úÎó¤Ç¤¹¡£\f2hostid\fPʸ»úÎó¤Î¹½Ê¸¤ÎÂçÉôʬ¤Ï¡¢URI¤Î¹½Ê¸¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++[\fP\f4protocol\fP\f3:][[//]\fP\f4hostname\fP\f3][:\fP\f4port\fP\f3][/\fP\f4servername\fP\f3]\fP
++.br
++\f3
++.fl
++\fP
++.fi
++
++.LP
++.RS 3
++.TP 3
++protocol
++ÄÌ¿®¥×¥í¥È¥³¥ë¤Ç¤¹¡£\f2protocol\fP¤¬¾Êά¤µ¤ì¡¢\f2hostname\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥×¥í¥È¥³¥ë¤¬¡¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¸ÇÍ­¤ÎºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤Ë¤Ê¤ê¤Þ¤¹¡£\f2protocol\fP¤¬¾Êά¤µ¤ì¡¢\f2hostname\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥×¥í¥È¥³¥ë¤Ï\f3rmi\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++hostname
++¥¿¡¼¥²¥Ã¥È¡¦¥Û¥¹¥È¤ò¼¨¤¹¥Û¥¹¥È̾¤Þ¤¿¤ÏIP¥¢¥É¥ì¥¹¤Ç¤¹¡£\f2hostname\fP¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥Û¥¹¥È¤Ï¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++port
++¥ê¥â¡¼¥È¡¦¥µ¡¼¥Ð¡¼¤ÈÄÌ¿®¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È¤Ç¤¹¡£\f2hostname\fP¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¤«¡¢ºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤¬\f2protocol\fP¤Ë»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2port\fP¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢\f2port\fP¥Ñ¥é¥á¡¼¥¿¤Î°·¤¤¤Ï¡¢¼ÂÁõ¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Î\f3rmi\fP¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢\f2port\fP¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Îrmiregistry¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò¼¨¤·¤Þ¤¹¡£\f2port\fP¤¬¾Êά¤µ¤ì¡¢\f2protocol\fP¤Ç\f3rmi\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Îrmiregistry¥Ý¡¼¥È(1099)¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++servername
++¤³¤Î¥Ñ¥é¥á¡¼¥¿¤Î°·¤¤¤Ï¡¢¼ÂÁõ¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£ºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢¤³¤Î¥Õ¥£¡¼¥ë¥É¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£\f3rmi\fP¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢¤³¤Î¥Ñ¥é¥á¡¼¥¿¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤ÎRMI¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î̾Á°¤ò¼¨¤¹Ê¸»úÎó¤Ë¤Ê¤ê¤Þ¤¹¡£jstatd(1)¥³¥Þ¥ó¥É¤Î\f3\-n\fP¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SH "½ÐÎÏ·Á¼°"
++.LP
++.LP
++\f3jps\fP¥³¥Þ¥ó¥É¤Î½ÐÎϤϡ¢¼¡¤Î¥Ñ¥¿¡¼¥ó¤Ë½¾¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f4lvmid\fP\f3 [ [ \fP\f4classname\fP\f3 | \fP\f4JARfilename\fP\f3 | "Unknown"] [ \fP\f4arg\fP\f3* ] [ \fP\f4jvmarg\fP\f3* ] ]\fP
++.br
++\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤¹¤Ù¤Æ¤Î½ÐÎϥȡ¼¥¯¥ó¤Ï¶õÇò¤Ç¶èÀÚ¤ê¤Þ¤¹¡£\f2arg\fP¤ÎÃæ¤Ç¶õÇò¤ò»ÈÍѤ¹¤ë¤È¡¢¼ÂºÝ¤ÎÄê°ÌÃ֥ѥé¥á¡¼¥¿¤Ë°ú¿ô¤ò¥Þ¥Ã¥Ô¥ó¥°¤·¤è¤¦¤È¤¹¤ë¤È¤­¤Ë¡¢¤¢¤¤¤Þ¤¤¤Ë¤Ê¤ê¤Þ¤¹¡£
++.br
++.br
++\f3Ãí°Õ\fP: ¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤³¤Î·Á¼°¤ÏÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ë¤¿¤á¡¢\f3jps\fP¤Î½ÐÎϤò²òÀϤ¹¤ë¥¹¥¯¥ê¥×¥È¤ÏºîÀ®¤·¤Ê¤¤¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£\f3jps\fP½ÐÎϤò²òÀϤ¹¤ë¥¹¥¯¥ê¥×¥È¤òºîÀ®¤¹¤ë¤È¡¢¤³¤Î¥Ä¡¼¥ë¤Î¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¡¢ºîÀ®¤·¤¿¥¹¥¯¥ê¥×¥È¤ÎÊѹ¹¤¬É¬Íפˤʤë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.br
++
++.LP
++.SH "Îã"
++.LP
++.LP
++¤³¤Î¹à¤Ç¤Ï¡¢\f3jps\fP¥³¥Þ¥ó¥É¤ÎÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¾å¤Ç·×¬¤µ¤ì¤¿JVM¤ò°ìÍ÷ɽ¼¨¤¹¤ë¾ì¹ç:
++.LP
++.nf
++\f3
++.fl
++\fP\f3jps\fP
++.br
++
++.fl
++18027 Java2Demo.JAR
++.br
++
++.fl
++18032 jps
++.br
++
++.fl
++18005 jstat
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Ç·×¬¤µ¤ì¤¿JVM¤ò°ìÍ÷ɽ¼¨¤¹¤ë¾ì¹ç:
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f3jstat\fP¥µ¡¼¥Ð¡¼¤È¡¢¤½¤ÎÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤Þ¤¿¤ÏÊ̤γ°Éô\f3rmiregistry\fP¥×¥í¥»¥¹¤Î¤¤¤º¤ì¤«¤¬¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È(¥Ý¡¼¥È1099)¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤ÈÁÛÄꤷ¤Æ¤¤¤Þ¤¹¡£¤Þ¤¿¡¢¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤¬¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Ø¤ÎÍ­¸ú¤Ê¥¢¥¯¥»¥¹¸¢¤ò»ý¤Ã¤Æ¤¤¤ë¤³¤È¤âÁÛÄꤷ¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÎã¤Ë¤Ï¡¢\f2\-l\fP¥ª¥×¥·¥ç¥ó¤â´Þ¤Þ¤ì¡¢¥¯¥é¥¹Ì¾¤Þ¤¿¤ÏJAR¥Õ¥¡¥¤¥ë̾¤ò¾ÜºÙ¤Ê·Á¼°¤Ç½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jps \-l remote.domain\fP
++.br
++
++.fl
++3002 /opt/jdk1.7.0/demo/jfc/Java2D/Java2Demo.JAR
++.br
++
++.fl
++2857 sun.tools.jstatd.jstatd
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++RMI¥ì¥¸¥¹¥È¥ê¤Ë¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¤Ê¤¤¥Ý¡¼¥È¤ò»ÈÍѤ·¤Æ¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Ç·×¬¤µ¤ì¤¿JVM¤ò°ìÍ÷ɽ¼¨¤¹¤ë¾ì¹ç:
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢ÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤¬¥Ý¡¼¥È2002¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤¿\f3jstatd\fP¥µ¡¼¥Ð¡¼¤¬¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤ÈÁÛÄꤷ¤Æ¤¤¤Þ¤¹¡£¤Þ¤¿¡¢\f2\-m\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢°ìÍ÷ɽ¼¨¤µ¤ì¤¿¤½¤ì¤¾¤ì¤ÎJava¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î\f2main\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤ë°ú¿ô¤òÁȤ߹þ¤ó¤Ç¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jps \-m remote.domain:2002\fP
++.br
++
++.fl
++3002 /opt/jdk1.7.0/demo/jfc/Java2D/Java2Demo.JAR
++.br
++
++.fl
++3102 sun.tools.jstatd.jstatd \-p 2002
++.fl
++.fi
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++java(1) \- Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë
++.TP 2
++o
++jstat(1) \- Java²¾ÁÛ¥Þ¥·¥óÅý·×¥Ç¡¼¥¿´Æ»ë¥Ä¡¼¥ë
++.TP 2
++o
++jstatd(1) \- jstat¥Ç¡¼¥â¥ó
++.TP 2
++o
++rmiregistry(1) \- Java¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jrunscript.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jrunscript.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,194 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jrunscript 1 "07 May 2011"
++.TH jrunscript 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jrunscript \- ¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¹¥¯¥ê¥×¥È¡¦¥·¥§¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++°ú¿ô
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jrunscript\fP [ \f2options\fP ] [ arguments... ]
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++options
++¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++arguments
++°ú¿ô¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥ª¥×¥·¥ç¥ó¤Þ¤¿¤Ï¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jrunscript\fP¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¹¥¯¥ê¥×¥È¡¦¥·¥§¥ë¤Ç¤¹¡£jrunscript¤Ï¡¢ÂÐÏ÷¿(Æɼè¤ê\-ɾ²Á\-½ÐÎÏ)¥â¡¼¥É¤È¥Ð¥Ã¥Á(\-f¥ª¥×¥·¥ç¥ó)¥â¡¼¥É¤ÎξÊý¤Î¥¹¥¯¥ê¥×¥È¼Â¹Ô¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£¤³¤ì¤Ï¥¹¥¯¥ê¥×¥È¸À¸ì¤Ë°Í¸¤·¤Ê¤¤¥·¥§¥ë¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Î»ÈÍѸÀ¸ì¤ÏJavaScript¤Ç¤¹¤¬¡¢\-l¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ì¤Ð¾¤Î¸À¸ì¤â»ØÄê¤Ç¤­¤Þ¤¹¡£jrunscript¤Ï¡¢Java¤È¥¹¥¯¥ê¥×¥È¸À¸ì¤È¤ÎÄÌ¿®¤Ë¤è¤Ã¤Æ¡ÖõµáŪ¤Ê¥×¥í¥°¥é¥ß¥ó¥°¡×¥¹¥¿¥¤¥ë¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP ¤³¤Î¥Ä¡¼¥ë¤Ï\f3»î¸³Åª¤Ê¤â¤Î\fP¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍÑ\f3¤Ç¤­¤Ê¤¯¤Ê¤ë\fP²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-classpath path
++¥¹¥¯¥ê¥×¥È¤«¤é¤Î¥¢¥¯¥»¥¹ÂоݤȤʤë¥æ¡¼¥¶¡¼¤Î .class¥Õ¥¡¥¤¥ë¤Î¸¡º÷¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-cp path
++\-classpath\f2path\fP¤ÈƱµÁ¤Ç¤¹¡£
++.TP 3
++\-Dname=value
++Java¤Î¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤òÀßÄꤷ¤Þ¤¹¡£
++.TP 3
++\-J<flag>
++jrunscript¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë<flag>¤òľÀÜÅϤ·¤Þ¤¹¡£
++.TP 3
++\-l language
++»ØÄꤵ¤ì¤¿¥¹¥¯¥ê¥×¥È¸À¸ì¤ò»ÈÍѤ·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤ÏJavaScript¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£Â¾¤Î¥¹¥¯¥ê¥×¥È¸À¸ì¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢\-cp¤Þ¤¿¤Ï\-classpath¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢Âбþ¤¹¤ë¥¹¥¯¥ê¥×¥È¡¦¥¨¥ó¥¸¥ó¤ÎJAR¥Õ¥¡¥¤¥ë¤â»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-e script
++»ØÄꤵ¤ì¤¿¥¹¥¯¥ê¥×¥È¤òɾ²Á¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ì¤Ð¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤¹¤Ù¤Æ¤¬»ØÄꤵ¤ì¤¿¡Ö1¹Ô¡×¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.TP 3
++\-encoding encoding
++¥¹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤ÎÆɼè¤ê»þ¤Ë»ÈÍѤ¹¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-f script\-file
++»ØÄꤵ¤ì¤¿¥¹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤òɾ²Á¤·¤Þ¤¹(¥Ð¥Ã¥Á¡¦¥â¡¼¥É)¡£
++.TP 3
++\-f \-
++ɸ½àÆþÎϤ«¤é¥¹¥¯¥ê¥×¥È¤òÆɼè¤ê¡¢¤½¤ì¤òɾ²Á¤·¤Þ¤¹(ÂÐÏ÷¿¥â¡¼¥É)¡£
++.TP 3
++\-help\
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-?\
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.TP 3
++\-q\
++ÍøÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤Î¥¹¥¯¥ê¥×¥È¡¦¥¨¥ó¥¸¥ó¤ò°ìÍ÷ɽ¼¨¤·¤¿¤¢¤È¡¢½ªÎ»¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "°ú¿ô"
++.LP
++.LP
++[arguments...]¤¬Â¸ºß¤·¤Æ¤¤¤Æ¡¢¤«¤Ä\f3\-e\fP¡¢\f3\-f\fP¤Î¤¤¤º¤ì¤Î¥ª¥×¥·¥ç¥ó¤â»ÈÍѤµ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢ºÇ½é¤Î°ú¿ô¤¬¥¹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤È¤Ê¤ê¡¢Â¾¤Î°ú¿ô¤¬Â¸ºß¤¹¤ë¾ì¹ç¤Ï¥¹¥¯¥ê¥×¥È°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤Þ¤¹¡£[arguments..]¤È¡¢\f3\-e\fP¤Þ¤¿¤Ï\f3\-f\fP¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¤¹¤Ù¤Æ¤Î[arguments..]¤¬¥¹¥¯¥ê¥×¥È°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤Þ¤¹¡£[arguments..]¡¢\f3\-e\fP¡¢\f3\-f\fP¤¬¤É¤ì¤â¸ºß¤·¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢ÂÐÏ÷¿¥â¡¼¥É¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£¥¹¥¯¥ê¥×¥È¤«¤é¥¹¥¯¥ê¥×¥È°ú¿ô¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¡Öarguments¡×¤È¤¤¤¦Ì¾Á°¤ÎStringÇÛÎ󷿤Υ¨¥ó¥¸¥óÊÑ¿ô¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.SH "Îã"
++.LP
++.SS
++¥¤¥ó¥é¥¤¥ó¡¦¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô
++.LP
++.nf
++\f3
++.fl
++jrunscript \-e "print('hello world')"
++.fl
++jrunscript \-e "cat('http://www.example.com')"
++.fl
++\fP
++.fi
++
++.LP
++.SS
++»ØÄꤵ¤ì¤¿¸À¸ì¤Î»ÈÍѤª¤è¤Ó»ØÄꤵ¤ì¤¿¥¹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤Îɾ²Á
++.LP
++.nf
++\f3
++.fl
++jrunscript \-l js \-f test.js
++.fl
++\fP
++.fi
++
++.LP
++.SS
++ÂÐÏ÷¿¥â¡¼¥É
++.LP
++.nf
++\f3
++.fl
++jrunscript
++.fl
++js> print('Hello World\\n');
++.fl
++Hello World
++.fl
++js> 34 + 55
++.fl
++89.0
++.fl
++js> t = new java.lang.Thread(function() { print('Hello World\\n'); })
++.fl
++Thread[Thread\-0,5,main]
++.fl
++js> t.start()
++.fl
++js> Hello World
++.fl
++
++.fl
++js>
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¥¹¥¯¥ê¥×¥È°ú¿ô¤ò»ØÄꤷ¤¿¥¹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤Î¼Â¹Ô
++.LP
++.nf
++\f3
++.fl
++jrunscript test.js arg1 arg2 arg3
++.fl
++\fP
++.fi
++
++.LP
++test.js¤¬¼Â¹ÔÂоݤȤʤ륹¥¯¥ê¥×¥È¡¦¥Õ¥¡¥¤¥ë¤Ç¤¢¤ê¡¢arg1¡¢arg2¤ª¤è¤Óarg3¤Ï¥¹¥¯¥ê¥×¥È°ú¿ô¤È¤·¤Æ¥¹¥¯¥ê¥×¥È¤ËÅϤµ¤ì¤Þ¤¹¡£¥¹¥¯¥ê¥×¥È¤Ï¡Öarguments¡×ÇÛÎó¤ò»ÈÍѤ·¤Æ¤³¤ì¤é¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤¹¡£
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++JavaScript¤¬»ÈÍѤµ¤ì¤ë¾ì¹ç¡¢jrunscript¤Ï¡¢ºÇ½é¤Î¥æ¡¼¥¶¡¼ÄêµÁ¥¹¥¯¥ê¥×¥È¤òɾ²Á¤¹¤ëÁ°¤Ë¡¢¤¤¤¯¤Ä¤«¤ÎÁȹþ¤ß´Ø¿ô¤äÁȹþ¤ß¥ª¥Ö¥¸¥§¥¯¥È¤ò½é´ü²½¤·¤Þ¤¹¡£¤³¤ì¤é¤ÎJavaScriptÁȹþ¤ßµ¡Ç½¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2jsdocs\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/share/jsdocs/allclasses\-noframe.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jsadebugd.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jsadebugd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,107 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jsadebugd 1 "07 May 2011"
++.TH jsadebugd 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jsadebugd \- ¥µ¡¼¥Ó¥¹¥¢¥Ó¥ê¥Æ¥£¡¦¥¨¡¼¥¸¥§¥ó¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥Ç¡¼¥â¥ó
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jsadebugd\fP pid [ server\-id ]
++.fl
++\f3jsadebugd\fP executable core [ server\-id ]
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++pid
++¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤¬Àܳ¤¹¤ë¥×¥í¥»¥¹¤Î¥×¥í¥»¥¹ID¤Ç¤¹¡£¥×¥í¥»¥¹¤ÏJava¥×¥í¥»¥¹¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤ò»ÈÍѤ·¤Þ¤¹¡£Ã±°ì¤Î¥×¥í¥»¥¹¤ËÀܳ¤Ç¤­¤ë¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ï¡¢1¤Ä¤ËÀ©¸Â¤µ¤ì¤Þ¤¹¡£
++.TP 3
++executable
++¥³¥¢¡¦¥À¥ó¥×¤ÎºîÀ®¸µ¤ÎJava¼Â¹Ô²Äǽ¥Õ¥¡¥¤¥ë¡£
++.TP 3
++core
++¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤òÀܳ¤¹¤ë¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤Ç¤¹¡£
++.TP 3
++server\-id
++Ê£¿ô¤Î¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤¬Æ±°ì¤Î¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤ËɬÍפˤʤ롢¥ª¥×¥·¥ç¥ó¤Î°ì°Õ¤ÎID¤Ç¤¹¡£¤³¤ÎID¤Ï¡¢¥ê¥â¡¼¥È¡¦¥¯¥é¥¤¥¢¥ó¥È¤¬¡¢ÀܳÀè¤Î¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤òÆÃÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ÎID¤Ï¡¢Ã±°ì¤Î¥Þ¥·¥óÆâ¤Ç°ì°Õ¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jsadebugd\fP¤Ï¡¢Java¥×¥í¥»¥¹¤Þ¤¿¤Ï¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤ËÀܳ¤·¡¢¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤È¤·¤Æµ¡Ç½¤·¤Þ¤¹¡£jstack(1)¡¢jmap(1)¤ª¤è¤Ójinfo(1)¤Ê¤É¤Î¥ê¥â¡¼¥È¡¦¥¯¥é¥¤¥¢¥ó¥È¤Ï¡¢Java Remote Method Invocation(RMI)¤ò»ÈÍѤ·¤Æ¤¤¤ë¥µ¡¼¥Ð¡¼¤ËÀܳ¤Ç¤­¤Þ¤¹¡£\f2jsadebugd\fP¤òµ¯Æ°¤¹¤ëÁ°¤Ë¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Æ
++.na
++\f2rmiregistry\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi¤òµ¯Æ°¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f4rmiregistry \-J\-Xbootclasspath/p:$JAVA_HOME/lib/sajdi.jar\fP\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤³¤Ç¡¢\f2$JAVA_HOME\fP¤ÏJDK¥¤¥ó¥¹¥È¡¼¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤¹¡£rmiregistry¤¬µ¯Æ°¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢jsadebugd¤Ïɸ½à(1099)¥Ý¡¼¥È¤Îrmiregistry¤òÆâÉô¤Çµ¯Æ°¤·¤Þ¤¹¡£¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤Ï¡¢SIGINT¤òÁ÷¿®¤¹¤ë([Ctrl]+[C]¤ò²¡¤¹)¤³¤È¤Ë¤è¤êÄä»ß¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ\fP \- ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£dbgeng.dll¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤Windows¥·¥¹¥Æ¥à¤Ç¤Ï¡¢¡ÖDebugging Tools For Windows¡×¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ê¤¤¤È¤³¤ì¤é¤Î¥Ä¡¼¥ë¤¬Àµ¾ï¤ËÆ°ºî¤·¤Þ¤»¤ó¡£¤Þ¤¿¡¢\f2PATH\fP´Ä¶­ÊÑ¿ô¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥×¥í¥»¥¹¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤ë\f2jvm.dll\fP¤Î¾ì½ê¡¢¤Þ¤¿¤Ï¥¯¥é¥Ã¥·¥å¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤¿¾ì½ê¤¬´Þ¤Þ¤ì¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£\f2set PATH=<jdk>\\jre\\bin\\client;%PATH%\fP
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jinfo(1)
++.TP 2
++o
++jmap(1)
++.TP 2
++o
++jps(1)
++.TP 2
++o
++jstack(1)
++.TP 2
++o
++.na
++\f2rmiregistry\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jstack.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jstack.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,154 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstack 1 "07 May 2011"
++.TH jstack 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jstack \- ¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹
++.br
++
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.br
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.TP 2
++o
++´ûÃΤΥХ°
++.br
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstack\fP [ option ] pid
++.fl
++\f3jstack\fP [ option ] executable core
++.fl
++\f3jstack\fP [ option ] [server\-id@]remote\-hostname\-or\-IP
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.LP
++³Æ¥ª¥×¥·¥ç¥ó¤Ï¸ß¤¤¤ËÇÓ¾Ū¤Ç¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢¥³¥Þ¥ó¥É̾¤Îľ¸å¤Ëµ­½Ò¤·¤Þ¤¹¡£¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++pid
++½ÐÎϤ¹¤ë¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹¤Î¥×¥í¥»¥¹ID¤Ç¤¹¡£¥×¥í¥»¥¹¤ÏJava¥×¥í¥»¥¹¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤·¤Æ¤¤¤ëJava¥×¥í¥»¥¹¤Î°ìÍ÷¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢jps(1)¤ò»ÈÍѤ·¤Þ¤¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++executable
++¥³¥¢¡¦¥À¥ó¥×¤ÎºîÀ®¸µ¤ÎJava¼Â¹Ô²Äǽ¥Õ¥¡¥¤¥ë¡£
++.br
++.TP 3
++core
++½ÐÎϤ¹¤ë¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹¤Î¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤Ç¤¹¡£
++.br
++.TP 3
++remote\-hostname\-or\-IP
++¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼(jsadebugd(1)¤ò»²¾È)¤Î¥Û¥¹¥È̾¤Þ¤¿¤ÏIP¥¢¥É¥ì¥¹¡£
++.br
++.TP 3
++server\-id
++Ê£¿ô¤Î¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤¬Æ±°ì¤Î¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Ç¼Â¹Ô¤·¤Æ¤¤¤ë¾ì¹ç¤Î¡¢¥ª¥×¥·¥ç¥ó¸ÇÍ­¤ÎID¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jstack\fP¤Ï¡¢»ØÄꤵ¤ì¤¿Java¥×¥í¥»¥¹¤ä¥³¥¢¡¦¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ï¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤ËÂФ¹¤ëJava¥¹¥ì¥Ã¥É¤ÎJava¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹¤ò½ÐÎϤ·¤Þ¤¹¡£Java¥Õ¥ì¡¼¥à¤´¤È¤Ë¡¢¥Õ¥ë¥¯¥é¥¹Ì¾¡¢¥á¥½¥Ã¥É̾¡¢¡Öbci¡×(¥Ð¥¤¥È¥³¡¼¥É¡¦¥¤¥ó¥Ç¥Ã¥¯¥¹)¡¢¤ª¤è¤Ó¹ÔÈÖ¹æ(ÍøÍѲÄǽ¤Ê¾ì¹ç)¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£\-m¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢jstack¤Ï¡¢¤¹¤Ù¤Æ¤Î¥¹¥ì¥Ã¥É¤ÎJava¥Õ¥ì¡¼¥à¤È¥Í¥¤¥Æ¥£¥Ö¡¦¥Õ¥ì¡¼¥à¤ÎξÊý¤ò¡¢¡Öpc¡×(¥×¥í¥°¥é¥à¡¦¥«¥¦¥ó¥¿)¤È¤È¤â¤Ë½ÐÎϤ·¤Þ¤¹¡£¥Í¥¤¥Æ¥£¥Ö¡¦¥Õ¥ì¡¼¥à¤´¤È¤Ë¡¢¡Öpc¡×¤ËºÇ¤â¶á¤¤¥Í¥¤¥Æ¥£¥Ö¡¦¥·¥ó¥Ü¥ë(ÍøÍѲÄǽ¤Ê¾ì¹ç)¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£C++ʬ²ò̾¤Ïʬ²ò²ò½ü¤µ¤ì¤Þ¤»¤ó¡£C++̾¤òʬ²ò²ò½ü¤¹¤ë¤Ë¤Ï¡¢¤³¤Î¥³¥Þ¥ó¥É¤Î½ÐÎϤò\f3c++filt\fP¤Ë¥Ñ¥¤¥×¤·¤Þ¤¹¡£»ØÄꤵ¤ì¤¿¥×¥í¥»¥¹¤¬64¥Ó¥Ã¥ÈVM¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2\-J\-d64\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.br
++
++.LP
++.nf
++\f3
++.fl
++jstack \-J\-d64 \-m pid
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f3Ãí°Õ\fP \- ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£dbgeng.dll¤¬Â¸ºß¤·¤Æ¤¤¤Ê¤¤Windows¥·¥¹¥Æ¥à¤Ç¤Ï¡¢¡ÖDebugging Tools For Windows¡×¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Ê¤¤¤È¤³¤ì¤é¤Î¥Ä¡¼¥ë¤¬Àµ¾ï¤ËÆ°ºî¤·¤Þ¤»¤ó¡£¤Þ¤¿¡¢\f2PATH\fP´Ä¶­ÊÑ¿ô¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥×¥í¥»¥¹¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤ë\f2jvm.dll\fP¤Î¾ì½ê¡¢¤Þ¤¿¤Ï¥¯¥é¥Ã¥·¥å¡¦¥À¥ó¥×¡¦¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤¿¾ì½ê¤¬´Þ¤Þ¤ì¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£\f2set PATH=<jdk>\\jre\\bin\\client;%PATH%\fP
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-F
++¡Öjstack [\-l] pid¡×¤¬±þÅú¤·¤Ê¤¤¾ì¹ç¤Ë¥¹¥¿¥Ã¥¯¡¦¥À¥ó¥×¤ò¶¯À©¤·¤Þ¤¹¡£
++.TP 3
++\-l
++Ĺ·Á¼°¤Î¥ê¥¹¥È¡£½êÍ­java.util.concurrent¤Î
++.na
++\f2½êÍ­¤Ç¤­¤ë¥·¥ó¥¯¥í¥Ê¥¤¥¶\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer.html¤Î°ìÍ÷¤Ê¤É¡¢¥í¥Ã¥¯¤Ë¤Ä¤¤¤Æ¤ÎÄɲþðÊó¤ò°õºþ¤·¤Þ¤¹¡£
++.TP 3
++\-m
++º®¹ç¥â¡¼¥É(Java¤ª¤è¤Ó¥Í¥¤¥Æ¥£¥ÖC/C++¥Õ¥ì¡¼¥à¤ÎξÊý)¤Î¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹¤ò½ÐÎϤ·¤Þ¤¹¡£
++.TP 3
++\-h
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£
++.br
++.br
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£
++.br
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++pstack(1)
++.TP 2
++o
++c++filt(1)
++.TP 2
++o
++jps(1)
++.TP 2
++o
++jsadebugd(1)
++.RE
++
++.LP
++.SH "´ûÃΤΥХ°"
++.LP
++.LP
++º®¹ç¥â¡¼¥É¤Î¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹(\-m¥ª¥×¥·¥ç¥ó»ÈÍÑ)¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Ç¥Ð¥Ã¥°¡¦¥µ¡¼¥Ð¡¼¤Ç¤Ïµ¡Ç½¤·¤Þ¤»¤ó¡£
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jstat.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jstat.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,5370 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstat 1 "07 May 2011"
++.TH jstat 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jstat \- Java²¾ÁÛ¥Þ¥·¥óÅý·×¥Ç¡¼¥¿´Æ»ë¥Ä¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++²¾ÁÛ¥Þ¥·¥ó¼±ÊÌ»Ò
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.RS 3
++.TP 2
++*
++°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó
++.TP 2
++*
++½ÐÎÏ¥ª¥×¥·¥ç¥ó
++.RE
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstat\fP [ \f2generalOption\fP | \f2outputOptions\fP \f2vmid\fP [\f2interval\fP[s|ms] [\f2count\fP]] ]
++.fl
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++generalOption
++ñÆȤǻÈÍѤ¹¤ë°ìÈÌŪ¤Ê¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ç¤¹(\-help¡¢\-options¤Þ¤¿¤Ï\-version)¡£
++.TP 3
++outputOptions
++ñ°ì¤Î\f2statOption\fP¤È¡¢\-t¡¢\-h¤ª¤è¤Ó\-J¥ª¥×¥·¥ç¥ó¤Î¤¤¤º¤ì¤«¤òÁȤ߹礻¤¿¡¢1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î½ÐÎÏ¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£
++.TP 3
++vmid
++¥¿¡¼¥²¥Ã¥È¤ÎJava²¾ÁÛ¥Þ¥·¥ó(JVM)¤ò¼¨¤¹Ê¸»úÎó¤Ç¤¢¤ë²¾ÁÛ¥Þ¥·¥ó¼±Ê̻ҤǤ¹¡£°ìÈÌŪ¤Ê¹½Ê¸¤Ï¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++[\fP\f4protocol\fP\f3:][//]\fP\f4lvmid\fP[@\f2hostname\fP[:\f2port\fP]/\f2servername\fP]
++.fl
++.fi
++vmidʸ»úÎó¤Î¹½Ê¸¤ÎÂçÉôʬ¤Ï¡¢URI¤Î¹½Ê¸¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£\f2vmid\fP¤Ï¡¢¥í¡¼¥«¥ëJVM¤òɽ¤¹Ã±½ã¤ÊÀ°¿ô¤«¤é¡¢ÄÌ¿®¥×¥í¥È¥³¥ë¡¢¥Ý¡¼¥ÈÈֹ桢¤ª¤è¤Ó¾¤Î¼ÂÁõ¸ÇÍ­¤ÎÃͤò¼¨¤¹Ê£»¨¤Ê¹½Â¤¤Þ¤Ç¡¢ÍÍ¡¹¤Ë°Û¤Ê¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢²¾ÁÛ¥Þ¥·¥ó¼±Ê̻Ҥò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++interval[s|ms]
++ÉÃ(s)¤Þ¤¿¤Ï¥ß¥êÉÃ(ms)¤Î¤¦¤Á»ØÄꤷ¤¿Ã±°Ì¤Ç¤Î¥µ¥ó¥×¥ê¥ó¥°´Ö³Ö¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Îñ°Ì¤Ï¥ß¥êÉäǤ¹¡£Àµ¤ÎÀ°¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢\f3jstat\fP¤Ïinterval¤´¤È¤Ë½ÐÎϤòÀ¸À®¤·¤Þ¤¹¡£
++.TP 3
++count
++ɽ¼¨¤¹¤ë¥µ¥ó¥×¥ë¿ô¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤÏ̵¸Â¤Ç¤¹¡£¤Ä¤Þ¤ê¡¢\f3jstat\fP¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈJVM¤¬½ªÎ»¤¹¤ë¤Þ¤Ç¡¢¤Þ¤¿¤Ï\f3jstat\fP¥³¥Þ¥ó¥É¤¬½ªÎ»¤¹¤ë¤Þ¤Ç¡¢Åý·×¥Ç¡¼¥¿¤òɽ¼¨¤·¤Þ¤¹¡£Àµ¤ÎÀ°¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jstat\fP¥Ä¡¼¥ë¤Ï¡¢ÀßÃÖ¤µ¤ì¤Æ¤¤¤ëHotSpot Java²¾ÁÛ¥Þ¥·¥ó(JVM)¤Î¥Ñ¥Õ¥©¡¼¥Þ¥ó¥¹Åý·×¥Ç¡¼¥¿¤òɽ¼¨¤·¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥ÈJVM¤Ï¡¢²¾ÁÛ¥Þ¥·¥ó¼±Ê̻ҡ¢¤Ä¤Þ¤ê²¼µ­¤Î\f2vmid\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¼±Ê̤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ\fP: ¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£¸½ºß¡¢Windows 98¤ª¤è¤ÓWindows ME¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.br
++
++.LP
++.SS
++²¾ÁÛ¥Þ¥·¥ó¼±ÊÌ»Ò
++.LP
++.LP
++\f2vmid\fPʸ»úÎó¤Î¹½Ê¸¤ÎÂçÉôʬ¤Ï¡¢URI¤Î¹½Ê¸¤ËÂбþ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++[\fP\f4protocol\fP\f3:][//]\fP\f4lvmid\fP[@\f2hostname\fP][:\f2port\fP][/\f2servername\fP]
++.fl
++.fi
++
++.LP
++.RS 3
++.TP 3
++protocol
++ÄÌ¿®¥×¥í¥È¥³¥ë¤Ç¤¹¡£\f2protocol\fP¤¬¾Êά¤µ¤ì¡¢\f2hostname\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥×¥í¥È¥³¥ë¤¬¡¢¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¸ÇÍ­¤ÎºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤Ë¤Ê¤ê¤Þ¤¹¡£\f2protocol\fP¤¬¾Êά¤µ¤ì¡¢\f2hostname\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥×¥í¥È¥³¥ë¤Ï\f3rmi\fP¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++lvmid
++¥¿¡¼¥²¥Ã¥ÈJVM¤Î¥í¡¼¥«¥ë²¾ÁÛ¥Þ¥·¥ó¼±Ê̻ҤǤ¹¡£\f2lvmid\fP¤Ï¡¢¥·¥¹¥Æ¥à¾å¤ÎJVM¤ò°ì°Õ¤Ë¼±Ê̤¹¤ë¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¸ÇÍ­¤ÎÃͤǤ¹¡£\f2lvmid\fP¤Ï¡¢²¾ÁÛ¥Þ¥·¥ó¼±Ê̻ҤÎÍ£°ì¤Îɬ¿ÜÍ×ÁǤǤ¹¡£\f2lvmid\fP¤Ï¡¢°ìÈÌŪ¤Ë¤Ï¥¿¡¼¥²¥Ã¥ÈJVM¥×¥í¥»¥¹¤ËÂФ¹¤ë¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¤Î¥×¥í¥»¥¹¼±Ê̻ҤǤ¹¤¬¡¢É¬¤º¤·¤â¤½¤¦¤Ç¤¢¤ë¤È¤Ï¸Â¤ê¤Þ¤»¤ó¡£jps(1)¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¡¢\f2lvmid\fP¤òÆÃÄê¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢Unix¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï\f3ps\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¡¢Windows¤Ç¤ÏWindows¥¿¥¹¥¯¡¦¥Þ¥Í¡¼¥¸¥ã¤ò»ÈÍѤ·¤Æ¡¢\f2lvmid\fP¤òÆÃÄê¤Ç¤­¤Þ¤¹¡£
++.TP 3
++hostname
++¥¿¡¼¥²¥Ã¥È¡¦¥Û¥¹¥È¤ò¼¨¤¹¥Û¥¹¥È̾¤Þ¤¿¤ÏIP¥¢¥É¥ì¥¹¤Ç¤¹¡£\f2hostname\fP¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥Û¥¹¥È¤Ï¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++port
++¥ê¥â¡¼¥È¡¦¥µ¡¼¥Ð¡¼¤ÈÄÌ¿®¤¹¤ë¤¿¤á¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È¤Ç¤¹¡£\f2hostname\fP¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¤«¡¢ºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤¬\f2protocol\fP¤Ë»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f2port\fP¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢\f2port\fP¥Ñ¥é¥á¡¼¥¿¤Î°·¤¤¤Ï¡¢¼ÂÁõ¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Î\f3rmi\fP¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢\f2port\fP¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Îrmiregistry¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò¼¨¤·¤Þ¤¹¡£\f2port\fP¤¬¾Êά¤µ¤ì¡¢\f2protocol\fP¤Ç\f3rmi\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Îrmiregistry¥Ý¡¼¥È(1099)¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++servername
++¤³¤Î¥Ñ¥é¥á¡¼¥¿¤Î°·¤¤¤Ï¡¢¼ÂÁõ¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£ºÇŬ²½¤µ¤ì¤¿¥í¡¼¥«¥ë¡¦¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢¤³¤Î¥Õ¥£¡¼¥ë¥É¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£\f3rmi\fP¥×¥í¥È¥³¥ë¤Î¾ì¹ç¡¢¤³¤ì¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤ÎRMI¥ê¥½¡¼¥¹¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î̾Á°¤òɽ¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f3jstat\fP¥³¥Þ¥ó¥É¤Ï¡¢°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó¤È½ÐÎÏ¥ª¥×¥·¥ç¥ó¤Î2¤Ä¤Î¥¿¥¤¥×¤Î¥ª¥×¥·¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤¿¾ì¹ç¡¢\f3jstat\fP¤Ï´Êñ¤Ê»ÈÍÑΨ¤ª¤è¤Ó¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£½ÐÎÏ¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¡¢Åý·×¥Ç¡¼¥¿½ÐÎϤÎÆâÍƤȷÁ¼°¤¬·è¤Þ¤ê¤Þ¤¹¡£
++.br
++
++.LP
++.LP
++\f3Ãí°Õ\fP: ¤¹¤Ù¤Æ¤Î¥ª¥×¥·¥ç¥ó¤È¤½¤Îµ¡Ç½¤Ï¡¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤ÇÊѹ¹¤Þ¤¿¤ÏÇѻߤµ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SS
++°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++¤¤¤º¤ì¤«¤Î°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢Â¾¤Î¥ª¥×¥·¥ç¥ó¤Þ¤¿¤Ï¥Ñ¥é¥á¡¼¥¿¤Ï°ìÀÚ»ØÄê¤Ç¤­¤Þ¤»¤ó¡£
++.LP
++.RS 3
++.TP 3
++\-help
++¥Ø¥ë¥×¡¦¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-version
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-options
++Åý·×¥Ç¡¼¥¿¡¦¥ª¥×¥·¥ç¥ó¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£²¼µ­¤Î½ÐÎÏ¥ª¥×¥·¥ç¥ó¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SS
++½ÐÎÏ¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¤Ë¡¢½ÐÎÏ¥ª¥×¥·¥ç¥ó¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£½ÐÎÏ¥ª¥×¥·¥ç¥ó¤Ï¡¢\f3jstat\fP¤Î½ÐÎϤÎÆâÍƤª¤è¤Ó·Á¼°¤ò·èÄꤷ¡¢Ã±°ì¤Î\f2statOption\fP¤È¡¢Â¾¤Î¤¤¤º¤ì¤«¤Î½ÐÎÏ¥ª¥×¥·¥ç¥ó(\-h¡¢\-t¤ª¤è¤Ó\-J)¤Ç¹½À®¤µ¤ì¤Þ¤¹¡£\f2statOption\fP¤ÏºÇ½é¤Ëµ­½Ò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++½ÐÎϤϡ¢³ÆÎ󤬶õÇò¤Ç¶èÀÚ¤é¤ì¤¿É½¤Î·Á¼°¤Ë¤Ê¤ê¤Þ¤¹¡£¥¿¥¤¥È¥ë¤ò´Þ¤à¥Ø¥Ã¥À¡¼¹Ô¤Ë¤è¤Ã¤Æ¡¢³ÆÎó¤Î°ÕÌ£¤¬¤ï¤«¤ê¤Þ¤¹¡£¥Ø¥Ã¥À¡¼¤Îɽ¼¨ÉÑÅÙ¤òÀßÄꤹ¤ë¤Ë¤Ï¡¢\f3\-h\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£Îó¤Î¥Ø¥Ã¥À¡¼Ì¾¤Ï¡¢ÍÍ¡¹¤Ê¥ª¥×¥·¥ç¥ó´Ö¤Ç¤ª¤ª¤à¤Í°ì´ÓÀ­¤¬Êݤ¿¤ì¤Æ¤¤¤Þ¤¹¡£°ìÈ̤ˡ¢2¤Ä¤Î¥ª¥×¥·¥ç¥ó¤ÇƱ¤¸Ì¾Á°¤ÎÎ󤬻ÈÍѤµ¤ì¤Æ¤¤¤ì¤Ð¡¢2¤Ä¤ÎÎó¤Î¥Ç¡¼¥¿¡¦¥½¡¼¥¹¤ÏƱ¤¸¤Ç¤¹¡£
++.LP
++.LP
++\f3\-t\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢\f2Timestamp\fP¤È¤¤¤¦¥é¥Ù¥ë¤ÎÉÕ¤¤¤¿¥¿¥¤¥à¥¹¥¿¥ó¥×¤ÎÎ󤬡¢½ÐÎϤκǽé¤ÎÎó¤È¤·¤Æɽ¼¨¤µ¤ì¤Þ¤¹¡£\f2Timestamp\fPÎó¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈJVM¤Îµ¯Æ°¤«¤é¤Î·Ð²á»þ´Ö¤¬¡¢ÉÃñ°Ì¤Çɽ¼¨¤µ¤ì¤Þ¤¹¡£¥¿¥¤¥à¥¹¥¿¥ó¥×¤ÎÀºÅ٤ϡ¢ÍÍ¡¹¤ÊÍ×°ø¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¡¢ÂçÎ̤ÎÉé²Ù¤Î¤«¤«¤Ã¤¿¥·¥¹¥Æ¥à¤Ç¤Î¥¹¥ì¥Ã¥É¡¦¥¹¥±¥¸¥å¡¼¥ë¤ÎÃÙ±ä¤Ë¤è¤êÊÑÆ°¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2interval\fP¤ª¤è¤Ó\f2count\fP¥Ñ¥é¥á¡¼¥¿¤ò»ÈÍѤ·¤Æ¡¢\f3jstat\fP¤¬¤½¤Î½ÐÎϤòɽ¼¨¤¹¤ëÉÑÅ٤Ȳó¿ô¤ò¤½¤ì¤¾¤ì»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ\fP: ¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¤³¤Î·Á¼°¤ÏÊѹ¹¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ë¤¿¤á¡¢\f3jstat\fP¤Î½ÐÎϤò²òÀϤ¹¤ë¥¹¥¯¥ê¥×¥È¤ÏºîÀ®¤·¤Ê¤¤¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£\f3jstat\fP½ÐÎϤò²òÀϤ¹¤ë¥¹¥¯¥ê¥×¥È¤òºîÀ®¤¹¤ë¾ì¹ç¤Ï¡¢¤³¤Î¥Ä¡¼¥ë¤Î¾­Íè¤Î¥ê¥ê¡¼¥¹¤Ç¡¢¤½¤Î¥¹¥¯¥ê¥×¥È¤òÊѹ¹¤¹¤ëɬÍפ¬¤¢¤ë¤³¤È¤Ëα°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.RS 3
++.TP 3
++\-statOption
++\f3jstat\fP¤¬É½¼¨¤¹¤ëÅý·×¥Ç¡¼¥¿¾ðÊó¤ò»ØÄꤷ¤Þ¤¹¡£¼¡¤Îɽ¤Ë¡¢ÍøÍѲÄǽ¤Ê¥ª¥×¥·¥ç¥ó¤Î°ìÍ÷¤ò¼¨¤·¤Þ¤¹¡£ÆÃÄê¤Î¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¡¦¥¤¥ó¥¹¥È¡¼¥ë¤Î¥ª¥×¥·¥ç¥ó¤ò°ìÍ÷ɽ¼¨¤¹¤ë¤Ë¤Ï¡¢°ìÈÌŪ¤Ê¥ª¥×¥·¥ç¥ó¤Î\f3\-options\fP¤ò»ÈÍѤ·¤Þ¤¹¡£
++.br
++.br
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ÎÆ°ºî¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++HotSpot Just\-in\-Time¥³¥ó¥Ñ¥¤¥é¤ÎÆ°ºî¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥È¤µ¤ì¤¿¥Ò¡¼¥×¤ÎÆ°ºî¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¤Â头¤È¤ÎÍÆÎ̤ÈÂбþ¤¹¤ëÎΰè¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿¤Î³µÍ×(\f3\-gcutil\fP¤ÈƱ¤¸)¤È¡¢Ä¾Á°¤ª¤è¤Ó¸½ºß(ŬÍѲÄǽ¤Ê¾ì¹ç)¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤Î¸¶°ø
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤ÎÆ°ºî¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤Î¥µ¥¤¥º¤ÈÂбþ¤¹¤ëÎΰè¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Â太¤è¤ÓPermanentÀ¤Âå¤ÎÆ°ºî¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤Î¥µ¥¤¥º¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤Î¥µ¥¤¥º¤Ë´Ø¤¹¤ëÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿¤Î³µÍ×
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++HotSpot¥³¥ó¥Ñ¥¤¥ëÊýË¡¤ÎÅý·×¥Ç¡¼¥¿
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3¥ª¥×¥·¥ç¥ó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wclass
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wcompiler
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgc
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgccapacity
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgccause
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcnew
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcnewcapacity
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcold
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcoldcapacity
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcpermcapacity
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wgcutil
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wprintcompilation
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ɽ¼¨ÆâÍÆ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(l-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 248 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3¥ª¥×¥·¥ç¥ó\fP\h'|\n(41u'\f3ɽ¼¨ÆâÍÆ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'class\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'compiler\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gc\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gccapacity\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gccause\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcnew\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcnewcapacity\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcold\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcoldcapacity\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcpermcapacity\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(k|u+\n(.Vu
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'gcutil\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'printcompilation\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-52
++.TP 3
++\-h n
++\f2n\fP¥µ¥ó¥×¥ë(½ÐÎϹÔ)¤´¤È¤ËÎó¥Ø¥Ã¥À¡¼¤òɽ¼¨¤·¤Þ¤¹¡£¤³¤³¤Ç¡¢\f2n\fP¤ÏÀµ¤ÎÀ°¿ôÃͤǤ¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤÏ0¤Ç¤¹¡£¤³¤Î¾ì¹ç¡¢¥Ç¡¼¥¿¤ÎºÇ½é¤Î¹Ô¤Î¾å¤ËÎó¥Ø¥Ã¥À¡¼¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-t n
++¥¿¥¤¥à¥¹¥¿¥ó¥×Îó¤ò½ÐÎϤκǽé¤ÎÎó¤È¤·¤Æɽ¼¨¤·¤Þ¤¹¡£¥¿¥¤¥à¥¹¥¿¥ó¥×¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈJVM¤Îµ¯Æ°»þ¤«¤é¤Î·Ð²á»þ´Ö¤Ç¤¹¡£
++.TP 3
++\-JjavaOption
++\f2javaOption\fP¤ò\f3java\fP¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë¤ËÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£¥ª¥×¥·¥ç¥ó¤Î´°Á´¤Ê¥ê¥¹¥È¤Ë¤Ä¤¤¤Æ¤Ï¡¢java(1)¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SS
++statOption¤È½ÐÎÏ
++.LP
++.LP
++°Ê¹ß¤Îɽ¤Ç¤Ï¡¢\f3jstat\fP¤¬\f2statOption\fP¤´¤È¤Ë½ÐÎϤ¹¤ëÎó¤Ë¤Ä¤¤¤Æ³µÍפò¼¨¤·¤Þ¤¹¡£
++.br
++
++.LP
++.SS
++\-class¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥í¡¼¥É¤µ¤ì¤¿¥¯¥é¥¹¤Î¿ô
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¢¥ó¥í¡¼¥É¤µ¤ì¤¿¥¯¥é¥¹¤Î¿ô
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¢¥ó¥í¡¼¥É¤µ¤ì¤¿KB¿ô
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¯¥é¥¹¤Î¥í¡¼¥É¤ä¥¢¥ó¥í¡¼¥É½èÍý¤ËÍפ·¤¿»þ´Ö
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wLoaded
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wBytes
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wUnloaded
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wBytes
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wTime
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥í¡¼¥É¤µ¤ì¤¿KB¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 296 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Loaded\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Bytes\h'|\n(41u'¥í¡¼¥É¤µ¤ì¤¿KB¿ô
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Unloaded\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Bytes\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Time\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-23
++
++.LP
++.SS
++\-compiler¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼Â¹Ô¤µ¤ì¤¿¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¹¥¯¤Î¿ô
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ºÇÔ¤·¤¿¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¹¥¯¤Î¿ô
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++̵¸ú¤Ë¤µ¤ì¤¿¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¹¥¯¤Î¿ô
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¹¥¯¤Î¼Â¹Ô¤ËÍפ·¤¿»þ´Ö
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ºÇ¸å¤Ë¼ºÇÔ¤·¤¿¥³¥ó¥Ñ¥¤¥ë¤Î¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¤¥×
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ºÇ¸å¤Ë¼ºÇÔ¤·¤¿¥³¥ó¥Ñ¥¤¥ë¤Î¥¯¥é¥¹Ì¾¤È¥á¥½¥Ã¥É
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wHotSpot Just\-In\-Time¥³¥ó¥Ñ¥¤¥é¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wCompiled
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFailed
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wInvalid
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wTime
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFailedType
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFailedMethod
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 332 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'HotSpot Just\-In\-Time¥³¥ó¥Ñ¥¤¥é¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Compiled\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Failed\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Invalid\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Time\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FailedType\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FailedMethod\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-29
++
++.LP
++.SS
++\-gc¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Õ¥ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÁí»þ´Ö
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥È¤µ¤ì¤¿¥Ò¡¼¥×¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0U
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1U
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \wOldÎΰè¤Î»ÈÍÑΨ(KB)
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(l-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(m-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 400 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥È¤µ¤ì¤¿¥Ò¡¼¥×¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0U\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1U\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EU\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OU\h'|\n(41u'OldÎΰè¤Î»ÈÍÑΨ(KB)
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PU\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(k|u+\n(.Vu
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(m|u+\n(.Vu
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-61
++
++.LP
++.SS
++\-gccapacity¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di n+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr n| \n(dn
++.nr n- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di o+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr o| \n(dn
++.nr o- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w¥á¥â¥ê¡¼¡¦¥×¡¼¥ëÀ¤Â太¤è¤ÓÎΰèÍÆÎÌ
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(l-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(m-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(n-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(o-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 474 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'¥á¥â¥ê¡¼¡¦¥×¡¼¥ëÀ¤Â太¤è¤ÓÎΰèÍÆÎÌ\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(k|u+\n(.Vu
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(m|u+\n(.Vu
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(n|u+\n(.Vu
++.if (\n(n|+\n(#^-1v)>\n(#- .nr #- +(\n(n|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.n+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(o|u+\n(.Vu
++.if (\n(o|+\n(#^-1v)>\n(#- .nr #- +(\n(o|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.o+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.rm n+
++.rm o+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-67
++
++.LP
++.SS
++\-gccause¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢\f3\-gcutil\fP¥ª¥×¥·¥ç¥ó¤ÈƱ¤¸¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿¤Î³µÍפòɽ¼¨¤·¤Þ¤¹¤¬¡¢ºÇ¸å¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤È(ŬÍѲÄǽ¤Ê¾ì¹ç¤Ï)¸½ºß¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¡¦¥¤¥Ù¥ó¥È¤Î¸¶°ø¤¬´Þ¤Þ¤ì¤Þ¤¹¡£\f3\-gcutil\fP¤Ç°ìÍ÷ɽ¼¨¤µ¤ì¤ëÎó¤Î¤Û¤«¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç¤Ï¼¡¤ÎÎó¤¬Äɲ䵤ì¤Þ¤¹¡£
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ºÇ¸å¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¤Î¸¶°ø
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¸½ºß¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó¤Î¸¶°ø
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wGC¥¤¥Ù¥ó¥È¤ò´Þ¤à¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wLGCC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCC
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 497 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GC¥¤¥Ù¥ó¥È¤ò´Þ¤à¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'LGCC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-13
++
++.LP
++.SS
++\-gcnew¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ºÇÂçÅÂƲÆþ¤ê¤·¤­¤¤ÃÍ
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ŬÀÚ¤ÊSurvivor¥µ¥¤¥º(KB)
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wNewÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0U
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1U
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wTT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wMTT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wDSS
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \wÅÂƲÆþ¤ê¤·¤­¤¤ÃÍ
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 551 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NewÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0U\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1U\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'TT\h'|\n(41u'ÅÂƲÆþ¤ê¤·¤­¤¤ÃÍ
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'MTT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'DSS\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EU\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-47
++
++.LP
++.SS
++\-gcnewcapacity¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++NewÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wNewÀ¤ÂåÎΰ襵¥¤¥º¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wNGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0CMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1CMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1C
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wECMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wEC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 605 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NewÀ¤ÂåÎΰ襵¥¤¥º¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'NGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0CMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1CMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1C\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'ECMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'EC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-47
++
++.LP
++.SS
++\-gcold¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î»ÈÍÑΨ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Õ¥ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÁí»þ´Ö
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wOld¤ª¤è¤ÓPermanentÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOU
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \wOldÎΰè¤Î»ÈÍÑΨ(KB)
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 645 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Old¤ª¤è¤ÓPermanentÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PU\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OU\h'|\n(41u'OldÎΰè¤Î»ÈÍÑΨ(KB)
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-33
++
++.LP
++.SS
++\-gcoldcapacity¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Õ¥ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÁí»þ´Ö
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wOldÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wOC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 687 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OldÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'OC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-35
++
++.LP
++.SS
++\-gcpermcapacity¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤ÎºÇ¾®ÍÆÎÌ(KB)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤ÎºÇÂçÍÆÎÌ(KB)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÀ¤Âå¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î¸½ºß¤ÎÍÆÎÌ(KB)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Õ¥ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÁí»þ´Ö
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wPermanentÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGCMN
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGCMX
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wPC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 729 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PermanentÀ¤Âå¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGCMN\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGCMX\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'PC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-35
++
++.LP
++.SS
++\-gcutil¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè0¤Î»ÈÍÑΨ(¸½ºß¤ÎÍÆÎ̤ËÂФ¹¤ë¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸)
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SurvivorÎΰè1¤Î»ÈÍÑΨ(¸½ºß¤ÎÍÆÎ̤ËÂФ¹¤ë¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++EdenÎΰè¤Î»ÈÍÑΨ(¸½ºß¤ÎÍÆÎ̤ËÂФ¹¤ë¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸)
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++OldÎΰè¤Î»ÈÍÑΨ(¸½ºß¤ÎÍÆÎ̤ËÂФ¹¤ë¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸)
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++PermanentÎΰè¤Î»ÈÍÑΨ(¸½ºß¤ÎÍÆÎ̤ËÂФ¹¤ë¥Ñ¡¼¥»¥ó¥Æ¡¼¥¸)
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤ÎGC¥¤¥Ù¥ó¥È¿ô
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼ã¤¤À¤Âå¤Î¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Õ¥ë¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥ó»þ´Ö
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÁí»þ´Ö
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿¤Î³µÍ×
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS0
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wS1
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wE
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wO
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wYGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGC
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wFGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wGCT
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \w¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 779 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'¥¬¥Ù¡¼¥¸¡¦¥³¥ì¥¯¥·¥ç¥óÅý·×¥Ç¡¼¥¿¤Î³µÍ×\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S0\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'S1\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'E\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'O\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'P\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGC\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'YGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGC\h'|\n(41u'¥Õ¥ëGC¥¤¥Ù¥ó¥È¿ô
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'FGCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'GCT\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-43
++
++.LP
++.SS
++\-printcompilation¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¼Â¹Ô¤µ¤ì¤¿¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¹¥¯¤Î¿ô
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥á¥½¥Ã¥É¤Î¥Ð¥¤¥È¥³¡¼¥É¤Î¥Ð¥¤¥È¿ô
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥³¥ó¥Ñ¥¤¥ë¡¦¥¿¥¤¥×
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥³¥ó¥Ñ¥¤¥ëÊýË¡¤òÆÃÄꤹ¤ë¥¯¥é¥¹Ì¾¤È¥á¥½¥Ã¥É̾¡£¥¯¥é¥¹Ì¾¤Ç¤Ï¡¢Ì¾Á°¶õ´Ö¤Î¶èÀÚ¤êʸ»ú¤È¤·¤Æ¡¢¡Ö.¡×¤Î¤«¤ï¤ê¤Ë¡Ö/¡×¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£¥á¥½¥Ã¥É̾¤Ï¡¢»ØÄꤵ¤ì¤¿¥¯¥é¥¹Æâ¤Î¥á¥½¥Ã¥É¤Ç¤¹¡£¤³¤ì¤é¤Î2¤Ä¤Î¥Õ¥£¡¼¥ë¥É¤Î·Á¼°¤Ï¡¢HotSpot \- \f3XX:+PrintComplation\fP¥ª¥×¥·¥ç¥ó¤ÈÂбþ¤·¤Æ¤¤¤Þ¤¹¡£
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \wHotSpot¥³¥ó¥Ñ¥¤¥ëÊýË¡¤ÎÅý·×¥Ç¡¼¥¿
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3Îó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wCompiled
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wSize
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wType
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wMethod
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 807 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'HotSpot¥³¥ó¥Ñ¥¤¥ëÊýË¡¤ÎÅý·×¥Ç¡¼¥¿\h'|\n(41u'
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3Îó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Compiled\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Size\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Type\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'Method\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-21
++
++.LP
++.SH "Îã"
++.LP
++.LP
++¤³¤Î¹à¤Ç¤Ï¡¢21891¤Î\f2lvmid\fP¤ò»ý¤Ä¥í¡¼¥«¥ëJVM¤ò´Æ»ë¤¹¤ëÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.SS
++gcutil¥ª¥×¥·¥ç¥ó¤Î»ÈÍÑ
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2lvmid\fP 21891¤ËÀܳ¤·¤Æ¡¢250¥ß¥êÉôֳ֤Ç7¤Ä¤Î¥µ¥ó¥×¥ë¤ò¼èÆÀ¤·¡¢\f3\-gcutil\fP¥ª¥×¥·¥ç¥ó¤Ç¤Î»ØÄê¤Ë½¾¤Ã¤Æ½ÐÎϤòɽ¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstat \-gcutil 21891 250 7\fP
++.br
++
++.fl
++ S0 S1 E O P YGC YGCT FGC FGCT GCT
++.br
++
++.fl
++ 12.44 0.00 27.20 9.49 96.70 78 0.176 5 0.495 0.672
++.br
++
++.fl
++ 12.44 0.00 62.16 9.49 96.70 78 0.176 5 0.495 0.672
++.br
++
++.fl
++ 12.44 0.00 83.97 9.49 96.70 78 0.176 5 0.495 0.672
++.br
++
++.fl
++ 0.00 7.74 0.00 9.51 96.70 79 0.177 5 0.495 0.673
++.br
++
++.fl
++ 0.00 7.74 23.37 9.51 96.70 79 0.177 5 0.495 0.673
++.br
++
++.fl
++ 0.00 7.74 43.82 9.51 96.70 79 0.177 5 0.495 0.673
++.br
++
++.fl
++ 0.00 7.74 58.11 9.51 96.71 79 0.177 5 0.495 0.673
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Î½ÐÎϤϡ¢¼ã¤¤À¤Âå¤Î¥³¥ì¥¯¥·¥ç¥ó¤¬3ÈÖÌܤÈ4ÈÖÌܤΥµ¥ó¥×¥ë´Ö¤Ç¹Ô¤ï¤ì¤¿¤³¤È¤ò¼¨¤·¤Æ¤¤¤Þ¤¹¡£¥³¥ì¥¯¥·¥ç¥ó¤Ë¤Ï0.001É䫤«¤Ã¤Æ¤ª¤ê¡¢¥ª¥Ö¥¸¥§¥¯¥È¤¬EdenÎΰè(E)¤«¤éOldÎΰè(O)¤Ë¾º³Ê¤·¤¿¤¿¤á¡¢OldÎΰè¤Î»ÈÍÑΨ¤Ï9.49%¤«¤é9.51%¤ËÁý²Ã¤·¤Æ¤¤¤Þ¤¹¡£SurvivorÎΰè¤Ï¡¢¥³¥ì¥¯¥·¥ç¥óÁ°¤Ï12.44%¤¬»ÈÍѤµ¤ì¤Æ¤¤¤Þ¤·¤¿¤¬¡¢¥³¥ì¥¯¥·¥ç¥ó¸å¤Î»ÈÍѤÏ7.74%¤Î¤ß¤Ç¤¹¡£
++.LP
++.SS
++Îó¥Ø¥Ã¥À¡¼Ê¸»úÎó¤Î·«¤êÊÖ¤·
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2lvmid\fP 21891¤ËÀܳ¤·¤Æ¡¢250¥ß¥êÉôֳ֤ǥµ¥ó¥×¥ë¤ò¼èÆÀ¤·¡¢\f3\-gcutil\fP¥ª¥×¥·¥ç¥ó¤Ç¤Î»ØÄê¤Ë½¾¤Ã¤Æ½ÐÎϤòɽ¼¨¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢\f3\-h3\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢¥Ç¡¼¥¿¤¬3¹Ôɽ¼¨¤µ¤ì¤ë¤´¤È¤ËÎó¥Ø¥Ã¥À¡¼¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstat \-gcnew \-h3 21891 250\fP
++.br
++
++.fl
++ S0C S1C S0U S1U TT MTT DSS EC EU YGC YGCT
++.br
++
++.fl
++ 64.0 64.0 0.0 31.7 31 31 32.0 512.0 178.6 249 0.203
++.br
++
++.fl
++ 64.0 64.0 0.0 31.7 31 31 32.0 512.0 355.5 249 0.203
++.br
++
++.fl
++ 64.0 64.0 35.4 0.0 2 31 32.0 512.0 21.9 250 0.204
++.br
++
++.fl
++ S0C S1C S0U S1U TT MTT DSS EC EU YGC YGCT
++.br
++
++.fl
++ 64.0 64.0 35.4 0.0 2 31 32.0 512.0 245.9 250 0.204
++.br
++
++.fl
++ 64.0 64.0 35.4 0.0 2 31 32.0 512.0 421.1 250 0.204
++.br
++
++.fl
++ 64.0 64.0 0.0 19.0 31 31 32.0 512.0 84.4 251 0.204
++.br
++
++.fl
++ S0C S1C S0U S1U TT MTT DSS EC EU YGC YGCT
++.br
++
++.fl
++ 64.0 64.0 0.0 19.0 31 31 32.0 512.0 306.7 251 0.204
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢¥Ø¥Ã¥À¡¼Ê¸»úÎó¤Î·«ÊÖ¤·¤¬É½¼¨¤µ¤ì¤Æ¤¤¤ë¤Û¤«¡¢2ÈÖÌܤÈ3ÈÖÌܤΥµ¥ó¥×¥ë´Ö¤ÇYoung GC¤¬¹Ô¤ï¤ì¤¿¤³¤È¤¬¤ï¤«¤ê¤Þ¤¹¡£¤³¤Î·Ñ³»þ´Ö¤Ï0.001ÉäǤ·¤¿¡£¤³¤Î¥³¥ì¥¯¥·¥ç¥ó¤Ç¤Ï¡¢SurvivorÎΰè0¤Î»ÈÍÑΨ(S0U)¤¬Å¬ÀÚ¤ÊSurvivor¥µ¥¤¥º(DSS)¤òĶ²á¤¹¤ë¤³¤È¤Ë¤Ê¤ë¥é¥¤¥Ö¡¦¥Ç¡¼¥¿¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿¡£¤³¤Î·ë²Ì¡¢¥ª¥Ö¥¸¥§¥¯¥È¤Ï¡¢OldÀ¤Âå(¤³¤Î½ÐÎϤˤÏÈóɽ¼¨)¤Ø¾º³Ê¤µ¤ì¡¢ÅÂƲÆþ¤ê¤·¤­¤¤ÃÍ(TT)¤¬¡¢31¤«¤é2¤Ø¹ß³Ê¤µ¤ì¤Þ¤·¤¿¡£
++.LP
++.LP
++Ê̤Υ³¥ì¥¯¥·¥ç¥ó¤¬¡¢5ÈÖÌܤÈ6ÈÖÌܤΥµ¥ó¥×¥ë´Ö¤Ç¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥³¥ì¥¯¥·¥ç¥ó¤Ç¤Ï¡¢Survivor¤¬¤Û¤È¤ó¤É¸«¤é¤ì¤º¡¢ÅÂƲÆþ¤ê¤·¤­¤¤Ãͤò31¤ËÌᤷ¤Þ¤·¤¿¡£
++.LP
++.SS
++¥µ¥ó¥×¥ë¤´¤È¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤ÎÁÞÆþ
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢\f2lvmid\fP 21891¤ØÀܳ¤·¡¢250¥ß¥êÉôֳ֤Ç3¤Ä¤Î¥µ¥ó¥×¥ë¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹¡£\f3\-t\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢ºÇ½é¤ÎÎó¤Ë¥µ¥ó¥×¥ë¤´¤È¤Î¥¿¥¤¥à¥¹¥¿¥ó¥×¤òɽ¼¨¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstat \-gcoldcapacity \-t 21891 250 3\fP
++.br
++
++.fl
++Timestamp OGCMN OGCMX OGC OC YGC FGC FGCT GCT
++.br
++
++.fl
++ 150.1 1408.0 60544.0 11696.0 11696.0 194 80 2.874 3.799
++.br
++
++.fl
++ 150.4 1408.0 60544.0 13820.0 13820.0 194 81 2.938 3.863
++.br
++
++.fl
++ 150.7 1408.0 60544.0 13820.0 13820.0 194 81 2.938 3.863
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++\f2Timestamp\fPÎó¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈJVM¤Îµ¯Æ°»þ¤«¤é¤Î·Ð²á»þ´Ö¤¬¡¢ÉÃñ°Ì¤Ç¥ì¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤µ¤é¤Ë¡¢\f3\-gcoldcapacity\fP½ÐÎϤǤϡ¢³äÅö¥ê¥¯¥¨¥¹¥È¤Þ¤¿¤Ï¾º³Ê¥ê¥¯¥¨¥¹¥È¤¢¤ë¤¤¤Ï¤½¤ÎξÊý¤òËþ¤¿¤¹¤¿¤á¤Ë¥Ò¡¼¥×¤¬³ÈÄ¥¤¹¤ë¤¿¤Ó¤Ë¡¢OldÀ¤Âå¤ÎÍÆÎÌ(OGC)¤ÈOldÎΰè¤ÎÍÆÎÌ(OC)¤È¤¬Áý²Ã¤·¤Æ¤¤¤ë¤³¤È¤¬¤ï¤«¤ê¤Þ¤¹¡£OldÀ¤Âå¤ÎÍÆÎÌ(OGC)¤Ï¡¢81ÈÖÌܤΥեëGC(FGC)¸å¤Ë¡¢11696 KB¤«¤é13820 KB¤ØÁý²Ã¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÀ¤Âå(¤ª¤è¤ÓÎΰè)¤ÎºÇÂçÍÆÎ̤ϡ¢60544 KB(OGCMX)¤Ê¤Î¤Ç¡¢¤Þ¤À³ÈÄ¥¤Ç¤­¤ë;͵¤¬»Ä¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.SS
++¥ê¥â¡¼¥ÈJVM¤Î¥¤¥ó¥¹¥È¥¥¥ë¥á¥ó¥Æ¡¼¥·¥ç¥ó¤Î´Æ»ë
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢\f3\-gcutil\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢\f2remote.domain\fP¤È¤¤¤¦¥·¥¹¥Æ¥à¾å¤Î\f2lvmid\fP 40496¤ËÀܳ¤·¡¢¥µ¥ó¥×¥ë¤òÉÃñ°Ì¤Ç̵´ü¸Â¤Ë¼èÆÀ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\fP\f3jstat \-gcutil 40496@remote.domain 1000\fP
++.br
++
++.fl
++... \f2output omitted\fP
++.br
++
++.fl
++.fi
++
++.LP
++.LP
++\f2lvmid\fP¤Ï¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Î̾Á°¤È·ë¹ç¤µ¤ì¤Æ¡¢\f240496@remote.domain\fP¤Î\f2vmid\fP¤ò¹½À®¤·¤Æ¤¤¤Þ¤¹¡£·ë²Ì¤È¤·¤Æ¡¢¤³¤Î\f2vmid\fP¤Ï¡¢\f3rmi\fP¥×¥í¥È¥³¥ë¤ò»ÈÍѤ·¤Æ¡¢¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¾å¤Î¥Ç¥Õ¥©¥ë¥È¤Î\f3jstatd\fP¥µ¡¼¥Ð¡¼¤ÈÄÌ¿®¤·¤Þ¤¹¡£\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ï¡¢\f3rmiregistry\fP¤ò»ÈÍѤ·¤Æ¡¢¥Ç¥Õ¥©¥ë¥È¤Î\f3rmiregistry\fP¥Ý¡¼¥È(¥Ý¡¼¥È1099)¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤¿\f2remote.domain\fP¤ËÇÛÃÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++java(1) \- Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë
++.TP 2
++o
++jps(1) \- Java²¾ÁÛ¥Þ¥·¥ó¡¦¥×¥í¥»¥¹¡¦¥¹¥Æ¡¼¥¿¥¹¡¦¥Ä¡¼¥ë
++.TP 2
++o
++jstatd(1) \- jvmstat¥Ç¡¼¥â¥ó
++.TP 2
++o
++rmiregistry(1) \- Java¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/jstatd.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/jstatd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,267 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstatd 1 "07 May 2011"
++.TH jstatd 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++jstatd \- ²¾ÁÛ¥Þ¥·¥ójstat¥Ç¡¼¥â¥ó
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++¥Ñ¥é¥á¡¼¥¿
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++¥»¥­¥å¥ê¥Æ¥£
++.TP 2
++o
++¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹
++.TP 2
++o
++Îã
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++jstatd [ \fP\f4options\fP\f3 ]\fP
++.br
++\f3
++.fl
++\fP
++.fi
++
++.LP
++.SH "¥Ñ¥é¥á¡¼¥¿"
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£¥ª¥×¥·¥ç¥ó¤ÏǤ°Õ¤Î½ç½ø¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£½ÅÊ£¤Þ¤¿¤ÏÌ·½â¤¹¤ë¥ª¥×¥·¥ç¥ó¤¬¤¢¤ë¾ì¹ç¡¢ºÇ¸å¤Ë»ØÄꤷ¤¿¥ª¥×¥·¥ç¥ó¤¬Í¥À褵¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3jstatd\fP¥Ä¡¼¥ë¤Ï¡¢·×¬¤µ¤ì¤¿HotSpot Java²¾ÁÛ¥Þ¥·¥ó(JVM)¤ÎºîÀ®¤È½ªÎ»¤ò´Æ»ë¤·¡¢¥í¡¼¥«¥ë¡¦¥·¥¹¥Æ¥à¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëJava²¾ÁÛ¥Þ¥·¥ó¤Ë¡¢¥ê¥â¡¼¥È´Æ»ë¥Ä¡¼¥ë¤¬Àܳ¤Ç¤­¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ󶡤¹¤ëRMI¥µ¡¼¥Ð¡¼¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ç¤¹¡£
++.LP
++.LP
++\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ç¤Ï¡¢¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤ËRMI¥ì¥¸¥¹¥È¥ê¤¬Â¸ºß¤¹¤ë¤³¤È¤¬É¬Íפˤʤê¤Þ¤¹¡£\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È¤Þ¤¿¤Ï\f2\-p port\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤¿¥Ý¡¼¥È¾å¤ÎRMI¥ì¥¸¥¹¥È¥ê¤ËÀܳ¤·¤è¤¦¤È¤·¤Þ¤¹¡£RMI¥ì¥¸¥¹¥È¥ê¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢\f2\-p port\fP¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤¿¥Ý¡¼¥È¡¢¤Þ¤¿¤Ï\f2\-p port\fP¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥ÈRMI¥ì¥¸¥¹¥È¥ê¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤¿\f3jstatd\fP¥¢¥×¥ê¥±¡¼¥·¥ç¥óÆâ¤Ë¡¢1¤Ä¤ÎRMI¥ì¥¸¥¹¥È¥ê¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£ÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤ÎºîÀ®¤Ï¡¢\f2\-nr\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤³¤È¤Ë¤è¤Ã¤Æ¶Ø»ß¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP¤³¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ï¥µ¥Ý¡¼¥ÈÂоݳ°¤Ç¤¢¤ê¡¢¾­Íè¤ÎJDK¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤ÏÍøÍѤǤ­¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹¡£¸½ºß¡¢Windows 98¤ª¤è¤ÓWindows ME¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ç¤Ï»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f3jstatd\fP¥³¥Þ¥ó¥É¤Ï¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++\-nr
++´û¸¤ÎRMI¥ì¥¸¥¹¥È¥ê¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¡¢\f2jstatd\fP¥×¥í¥»¥¹Æâ¤ËÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤òºîÀ®¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-p\ port
++RMI¥ì¥¸¥¹¥È¥ê¤¬¤¢¤ë¤ÈͽÁÛ¤µ¤ì¤ë¥Ý¡¼¥ÈÈÖ¹æ¤Ç¤¹¡£¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤Ï¡¢\f2\-nr\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤±¤ì¤ÐºîÀ®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-n\ rminame
++RMI¥ì¥¸¥¹¥È¥ê¤Ë¤ª¤¤¤Æ¡¢¥ê¥â¡¼¥ÈRMI¥ª¥Ö¥¸¥§¥¯¥È¤¬¥Ð¥¤¥ó¥É¤µ¤ì¤ë̾Á°¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È̾¤Ï\f2JStatRemoteHost\fP¤Ç¤¹¡£Ê£¿ô¤Î\f3jstatd\fP¥µ¡¼¥Ð¡¼¤¬Æ±¤¸¥Û¥¹¥È¾å¤Çµ¯Æ°¤·¤Æ¤¤¤ë¾ì¹ç¡¢³Æ¥µ¡¼¥Ð¡¼¤Î¥¨¥¯¥¹¥Ý¡¼¥È¤·¤¿RMI¥ª¥Ö¥¸¥§¥¯¥È¤Î̾Á°¤Ï¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢°ì°Õ¤Î̾Á°¤Ë¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢´Æ»ë¥¯¥é¥¤¥¢¥ó¥È¤Î\f2hostid\fP¤ª¤è¤Ó\f2vmid\fPʸ»úÎó¤Ë¡¢¤½¤Î°ì°Õ¤Î¥µ¡¼¥Ð¡¼Ì¾¤ò´Þ¤á¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-Joption
++\f3javac\fP¤¬¸Æ¤Ó½Ð¤¹\f3java\fPµ¯Æ°¥Ä¡¼¥ë¤Ë¡¢\f2option\fP¤òÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤Æ¡¢Java¤Çµ­½Ò¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ëÇظå¤ÎVM¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¡¢¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥»¥­¥å¥ê¥Æ¥£"
++.LP
++.LP
++\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ï¡¢Å¬Àڤʥͥ¤¥Æ¥£¥Ö¡¦¥¢¥¯¥»¥¹¸¢¤ò»ý¤ÄJVM¤Î¤ß¤ò´Æ»ë¤Ç¤­¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f3jstatd\fP¥×¥í¥»¥¹¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈJVM¤ÈƱ¤¸¥æ¡¼¥¶¡¼»ñ³Ê¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£UNIX(tm)¥Ù¡¼¥¹¤Î¥·¥¹¥Æ¥à¤Ë¤ª¤±¤ë\f2root\fP¥æ¡¼¥¶¡¼¤Ê¤É¤Î°ìÉô¤Î¥æ¡¼¥¶¡¼»ñ³Ê¤Ï¡¢¥·¥¹¥Æ¥à¾å¤ÎǤ°Õ¤ÎJVM¤Ë¤è¤Ã¤Æ¥¨¥¯¥¹¥Ý¡¼¥È¤µ¤ì¤¿¥¤¥ó¥¹¥È¥¥¥ë¥á¥ó¥Æ¡¼¥·¥ç¥ó¤Ø¤Î¥¢¥¯¥»¥¹¸¢¤ò»ý¤Ã¤Æ¤¤¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ê»ñ³Ê¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë\f3jstatd\fP¥×¥í¥»¥¹¤Ï¡¢¥·¥¹¥Æ¥à¾å¤Î¤¹¤Ù¤Æ¤ÎJVM¤ò´Æ»ë¤Ç¤­¤Þ¤¹¤¬¡¢¥»¥­¥å¥ê¥Æ¥£¾å¤ÎÊ̤ÎÌäÂ꤬µ¯¤³¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ë¤Ï¡¢¥ê¥â¡¼¥È¡¦¥¯¥é¥¤¥¢¥ó¥È¤Îǧ¾Úµ¡Ç½¤¬¤¢¤ê¤Þ¤»¤ó¡£¤½¤Î¤¿¤á¡¢\f3jstatd\fP¥µ¡¼¥Ð¡¼¡¦¥×¥í¥»¥¹¤ò¼Â¹Ô¤¹¤ë¤È¡¢\f3jstatd\fP¥×¥í¥»¥¹¤¬¥¢¥¯¥»¥¹¸¢¤ò»ý¤Ä¤¹¤Ù¤Æ¤ÎJVM¤Ë¤è¤ë¥¤¥ó¥¹¥È¥¥¥ë¥á¥ó¥Æ¡¼¥·¥ç¥ó¤Î¥¨¥¯¥¹¥Ý¡¼¥È¤ò¡¢¥Í¥Ã¥È¥ï¡¼¥¯¾å¤Î¤¹¤Ù¤Æ¤Î¥æ¡¼¥¶¡¼¤Ë¸ø³«¤¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î̵ËÉÈ÷¤Ê¾õÂ֤ϡ¢´Ä¶­¤Ë¤è¤Ã¤Æ¤Ï˾¤Þ¤·¤¯¤Ê¤¤¾ì¹ç¤¬¤¢¤ë¤Î¤Ç¡¢Æä˼²ÔƯ´Ä¶­¤Þ¤¿¤Ï°ÂÁ´¤Ç¤Ê¤¤¥Í¥Ã¥È¥ï¡¼¥¯¤Ç¤Ï¡¢\f3jstatd\fP¥×¥í¥»¥¹¤òµ¯Æ°¤¹¤ëÁ°¤Ë¡¢¥í¡¼¥«¥ë¡¦¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¤ò¸¡Æ¤¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f3jstatd\fP¥µ¡¼¥Ð¡¼¤Ï¡¢Â¾¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥Þ¥Í¡¼¥¸¥ã¤¬¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ë¤Ï¡¢RMISecurityPolicy¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹¡£¤½¤Î¤¿¤á¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¥ê¥·¡¼¼ÂÁõ¤Î
++.na
++\f2¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤Î¹½Ê¸\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html¤Ë½àµò¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++¼¡¤Î¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤Ç¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£Îã³°¤òȯÀ¸¤»¤º¤Ë\f3jstatd\fP¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£¤³¤Î¥Ý¥ê¥·¡¼¤Ï¡¢¤¹¤Ù¤Æ¤Î¥³¡¼¥É¥Ù¡¼¥¹¤Ø¤Î¤¢¤é¤æ¤ë¥¢¥¯¥»¥¹¸¢¤òǧ¤á¤ë¥Ý¥ê¥·¡¼¤è¤ê¤â¼«Í³ÅÙ¤¬Ä㤤¤Ç¤¹¤¬¡¢\f3jstatd\fP¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤ËºÇÄã¸ÂɬÍפʥ¢¥¯¥»¥¹¸¢¤Î¤ß¤òǧ¤á¤ë¥Ý¥ê¥·¡¼¤è¤ê¤â¼«Í³ÅÙ¤¬¹â¤¯¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++grant codebase "file:${java.home}/../lib/tools.jar" {\fP
++.br
++\f3
++.fl
++ permission java.security.AllPermission;\fP
++.br
++\f3
++.fl
++};\fP
++.br
++\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¥Ý¥ê¥·¡¼¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¤³¤Î¥Æ¥­¥¹¥È¤ò\f2jstatd.all.policy\fP¤È¤¤¤¦¥Õ¥¡¥¤¥ë¤Ë¥³¥Ô¡¼¤·¡¢¼¡¤Î¤è¤¦¤Ë\f3jstatd\fP¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++jstatd \-J\-Djava.security.policy=jstatd.all.policy\fP
++.br
++\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤è¤ê¸·¤·¤¤¥»¥­¥å¥ê¥Æ¥£¤ò¼Â»Ü¤¹¤ë¥µ¥¤¥È¤Î¾ì¹ç¡¢¥«¥¹¥¿¥à¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ·¤Æ¡¢ÆÃÄê¤Î¿®Íê¤Ç¤­¤ë¥Û¥¹¥È¤Þ¤¿¤Ï¥Í¥Ã¥È¥ï¡¼¥¯¤Ë¥¢¥¯¥»¥¹¤òÀ©¸Â¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤Î¤è¤¦¤ÊÊýË¡¤Ï¡¢IP¥¢¥É¥ì¥¹¤ÎÅðÄ°¹¶·â¤ò¼õ¤±¤ä¤¹¤¯¤Ê¤ê¤Þ¤¹¡£¥»¥­¥å¥ê¥Æ¥£¤ÎÌäÂê¤Ë¤Ä¤¤¤Æ¡¢¥«¥¹¥¿¥Þ¥¤¥º¤·¤¿¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤Ç¤âÂнè¤Ç¤­¤Ê¤¤¾ì¹ç¤Ï¡¢\f3jstatd\fP¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤»¤º¤Ë¡¢\f3jstat\fP¤È\f3jps\fP¥Ä¡¼¥ë¤ò¥í¡¼¥«¥ë¤Ç»ÈÍѤ¹¤ë¤³¤È¤¬ºÇ¤â°ÂÁ´¤ÊÊýË¡¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.SH "¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹"
++.LP
++.LP
++\f3jstatd\fP¥×¥í¥»¥¹¤¬¥¨¥¯¥¹¥Ý¡¼¥È¤¹¤ë¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ï¡¢Æȼ«¤Ë³«È¯¤·¤¿¤â¤Î¤Ç¤¢¤êÊѹ¹¤µ¤ì¤ëͽÄê¤Ç¤¹¡£¥æ¡¼¥¶¡¼¤ª¤è¤Ó³«È¯¼Ô¤Ï¡¢¤³¤Î¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ø¤Î½ñ¹þ¤ß¤ò¹Ô¤ï¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.LP
++.SH "Îã"
++.LP
++.LP
++¼¡¤Ë\f3jstatd\fP¤òµ¯Æ°¤¹¤ëÎã¤ò¾Ò²ð¤·¤Þ¤¹¡£\f3jstatd\fP¥¹¥¯¥ê¥×¥È¤Ë¤è¤Ã¤Æ¡¢¥µ¡¼¥Ð¡¼¤Ï¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤Ç¼«Æ°Åª¤Ëµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.SS
++ÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤Î»ÈÍÑ
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢ÆâÉôRMI¥ì¥¸¥¹¥È¥ê¤ò»ÈÍѤ·¤¿\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤ÎRMI¥ì¥¸¥¹¥È¥ê¡¦¥Ý¡¼¥È(¥Ý¡¼¥È1099)¤Ë¤Ï¡¢Â¾¤Î¥µ¡¼¥Ð¡¼¤Ï¥Ð¥¤¥ó¥É¤µ¤ì¤Æ¤¤¤Ê¤¤¤ÈÁÛÄꤷ¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++jstatd \-J\-Djava.security.policy=all.policy
++.fl
++\fP
++.fi
++
++.LP
++.SS
++³°ÉôRMI¥ì¥¸¥¹¥È¥ê¤Î»ÈÍÑ
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢³°ÉôRMI¥ì¥¸¥¹¥È¥ê¤ò»ÈÍѤ·¤¿\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++rmiregistry&
++.fl
++jstatd \-J\-Djava.security.policy=all.policy
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢¥Ý¡¼¥È2020¤Î³°ÉôRMI¥ì¥¸¥¹¥È¥ê¤ò»ÈÍѤ·¤¿\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++rmiregistry 2020&
++.fl
++jstatd \-J\-Djava.security.policy=all.policy \-p 2020
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢AlternateJstatdServerName¤Î̾Á°¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤¿¡¢¥Ý¡¼¥È2020¤Î³°ÉôRMI¥ì¥¸¥¹¥È¥ê¤ò»ÈÍѤ·¤¿\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++rmiregistry 2020&
++.fl
++jstatd \-J\-Djava.security.policy=all.policy \-p 2020 \-n AlternateJstatdServerName
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¥¤¥ó¥×¥í¥»¥¹RMI¥ì¥¸¥¹¥È¥ê¤ÎºîÀ®¤Î¶Ø»ß
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢RMI¥ì¥¸¥¹¥È¥ê¤¬¸«¤Ä¤«¤é¤Ê¤¤¾ì¹ç¤ËRMI¥ì¥¸¥¹¥È¥ê¤òºîÀ®¤·¤Ê¤¤\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÎã¤Ç¤Ï¡¢RMI¥ì¥¸¥¹¥È¥ê¤¬¤¹¤Ç¤Ë¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤ÈÁÛÄꤷ¤Æ¤¤¤Þ¤¹¡£¼Â¹Ô¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢Å¬Àڤʥ¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++jstatd \-J\-Djava.security.policy=all.policy \-nr
++.fl
++\fP
++.fi
++
++.LP
++.SS
++RMI¥í¥°µ¡Ç½¤ÎÍ­¸ú²½
++.LP
++.LP
++¤³¤ÎÎã¤Ï¡¢RMI¥í¥°µ¡Ç½¤òÍ­¸ú¤Ë¤·¤¿\f3jstatd\fP¤Îµ¯Æ°¤òɽ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÊýË¡¤Ï¡¢¥È¥é¥Ö¥ë¥·¥å¡¼¥Æ¥£¥ó¥°¤Þ¤¿¤Ï¥µ¡¼¥Ð¡¼³èÆ°¤Î´Æ»ë¤ËÌòΩ¤Á¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++jstatd \-J\-Djava.security.policy=all.policy \-J\-Djava.rmi.server.logCalls=true
++.fl
++\fP
++.fi
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++java(1) \- Java¥¢¥×¥ê¥±¡¼¥·¥ç¥óµ¯Æ°¥Ä¡¼¥ë
++.TP 2
++o
++jps(1) \- Java²¾ÁÛ¥Þ¥·¥ó¡¦¥×¥í¥»¥¹¡¦¥¹¥Æ¡¼¥¿¥¹¡¦¥Ä¡¼¥ë
++.TP 2
++o
++jstat(1) \- Java²¾ÁÛ¥Þ¥·¥óÅý·×¥Ç¡¼¥¿´Æ»ë¥Ä¡¼¥ë
++.TP 2
++o
++.na
++\f2rmiregistry\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi \- Java¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/keytool.1 2012-08-10 10:22:49.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/keytool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -1,4 +1,4 @@
+-." Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
++." Copyright (c) 1998-2011 keytool tool, Oracle and/or its affiliates. All rights reserved.
+ ." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ ."
+ ." This code is free software; you can redistribute it and/or modify it
+@@ -19,6 +19,1827 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH keytool 1 "07 May 2011"
++.TH keytool 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++keytool \- ¸°¤È¾ÚÌÀ½ñ¤Î´ÉÍý¥Ä¡¼¥ë
++.LP
++.LP
++°Å¹æ²½¸°¡¢X.509¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ª¤è¤Ó¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤ò´Þ¤à¥­¡¼¥¹¥È¥¢(¥Ç¡¼¥¿¥Ù¡¼¥¹)¤ò´ÉÍý¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3keytool\fP [ commands ]
++.fl
++.fi
++
++.LP
++.LP
++Java SE 6¤Çkeytool¤Î¥³¥Þ¥ó¥É¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿¡£¾ÜºÙ¤Ï¡¢Êѹ¹ÅÀ¤Î¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£°ÊÁ°¤ËÄêµÁ¤µ¤ì¤¿¥³¥Þ¥ó¥É¤â°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.SH "ÀâÌÀ"
++.LP
++\f3keytool\fP¤Ï¡¢¸°¤È¾ÚÌÀ½ñ¤ò´ÉÍý¤¹¤ë¤¿¤á¤Î¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤Ç¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢¥æ¡¼¥¶¡¼¤Ï¼«Ê¬¤Î¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥Ú¥¢¤ª¤è¤Ó´ØÏ¢¤¹¤ë¾ÚÌÀ½ñ¤ò´ÉÍý¤·¡¢¥Ç¥¸¥¿¥ë½ð̾¤ò»ÈÍѤ·¤¿¼«¸Êǧ¾Ú(¾¤Î¥æ¡¼¥¶¡¼¤Þ¤¿¤Ï¥µ¡¼¥Ó¥¹¤ËÂФ·¤Æ¼«Ê¬¼«¿È¤òǧ¾Ú¤¹¤ë¤³¤È)¤ä¡¢¥Ç¡¼¥¿¤ÎÀ°¹çÀ­¤È¾ÚÌÀ½ñ¤Ë´Ø¤¹¤ë¥µ¡¼¥Ó¥¹¤òÍøÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢ÄÌ¿®Áê¼ê¤Î¸ø³«¸°¤ò(¾ÚÌÀ½ñ¤Î·Á¤Ç)¥­¥ã¥Ã¥·¥å¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++¡Ö\f2¾ÚÌÀ½ñ\fP¡×¤È¤Ï¡¢¤¢¤ë¥¨¥ó¥Æ¥£¥Æ¥£(¿Íʪ¡¢²ñ¼Ò¤Ê¤É)¤«¤é¤Î¥Ç¥¸¥¿¥ë½ð̾ÉÕ¤­¤Îʸ½ñ¤Î¤³¤È¤Ç¤¹¡£¾ÚÌÀ½ñ¤Ë¤Ï¡¢Â¾¤Î¤¢¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤Î¸ø³«¸°(¤ª¤è¤Ó¤½¤Î¾¤Î¾ðÊó)¤¬ÆÃÊ̤ÊÃͤò»ý¤Ã¤Æ¤¤¤ë¤³¤È¤¬½ñ¤«¤ì¤Æ¤¤¤Þ¤¹¡£(¾ÚÌÀ½ñ¤ò»²¾È¡£)¥Ç¡¼¥¿¤Ë¥Ç¥¸¥¿¥ë½ð̾¤¬ÉÕ¤¤¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥Ç¥¸¥¿¥ë½ð̾¤ò¸¡¾Ú¤¹¤ë¤³¤È¤Ç¡¢¥Ç¡¼¥¿¤ÎÀ°¹çÀ­¤ª¤è¤Ó¥Ç¡¼¥¿¤¬ËÜʪ¤Ç¤¢¤ë¤³¤È¤ò¥Á¥§¥Ã¥¯¤Ç¤­¤Þ¤¹¡£¥Ç¡¼¥¿¤Î¡Ö\f2À°¹çÀ­\fP¡×¤È¤Ï¡¢¥Ç¡¼¥¿¤¬Êѹ¹¤µ¤ì¤¿¤ê¡¢²þÊѤµ¤ì¤¿¤ê¤·¤Æ¤¤¤Ê¤¤¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£¤Þ¤¿¡¢¥Ç¡¼¥¿¤¬¡Ö\f2ËÜʪ¤Ç¤¢¤ë\fP¡×¤È¤Ï¡¢¤½¤Î¥Ç¡¼¥¿¤¬¡¢¥Ç¡¼¥¿¤òºîÀ®¤·¤Æ½ð̾¤·¤¿¤È¾Î¤¹¤ë¿Íʪ¤«¤é¼ÂºÝ¤ËÅϤµ¤ì¤¿¥Ç¡¼¥¿¤Ç¤¢¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£
++.LP
++.LP
++¤Þ¤¿¡¢\f3keytool\fP¤ò»ÈÍѤ¹¤ì¤Ð¡¢DES¤Ê¤É¤ÎÂоΰŹ沽/Éü¹æ²½¤Ç»ÈÍѤµ¤ì¤ëÈëÌ©¸°¤ò´ÉÍý¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f3keytool\fP¤Ï¡¢¸°¤È¾ÚÌÀ½ñ¤ò\f2¥­¡¼¥¹¥È¥¢\fP¤Ë³ÊǼ¤·¤Þ¤¹¡£
++.LP
++.SH "¥³¥Þ¥ó¥É¤È¥ª¥×¥·¥ç¥ó¤Ë´Ø¤¹¤ëÃí°Õ"
++.LP
++.LP
++ÍÍ¡¹¤Ê¥³¥Þ¥ó¥É¤È¤½¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¡¢²¼µ­¤ÇÀâÌÀ¤·¤Þ¤¹¡£Ãí°Õ:
++.LP
++.RS 3
++.TP 2
++o
++¤É¤Î¥³¥Þ¥ó¥É̾¤ª¤è¤Ó¥ª¥×¥·¥ç¥ó̾¤Ë¤âÀèƬ¤Ë¥Þ¥¤¥Ê¥¹µ­¹æ(\-)¤¬ÉÕ¤­¤Þ¤¹¡£
++.TP 2
++o
++³Æ¥³¥Þ¥ó¥É¤Î¥ª¥×¥·¥ç¥ó¤ÏǤ°Õ¤Î½ç½ø¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£
++.TP 2
++o
++¥¤¥¿¥ê¥Ã¥¯ÂΤˤʤäƤ¤¤Ê¤¤¤¹¤Ù¤Æ¤Î¹àÌÜ¡¢¤Þ¤¿¤ÏÃæ³ç¸Ì¤«³Ñ³ç¸Ì¤Ç°Ï¤Þ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¹àÌܤϡ¢¤½¤Î¤È¤ª¤ê¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó¤ò°Ï¤àÃæ³ç¸Ì¤Ï¡¢°ìÈ̤ˡ¢¤½¤Î¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ë¡¢¥Ç¥Õ¥©¥ë¥ÈÃͤ¬»ÈÍѤµ¤ì¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£Ãæ³ç¸Ì¤Ï¡¢\f2\-v\fP¡¢\f2\-rfc\fP¤ª¤è¤Ó\f2\-J\fP¥ª¥×¥·¥ç¥ó¤ò°Ï¤à¤¿¤á¤Ë¤â»ÈÍѤµ¤ì¤Þ¤¹¤¬¡¢¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤵ¤ì¤¿¾ì¹ç¤Ë¤Î¤ß°ÕÌ£¤ò»ý¤Á¤Þ¤¹(¤Ä¤Þ¤ê¡¢¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ï¡¢¥ª¥×¥·¥ç¥ó¼«ÂΤò»ØÄꤷ¤Ê¤¤¤³¤È°Ê³°¤Ë¡Ö¥Ç¥Õ¥©¥ë¥È¡×Ãͤϸºß¤·¤Þ¤»¤ó)¡£
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó¤ò°Ï¤à³Ñ³ç¸Ì¤Ï¡¢¤½¤Î¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ë¡¢ÃͤÎÆþÎϤòµá¤á¤é¤ì¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£(\f2\-keypass\fP¥ª¥×¥·¥ç¥ó¤Î¾ì¹ç¡¢¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢\f3keytool\fP¤¬¤Þ¤º¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤«¤éÈó¸ø³«/ÈëÌ©¸°¤ÎÉü¸µ¤ò»î¤ß¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤Ï¡¢¤³¤Î»î¤ß¤¬¼ºÇÔ¤·¤¿¾ì¹ç¤ËÈó¸ø³«/ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£)
++.TP 2
++o
++¥¤¥¿¥ê¥Ã¥¯ÂΤιàÌܤμºݤÎÃÍ(¥ª¥×¥·¥ç¥ó¤ÎÃÍ)¤Ï¡¢»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2\-printcert\fP¥³¥Þ¥ó¥É¤Î·Á¼°¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-printcert {\-file \fP\f4cert_file\fP\f3} {\-v}
++.fl
++\fP
++.fi
++.LP
++\f2\-printcert\fP¥³¥Þ¥ó¥É¤ò»ØÄꤹ¤ë¤È¤­¤Ï¡¢\f2cert_file\fP¤Î¤«¤ï¤ê¤Ë¼ÂºÝ¤Î¥Õ¥¡¥¤¥ë̾¤ò»ØÄꤷ¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-printcert \-file VScert.cer
++.fl
++\fP
++.fi
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó¤ÎÃͤ˶õÇò(¥¹¥Ú¡¼¥¹)¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢Ãͤò°úÍÑÉä¤Ç°Ï¤àɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f2\-help\fP¥³¥Þ¥ó¥É¤Ï¥Ç¥Õ¥©¥ë¥È¤Î¥³¥Þ¥ó¥É¤Ç¤¹¡£¤½¤Î¤¿¤á¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó
++.nf
++\f3
++.fl
++ keytool
++.fl
++\fP
++.fi
++.LP
++¤Ï¡¢¼¡¤ÈƱ¤¸¤Ç¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-help
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SS
++¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃÍ
++.LP
++.LP
++¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤϡ¢¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++\-alias "mykey"
++.fl
++
++.fl
++\-keyalg
++.fl
++ "DSA" (when using \fP\f3\-genkeypair\fP\f3)
++.fl
++ "DES" (when using \fP\f3\-genseckey\fP\f3)
++.fl
++
++.fl
++\-keysize
++.fl
++ 2048 (when using \fP\f3\-genkeypair\fP\f3 and \-keyalg is "RSA")
++.fl
++ 1024 (when using \fP\f3\-genkeypair\fP\f3 and \-keyalg is "DSA")
++.fl
++ 256 (when using \fP\f3\-genkeypair\fP\f3 and \-keyalg is "EC")
++.fl
++ 56 (when using \fP\f3\-genseckey\fP\f3 and \-keyalg is "DES")
++.fl
++ 168 (when using \fP\f3\-genseckey\fP\f3 and \-keyalg is "DESede")
++.fl
++
++.fl
++
++.fl
++\-validity 90
++.fl
++
++.fl
++\-keystore the file named \fP\f4.keystore\fP\f3 in the user's home directory
++.fl
++
++.fl
++\-storetype the value of the "keystore.type" property in the security properties file,
++.fl
++ which is returned by the static \fP\f4getDefaultType\fP\f3 method in
++.fl
++ \fP\f4java.security.KeyStore\fP\f3
++.fl
++
++.fl
++\-file stdin if reading, stdout if writing
++.fl
++
++.fl
++\-protected false
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¸ø³«/ÈëÌ©¸°¥Ú¥¢¤ÎÀ¸À®¤Ë¤ª¤¤¤Æ¡¢½ð̾¥¢¥ë¥´¥ê¥º¥à(\f2\-sigalg\fP¥ª¥×¥·¥ç¥ó)¤Ï¡¢´ð¤Ë¤Ê¤ëÈëÌ©¸°¤Î¥¢¥ë¥´¥ê¥º¥à¤«¤éÇÉÀ¸¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++´ð¤Ë¤Ê¤ëÈëÌ©¸°¤¬DSA¥¿¥¤¥×¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-sigalg\fP¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤÏSHA1withDSA¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++´ð¤Ë¤Ê¤ëÈëÌ©¸°¤¬RSA¥¿¥¤¥×¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-sigalg\fP¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤÏSHA256withRSA¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 2
++o
++´ð¤Ë¤Ê¤ëÈëÌ©¸°¤¬EC¥¿¥¤¥×¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-sigalg\fP¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤÏSHA256withECDSA¤Ë¤Ê¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++ÁªÂò²Äǽ¤Ê\f2\-keyalg\fP¤ª¤è¤Ó\f2\-sigalg\fP¤Î´°Á´¤Ê°ìÍ÷¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f2Java Cryptography Architecture API Specification & Reference\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SS
++°ìÈÌ¥ª¥×¥·¥ç¥ó
++.LP
++.LP
++\f2\-v\fP¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2\-help\fP¥³¥Þ¥ó¥É¤ò½ü¤¯¤¹¤Ù¤Æ¤Î¥³¥Þ¥ó¥É¤Ç»ÈÍѤǤ­¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥³¥Þ¥ó¥É¤Ï¡Ö¾éĹ¡×¥â¡¼¥É¤Ç¼Â¹Ô¤µ¤ì¡¢¾ÜºÙ¤Ê¾ÚÌÀ½ñ¾ðÊ󤬽ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¤Þ¤¿¡¢\f2\-J\fP\f2javaoption\fP¥ª¥×¥·¥ç¥ó¤â¡¢Ç¤°Õ¤Î¥³¥Þ¥ó¥É¤Ç»ÈÍѤǤ­¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢»ØÄꤵ¤ì¤¿\f2javaoption\fPʸ»úÎó¤¬Java¥¤¥ó¥¿¥×¥ê¥¿¤ËľÀÜÅϤµ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ë¤Ï¡¢¶õÇò¤ò´Þ¤á¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¼Â¹Ô´Ä¶­¤Þ¤¿¤Ï¥á¥â¥ê¡¼»ÈÍѤòÄ´À°¤¹¤ë¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£»ØÄê¤Ç¤­¤ë¥¤¥ó¥¿¥×¥ê¥¿¡¦¥ª¥×¥·¥ç¥ó¤ò°ìÍ÷ɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2java \-h\fP¤Þ¤¿¤Ï\f2java \-X\fP¤ÈÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¼¡¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥­¡¼¥¹¥È¥¢¤ËÂФ¹¤ëÁàºî¤ò¹Ô¤¦¤¹¤Ù¤Æ¤Î¥³¥Þ¥ó¥É¤Ç»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++\-storetype storetype
++.LP
++¤³¤Î½¤¾þ»Ò¤Ï¡¢¥¤¥ó¥¹¥¿¥ó¥¹¤òÀ¸À®¤¹¤ë¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-keystore keystore
++.LP
++¥­¡¼¥¹¥È¥¢¤Î¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++ÆÃÄê¤Î\f3keytool\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ëºÝ¤Ë¡¢JKS¥¹¥È¥¢¥¿¥¤¥×¤¬»ÈÍѤµ¤ì¡¢¤«¤Ä¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤¬¤Þ¤À¸ºß¤·¤Æ¤¤¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¿·¤·¤¤¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2keytool \-genkeypair\fP¤Î¼Â¹Ô»þ¤Ë\f2\-keystore\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f2.keystore\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤¬¥æ¡¼¥¶¡¼¤Î¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë¤Þ¤À¸ºß¤·¤Æ¤¤¤Ê¤±¤ì¤Ð¡¢¤½¤³¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£Æ±Íͤˡ¢\f2\-keystore \fP\f2ks_file\fP¤È¤¤¤¦¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤â¤½¤Î\f2ks_file\fP¤¬Â¸ºß¤·¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++\f2\-keystore\fP¥ª¥×¥·¥ç¥ó¤«¤é¤ÎÆþÎÏ¥¹¥È¥ê¡¼¥à¤Ï¡¢\f2KeyStore.load\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤Þ¤¹¡£URL¤È¤·¤Æ\f2NONE\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢null¤Î¥¹¥È¥ê¡¼¥à¤¬\f2KeyStore.load\fP¥á¥½¥Ã¥É¤ËÅϤµ¤ì¤Þ¤¹¡£\f2NONE\fP¤Ï¡¢\f2KeyStore\fP¤¬¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹¤Ç¤Ï¤Ê¤¯¡¢¤¿¤È¤¨¤Ð¡¢¥Ï¡¼¥É¥¦¥§¥¢¡¦¥È¡¼¥¯¥ó¡¦¥Ç¥Ð¥¤¥¹¤ËÃÖ¤«¤ì¤Æ¤¤¤ë¾ì¹ç¤Ë»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-storepass[:env|:file] argument
++.LP
++¥­¡¼¥¹¥È¥¢¤ÎÀ°¹çÀ­¤òÊݸ¤ë¤¿¤á¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++½¤¾þ»Ò\f2env\fP¤Þ¤¿¤Ï\f2file\fP¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÃͤÏ\f2argument\fP¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤ÎÃͤϡ¢6ʸ»ú°Ê¾å¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢¥Ñ¥¹¥ï¡¼¥É¤Ï¼¡¤Î¤è¤¦¤Ë¤·¤Æ¼èÆÀ¤µ¤ì¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f2env\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î´Ä¶­ÊÑ¿ô¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.TP 2
++o
++\f2file\fP: \f2argument\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤«¤é¥Ñ¥¹¥ï¡¼¥É¤ò¼èÆÀ¤·¤Þ¤¹¡£
++.RE
++.LP
++\f3Ãí°Õ\fP: \f2\-keypass\fP¡¢\f2\-srckeypass\fP¡¢\f2\-destkeypass\fP¡¢\f2\-srcstorepass\fP¡¢\f2\-deststorepass\fP¤Ê¤É¤Î¥Ñ¥¹¥ï¡¼¥É¤òɬÍפȤ¹¤ë¤½¤Î¾¤Î¥ª¥×¥·¥ç¥ó¤Ï¤¹¤Ù¤Æ¡¢\f2env\fP¤È\f2file\fP½¤¾þ»Ò¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£¥Ñ¥¹¥ï¡¼¥É¡¦¥ª¥×¥·¥ç¥ó¤È½¤¾þ»Ò¤Ï¡¢É¬¤º¥³¥í¥ó(\f2:\fP)¤Ç¶èÀڤäƤ¯¤À¤µ¤¤¡£
++.LP
++¥Ñ¥¹¥ï¡¼¥É¤Ï¡¢¥­¡¼¥¹¥È¥¢¤ÎÆâÍƤ˥¢¥¯¥»¥¹¤¹¤ë¤¹¤Ù¤Æ¤Î¥³¥Þ¥ó¥É¤Ç»ÈÍѤµ¤ì¤Þ¤¹¡£¤³¤Î¼ï¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-storepass\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++¥­¡¼¥¹¥È¥¢¤«¤é¾ðÊó¤ò¼è¤ê½Ð¤¹¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ò¾Êά¤Ç¤­¤Þ¤¹¡£¥Ñ¥¹¥ï¡¼¥É¤ò¾Êά¤¹¤ë¤È¡¢¼è¤ê½Ð¤¹¾ðÊó¤ÎÀ°¹çÀ­¤ò¥Á¥§¥Ã¥¯¤Ç¤­¤Ê¤¤¤Î¤Ç¡¢·Ù¹ð¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-providerName provider_name
++.LP
++¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤Ë´Þ¤Þ¤ì¤ë°Å¹æ²½¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À̾¤òÆÃÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-providerClass provider_class_name
++.LP
++°Å¹æ²½¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¤¬¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤È¤­¤Ï¡¢¤½¤Î¥Þ¥¹¥¿¡¼¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò»ØÄꤹ¤ë¤È¤­¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-providerArg provider_arg
++.LP
++\f2\-providerClass\fP¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹¡£\f2provider_class_name\fP¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¤ËÂФ¹¤ë¾Êά²Äǽ¤Êʸ»úÎóÆþÎÏ°ú¿ô¤òɽ¤·¤Þ¤¹¡£
++.TP 3
++\-protected
++.LP
++\f2true\fP¤Þ¤¿¤Ï\f2false\fP¤Î¤¤¤º¤ì¤«¡£ÀìÍÑPIN¥ê¡¼¥À¡¼¤Ê¤É¤ÎÊݸ¤ì¤¿Ç§¾Ú¥Ñ¥¹¤ò²ð¤·¤Æ¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ë¤Ï¡¢¤³¤ÎÃͤË\f2true\fP¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++Ãí°Õ: \f2\-importkeystore\fP¥³¥Þ¥ó¥É¤Ë¤Ï2¤Ä¤Î¥­¡¼¥¹¥È¥¢¤¬´Ø·¸¤·¤Æ¤¤¤ë¤¿¤á¡¢2¤Ä¤Î¥ª¥×¥·¥ç¥ó¡¢¤Ä¤Þ¤ê\f2\-srcprotected\fP¤È\f2\-destprotected\fP¤¬¥½¡¼¥¹¡¦¥­¡¼¥¹¥È¥¢¤È¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ë¤½¤ì¤¾¤ì»ØÄꤵ¤ì¤Þ¤¹¡£
++.TP 3
++\-ext {name{:critical}{=value}}
++.LP
++X.509¾ÚÌÀ½ñ¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ò¼¨¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò\-genkeypair¤ª¤è¤Ó\-gencert¤Ç»ÈÍѤ·¤Æ¡¢À¸À®¤µ¤ì¤ë¾ÚÌÀ½ñ¤Þ¤¿¤Ï\f2\-certreq\fP¤Ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤òËä¤á¹þ¤ß¡¢¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¤Ç¥ê¥¯¥¨¥¹¥È¤µ¤ì¤ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ò¼¨¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢Ê£¿ô²ó»ÈÍѤǤ­¤Þ¤¹¡£name¤Ë¤Ï¡¢¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó̾(²¼µ­¤ò»²¾È)¤Þ¤¿¤ÏǤ°Õ¤ÎOIDÈÖ¹æ¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£value¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Î¥Ñ¥é¥á¡¼¥¿¤ò¼¨¤·¤Þ¤¹¡£¾Êά¤·¤¿¾ì¹ç¤Ï¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃÍ(ÄêµÁ¤µ¤ì¤Æ¤¤¤ë¾ì¹ç)¤ò¼¨¤¹¤«¡¢¤Þ¤¿¤Ï¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ë¥Ñ¥é¥á¡¼¥¿¤ÏɬÍפ¢¤ê¤Þ¤»¤ó¡£\f2:critical\fP½¤¾þ»Ò¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ÎisCritical°À­¤¬true¤Ç¤¢¤ë¤³¤È¤ò¼¨¤·¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ïfalse¤Ç¤¢¤ë¤³¤È¤ò¼¨¤·¤Þ¤¹¡£\f2:critical\fP¤Î¤«¤ï¤ê¤Ë\f2:c\fP¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++¸½ºß¡¢keytool¤Ï¼¡¤Î̾Á°¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹(Âçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó)¡£
++.LP
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 80
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++BC¤Þ¤¿¤ÏBasicConstraints
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++´°Á´¤Ê·Á¤Ï¡Öca:{true|false}[,pathlen:<len>]¡×¤Ç¡¢<len>¤Ï¡Öca:true,pathlen:<len>¡×¤Î¾Êάɽµ­¤Ç¤¹¡£
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++usage(,usage)*¡£usage¤Ë¤Ï¡¢digitalSignature¡¢ nonRepudiation (contentCommitment)¡¢keyEncipherment¡¢dataEncipherment¡¢keyAgreement¡¢keyCertSign¡¢cRLSign¡¢encipherOnly¡¢decipherOnly¤Î¤¤¤º¤ì¤«¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£Usage¤Ï¡¢¤¢¤¤¤Þ¤¤¤µ¤¬¤Ê¤±¤ì¤Ð¡¢ºÇ½é¤Î¿ôʸ»ú(¤¿¤È¤¨¤Ð¡¢digitalSignature¤òdig¤Ë)¤Þ¤¿¤Ï¥­¥ã¥á¥ë¥±¡¼¥¹¡¦¥¹¥¿¥¤¥ë¤Ë(¤¿¤È¤¨¤Ð¡¢ û½Ì¤Ç¤­¤Þ¤¹¡£Usage¤ÎÂçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó¡£
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++EKU¤Þ¤¿¤ÏExtendedkeyUsage
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++usage(,usage)*¡£usage¤Ë¤Ï¡¢anyExtendedKeyUsage¡¢ serverAuth¡¢clientAuth¡¢codeSigning¡¢emailProtection¡¢ timeStamping¡¢OCSPSigning¡¢¤Þ¤¿¤ÏǤ°Õ¤ÎOIDʸ»úÎó¤Î¤¤¤º¤ì¤«¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£ ̾Á°ÉÕ¤­¤Îusage¤Ï¡¢¤¢¤¤¤Þ¤¤¤µ¤¬¤Ê¤±¤ì¤Ð¡¢ ºÇ½é¤Î¿ôʸ»ú¤Þ¤¿¤Ï¥­¥ã¥á¥ë¥±¡¼¥¹¡¦¥¹¥¿¥¤¥ë¤Ë û½Ì¤Ç¤­¤Þ¤¹¡£Usage¤ÎÂçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó¡£
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++SAN¤Þ¤¿¤ÏSubjectAlternativeName
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++type:value(,type:value)*¡£type¤Ë¤Ï¡¢EMAIL¡¢URI¡¢DNS¡¢IP¤Þ¤¿¤ÏOID¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£value¤Ï¡¢type¤Îʸ»úÎó·Á¼°¤ÎÃͤǤ¹¡£
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++IAN¤Þ¤¿¤ÏIssuerAlternativeName
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SubjectAlternativeName¤ÈƱ¤¸¤Ç¤¹
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++SIA¤Þ¤¿¤ÏSubjectInfoAccess
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++method:location\-type:location\-value (,method:location\-type:location\-value)*¡£ method¤Ë¤Ï¡¢¡ÖtimeStamping¡×¡¢¡ÖcaRepository¡×¡¢¤Þ¤¿¤ÏǤ°Õ¤ÎOID¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£location\-type¤ª¤è¤Ólocation\-value¤Ë¤Ï¡¢SubjectAlternativeName¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëǤ°Õ¤Îtype:value¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++AIA¤Þ¤¿¤ÏAuthorityInfoAccess
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++SubjectInfoAccess¤ÈƱ¤¸¤Ç¤¹¡£method¤Ë¤Ï¡¢¡Öocsp¡×¡¢¡ÖcaIssuers¡×¡¢¤Þ¤¿¤ÏǤ°Õ¤ÎOID¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3̾Á°\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \wKU¤Þ¤¿¤ÏKeyUsage
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 38 \n(a-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(d-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(f-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(h-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(j-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(l-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.nr 38 \w\f3ÃÍ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(m-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 325 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3̾Á°\fP\h'|\n(41u'\f3ÃÍ\fP
++.ne \n(a|u+\n(.Vu
++.ne \n(b|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'KU¤Þ¤¿¤ÏKeyUsage\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.ne \n(e|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.ne \n(g|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.ne \n(i|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.ne \n(k|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.ne \n(m|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-44
++
++.LP
++.LP
++OID̾¤Î¾ì¹ç¡¢OCTET STRING¥¿¥¤¥×¤ÈŤµ¤Î¥Ð¥¤¥È¤ò½ü³°¤·¤¿¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ë¤Ä¤¤¤Æ¤Ï¡¢ÃͤÏextnValue¤ÎHEX¥À¥ó¥×¤ÎDER¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ç¤¹¡£HEXʸ»úÎó¤Ç¤Ï¡¢É¸½à¤ÎHEX¿ô(0\-9¡¢a\-f¡¢A\-F)°Ê³°¤Îʸ»ú¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2¡Ö01:02:03:04¡×\fP¤È\f2¡Ö01020304¡×\fP¤ÎξÊý¤È¤âƱ°ì¤ÎÃͤȤ·¤Æ¼õ¤±ÉÕ¤±¤é¤ì¤Þ¤¹¡£Ãͤ¬¤Ê¤¤¾ì¹ç¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ÎÃÍ¥Õ¥£¡¼¥ë¥É¤Ï¶õ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2\-gencert\fP¤Ç¤Î¤ß»ÈÍѤ¹¤ë\f2¡Öhonored¡×\fP¤È¤¤¤¦ÆÃÊ̤Ê̾Á°¤Ï¡¢¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¤Ë´Þ¤Þ¤ì¤ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤òÍ¥À褹¤ëÊýË¡¤ò¼¨¤·¤Þ¤¹¡£¤³¤Î̾Á°¤ÎÃͤϡ¢\f2¡Öall¡×\fP(¥ê¥¯¥¨¥¹¥È¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤¬Í¥À褵¤ì¤ë)¡¢\f2¡Öname{:[critical|non\-critical]}¡×\fP(̾Á°ÉÕ¤­¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤¬Í¥À褵¤ì¤ë¤¬¡¢Ê̤ÎisCritical°À­¤ò»ÈÍѤ¹¤ë)¡¢¤ª¤è¤Ó\f2¡Ö\-name¡×\fP(¡Öall¡×¤È¤È¤â¤Ë»ÈÍѤ·¡¢Îã³°¤ò¼¨¤¹)¤Î¥«¥ó¥Þ¶èÀÚ¤ê¥ê¥¹¥È¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥ê¥¯¥¨¥¹¥È¤µ¤ì¤ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ÏÍ¥À褵¤ì¤Þ¤»¤ó¡£
++.LP
++.LP
++\-extÍ¥Àè¤Î¥ª¥×¥·¥ç¥ó¤Ë²Ã¤¨¡¢Ê̤Î̾Á°¤Î¡¢¤Þ¤¿¤ÏOID \-ext¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢¤³¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤¬¡¢¤¹¤Ç¤ËÍ¥À褵¤ì¤Æ¤¤¤ë¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ËÄɲ䵤ì¤Þ¤¹¡£¤¿¤À¤·¡¢¤³¤Î̾Á°(¤Þ¤¿¤ÏOID)¤òÍ¥À褵¤ì¤ëÃͤǤâ»ÈÍѤ·¤¿¾ì¹ç¤Ï¡¢¤½¤ÎÃͤȽÅÍ×À­¤¬¥ê¥¯¥¨¥¹¥È¤Ë´Þ¤Þ¤ì¤ë¤â¤Î¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.LP
++.LP
++subjectKeyIdentifier¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ï¾ï¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£¼«¸Ê½ð̾¤Ç¤Ê¤¤¾ÚÌÀ½ñ¤Î¾ì¹ç¤Ï¡¢authorityKeyIdentifier¤¬¾ï¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f3Ãí°Õ:\fP ¥æ¡¼¥¶¡¼¤Ï¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó(¤ª¤è¤Ó¾ÚÌÀ½ñ¤Î¾¤Î¥Õ¥£¡¼¥ë¥É)¤ÎÁȹ礻¤Ë¤è¤Ã¤Æ¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥È¤Îɸ½à¤Ë½àµò¤·¤Ê¤¤¾ì¹ç¤¬¤¢¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¾ÜºÙ¤Ï¡¢¾ÚÌÀ½ñ¤Î½àµò¤Ë´Ø¤¹¤ëÃí°Õ»ö¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥³¥Þ¥ó¥É"
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤Ø¤Î¥Ç¡¼¥¿¤ÎºîÀ®¤Þ¤¿¤ÏÄɲÃ
++.LP
++.RS 3
++.TP 3
++\-gencert {\-rfc} {\-infile infile} {\-outfile outfile} {\-alias alias} {\-sigalg sigalg} {\-dname dname} {\-startdate startdate {\-ext ext}* {\-validity valDays} [\-keypass keypass] {\-keystore keystore} [\-storepass storepass] {\-storetype storetype} {\-providername provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¡¦¥Õ¥¡¥¤¥ë(\f2keytool \-certreq\fP¥³¥Þ¥ó¥É¤ÇºîÀ®²Äǽ)¤ËÂФ¹¤ë¥ì¥¹¥Ý¥ó¥¹¤È¤·¤Æ¾ÚÌÀ½ñ¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢\f2infile\fP¤«¤é(¾Êά¤·¤¿¾ì¹ç¤Ï¡¢É¸½àÆþÎϤ«¤é)¥ê¥¯¥¨¥¹¥È¤òÆɤ߹þ¤ß¡¢ÊÌ̾¤ÎÈëÌ©¸°¤ò»ÈÍѤ·¤Æ¤½¤Î¥ê¥¯¥¨¥¹¥È¤Ë½ð̾¤·¤Æ¡¢X.509¾ÚÌÀ½ñ¤ò\f2outfile\fP¤Ë(¾Êά¤·¤¿¾ì¹ç¤Ï¡¢É¸½à½ÐÎϤË)½ÐÎϤ·¤Þ¤¹¡£\f2\-rfc\fP¤ò»ØÄꤷ¤¿¾ì¹ç¡¢½ÐÎÏ·Á¼°¤ÏBASE64Éä¹æ²½¤ÎPEM¤Ë¤Ê¤ê¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¥Ð¥¤¥Ê¥êDER¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++\f2sigalg\fP¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ë»ÈÍѤ¹¤ë¥¢¥ë¥´¥ê¥º¥à¤ò»ØÄꤷ¤Þ¤¹¡£\f2startdate\fP¤Ï¡¢¾ÚÌÀ½ñ¤¬Í­¸ú¤Ë¤Ê¤ë³«»Ï»þ¹ï/ÆüÉդǤ¹¡£\f2valDays\fP¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤ÎÍ­¸úÆü¿ô¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++\f2dname\fP¤ò»ØÄꤹ¤ë¤È¡¢À¸À®¤µ¤ì¤ë¾ÚÌÀ½ñ¤Î¼çÂΤȤ·¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¤«¤é¤Î̾Á°¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.LP
++\f2ext\fP¤Ï¡¢¾ÚÌÀ½ñ¤ËËä¤á¹þ¤Þ¤ì¤ëX.509¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ò¼¨¤·¤Þ¤¹¡£\f2\-ext\fP¤Î¹½Ê¸¤Ë¤Ä¤¤¤Æ¤Ï¡¢°ìÈÌ¥ª¥×¥·¥ç¥ó¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++\f2\-gencert\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤È¡¢¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤òºîÀ®¤Ç¤­¤Þ¤¹¡£¼¡¤ÎÎã¤Ç¤Ï¡¢\f2e1\fP¤È¤¤¤¦¾ÚÌÀ½ñ¤òºîÀ®¤·¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ë¤Ï¡¢3¤Ä¤Î¾ÚÌÀ½ñ¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢\f2ca\fP¡¢\f2ca1\fP¡¢\f2ca2\fP¤ª¤è¤Ó\f2e1\fP¤Î4¤Ä¤Î¸°¥Ú¥¢¤òºîÀ®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++keytool \-alias ca \-dname CN=CA \-genkeypair
++.fl
++keytool \-alias ca1 \-dname CN=CA \-genkeypair
++.fl
++keytool \-alias ca2 \-dname CN=CA \-genkeypair
++.fl
++keytool \-alias e1 \-dname CN=E1 \-genkeypair
++.fl
++\fP
++.fi
++.LP
++¼¡¤Î2¤Ä¤Î¥³¥Þ¥ó¥É¤Ï¡¢½ð̾ÉÕ¤­¾ÚÌÀ½ñ¤Î¥Á¥§¡¼¥ó¤òºîÀ®¤·¤Þ¤¹¡£\f2ca\fP¤Ïca1¤Ë½ð̾¤·¡¢\f2ca1\fP¤Ïca2¤Ë½ð̾¤·¤Þ¤¹¡£¤¹¤Ù¤Æ¼«¸Êȯ¹Ô¤Ç¤¹¡£
++.nf
++\f3
++.fl
++keytool \-alias ca1 \-certreq | keytool \-alias ca \-gencert \-ext san=dns:ca1 | keytool \-alias ca1 \-importcert
++.fl
++keytool \-alias ca2 \-certreq | $KT \-alias ca1 \-gencert \-ext san=dns:ca2 | $KT \-alias ca2 \-importcert
++.fl
++\fP
++.fi
++.LP
++¼¡¤Î¥³¥Þ¥ó¥É¤Ï¡¢¾ÚÌÀ½ñ\f2e1\fP¤òºîÀ®¤·¤Æ¥Õ¥¡¥¤¥ë\f2e1.cert\fP¤Ë³ÊǼ¤·¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤Ï\f2ca2\fP¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¤Þ¤¹¡£¤½¤Î·ë²Ì¡¢\f2e1\fP¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ë¤Ï\f2ca\fP¡¢\f2ca1\fP¤ª¤è¤Ó\f2ca2\fP¤¬´Þ¤Þ¤ì¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++keytool \-alias e1 \-certreq | keytool \-alias ca2 \-gencert > e1.cert
++.fl
++\fP
++.fi
++.TP 3
++\-genkeypair {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} {\-sigalg sigalg} [\-dname dname] [\-keypass keypass] {\-startdate value} {\-ext ext}* {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++¸°¤Î¥Ú¥¢(¸ø³«¸°¤ª¤è¤Ó´ØÏ¢¤¹¤ëÈëÌ©¸°)¤òÀ¸À®¤·¤Þ¤¹¡£¸ø³«¸°¤ÏX.509 v3¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ç¥é¥Ã¥×¤µ¤ì¤Þ¤¹¡£¾ÚÌÀ½ñ¤Ï¡¢Ã±°ì¤ÎÍ×ÁǤò»ý¤Ä¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤È¤·¤Æ³ÊǼ¤µ¤ì¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÈÈëÌ©¸°¤Ï¡¢\f2alias\fP¤ÇÆÃÄꤵ¤ì¤ë¿·¤·¤¤¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£
++.LP
++\f2keyalg\fP¤Ï¸°¤Î¥Ú¥¢¤ÎÀ¸À®¤Ë»ÈÍѤ¹¤ë¥¢¥ë¥´¥ê¥º¥à¤ò¡¢\f2keysize\fP¤ÏÀ¸À®¤¹¤ë³Æ¸°¤Î¥µ¥¤¥º¤ò¡¢¤½¤ì¤¾¤ì»ØÄꤷ¤Þ¤¹¡£\f2sigalg\fP¤Ë¤Ï¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ë»ÈÍѤ¹¤ë¥¢¥ë¥´¥ê¥º¥à¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥¢¥ë¥´¥ê¥º¥à¤Ï¡¢\f2keyalg\fP¤È¸ß´¹¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++\f2dname\fP¤Ë¤Ï¡¢\f2alias\fP¤Ë´ØÏ¢ÉÕ¤±¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Î\f2issuer\fP¥Õ¥£¡¼¥ë¥É¤È\f2subject\fP¥Õ¥£¡¼¥ë¥É¤È¤·¤Æ»ÈÍѤ¹¤ëX.500 ¼±ÊÌ̾¤ò»ØÄꤷ¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¼±ÊÌ̾¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¼±ÊÌ̾¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++\f2keypass\fP¤Ë¤Ï¡¢À¸À®¤µ¤ì¤ë¸°¤Î¥Ú¥¢¤Î¤¦¤Á¡¢ÈëÌ©¸°¤òÊݸ¤ë¤Î¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Þ¤¹¡£¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¤³¤Î¤È¤­¡¢[Return]¥­¡¼¤ò²¡¤¹¤È¡¢¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ÈƱ¤¸¥Ñ¥¹¥ï¡¼¥É¤¬¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f2keypass\fP¤Ï¡¢6ʸ»ú°Ê¾å¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++\f2startdate\fP¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤Îȯ¹Ô»þ¹ï¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤ì¤Ï¡¢X.509¾ÚÌÀ½ñ¤Î¡ÖValidity¡×¥Õ¥£¡¼¥ë¥É¤Î¡ÖNot Before¡×ÃͤȤâ¸Æ¤Ð¤ì¤Þ¤¹¡£
++.LP
++¥ª¥×¥·¥ç¥ó¤ÎÃͤϡ¢¼¡¤Î2¤Ä¤Î·Á¼°¤Î¤¤¤º¤ì¤«¤ÇÀßÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.
++([+\-]\f2nnn\fP[ymdHMS])+
++.TP 3
++2.
++[yyyy/mm/dd] [HH:MM:SS]
++.RE
++.LP
++ºÇ½é¤Î·Á¼°¤Ç¤Ï¡¢È¯¹Ô»þ¹ï¤Ï¡¢»ØÄꤵ¤ì¤ëÃͤÎʬ¡¢¸½ºß¤Î»þ¹ï¤«¤é°Ü¤ê¤Þ¤¹¡£»ØÄꤵ¤ì¤ëÃͤϡ¢°ìÏ¢¤Î²¼°Ì¤ÎÃͤòÏ¢·ë¤·¤¿¤â¤Î¤Ë¤Ê¤ê¤Þ¤¹¡£²¼°Ì¤Î³ÆÃͤǡ¢¥×¥é¥¹µ­¹æ(¡Ö+¡×)¤Ï»þ´Ö¤¬¿Ê¤à¤³¤È¤ò¡¢¥Þ¥¤¥Ê¥¹µ­¹æ(¡Ö\-¡×)¤Ï»þ´Ö¤¬Ìá¤ë¤³¤È¤ò°ÕÌ£¤·¤Æ¤¤¤Þ¤¹¡£°Ü¤ë»þ´Ö¤Ï\f2nnn\fP¤Ç¡¢Ã±°Ì¤Ïǯ¡¢·î¡¢Æü¡¢»þ´Ö¡¢Ê¬¤Þ¤¿¤ÏÉäǤ¹(¤½¤ì¤¾¤ì¡¢1ʸ»ú¤Î¡Öy¡×¡¢¡Öm¡×¡¢¡Öd¡×¡¢¡ÖH¡×¡¢¡ÖM¡×¤Þ¤¿¤Ï¡ÖS¡×¤Ç¼¨¤µ¤ì¤Æ¤¤¤Þ¤¹)¡£²¼°Ì¤Î³ÆÃͤÇ\f2java.util.GregorianCalendar.add(int field,int amount)\fP¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ë¤³¤È¤Ç¡¢È¯¹Ô»þ¹ï¤ÎÄɲäÎÃͤ¬º¸¤«¤é±¦¤Ø·×»»¤µ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2¡Ö\-startdate \-1y+1m\-1d¡×\fP¤È»ØÄꤹ¤ë¤È¡¢³«»Ï»þ¹ï¤Ï¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ Calendar c = new GregorianCalendar();
++.fl
++ c.add(Calendar.YEAR, \-1);
++.fl
++ c.add(Calendar.MONTH, 1);
++.fl
++ c.add(Calendar.DATE, \-1);
++.fl
++ return c.getTime()
++.fl
++\fP
++.fi
++.LP
++2ÈÖÌܤηÁ¼°¤Ç¤Ï¡¢¥æ¡¼¥¶¡¼¤Ï¡¢Ç¯/·î/Æü¤È»þ´Ö:ʬ:ÉäÎ2¤Ä¤ÎÉôʬ¤Ç¸·Ì©¤Ê³«»Ï»þ¹ï¤òÀßÄꤷ¤Þ¤¹(Ãϸµ¤Î»þ´ÖÂÓ¤ò»ÈÍÑ)¡£¥æ¡¼¥¶¡¼¤Ï¡¢1¤Ä¤ÎÉôʬ¤Î¤ß¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤³¤ì¤Ï¡¢¤â¤¦1¤Ä¤ÎÉôʬ¤Ï¸½ºß¤ÎÆüÉÕ(¤Þ¤¿¤Ï»þ¹ï)¤ÈƱ¤¸¤Ë¤Ê¤ë¤È¤¤¤¦¤³¤È¤Ç¤¹¡£¥æ¡¼¥¶¡¼¤Ï¡¢·Á¼°¤ÎÄêµÁ¤Ë¼¨¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ë¡¢·å¿ô¤ò¸·Ì©¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹(û¤¤¾ì¹ç¤Ï0¤ÇËä¤á¤Þ¤¹)¡£ÆüÉդȻþ¹ï¤ÎξÊý¤¬»ØÄꤵ¤ì¤¿¾õÂ֤ǡ¢2¤Ä¤ÎÉôʬ¤Î´Ö¤Ë¶õÇòʸ»ú¤¬1¤Ä(1¤Ä¤Î¤ß)¤¢¤ê¤Þ¤¹¡£»þ´Ö¤Ï¾ï¤Ë24»þ´Ö·Á¼°¤Ç»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤È¡¢³«»ÏÆüÉդϸ½ºß¤Î»þ¹ï¤Ë¤Ê¤ê¤Þ¤¹¡£¥ª¥×¥·¥ç¥ó¤Ï¡¢ºÇÂç¤Ç1²ó»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++\f2valDays\fP¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤ÎÍ­¸úÆü¿ô¤ò»ØÄꤷ¤Þ¤¹(\f2\-startdate\fP¤Ç»ØÄꤵ¤ì¤¿ÆüÉÕ¡¢¤Þ¤¿¤Ï\f2\-startdate\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¸½ºß¤ÎÆüÉÕ¤«¤é»Ï¤Þ¤ê¤Þ¤¹)¡£
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï\f2\-genkey\fP¤È¤¤¤¦Ì¾Á°¤Ç¤·¤¿¡£¤³¤Î¸Å¤¤Ì¾Á°¤Ï¡¢¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤â°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤ª¤ê¡¢º£¸å¤Î¥ê¥ê¡¼¥¹¤Ç¤â¥µ¥Ý¡¼¥È¤µ¤ì¤ëͽÄê¤Ç¤¹¡£¤¿¤À¤·¡¢º£¸å¤Ï¤ï¤«¤ê¤ä¤¹¤¤¤è¤¦¤Ë¡¢¿·¤·¤¤Ì¾Á°\f2\-genkeypair\fP¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.TP 3
++\-genseckey {\-aliasalias} {\-keyalgkeyalg} {\-keysizekeysize} [\-keypasskeypass] {\-storetypestoretype} {\-keystorekeystore} [\-storepassstorepass] {\-providerClassprovider_class_name {\-providerArgprovider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++ÈëÌ©¸°¤òÀ¸À®¤·¡¢¤½¤ì¤ò¿·¤·¤¤\f2KeyStore.SecretKeyEntry\fP(\f2alias\fP¤ÇÆÃÄꤵ¤ì¤ë)Æâ¤Ë³ÊǼ¤·¤Þ¤¹¡£
++.LP
++\f2keyalg\fP¤ÏÈëÌ©¸°¤ÎÀ¸À®¤Ë»ÈÍѤ¹¤ë¥¢¥ë¥´¥ê¥º¥à¤ò¡¢\f2keysize\fP¤ÏÀ¸À®¤¹¤ë¸°¤Î¥µ¥¤¥º¤ò¡¢¤½¤ì¤¾¤ì»ØÄꤷ¤Þ¤¹¡£\f2keypass\fP¤ÏÈëÌ©¸°¤ÎÊݸî¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤Ç¤¹¡£¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¤³¤Î¤È¤­¡¢[Return]¥­¡¼¤ò²¡¤¹¤È¡¢¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ÈƱ¤¸¥Ñ¥¹¥ï¡¼¥É¤¬¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f2keypass\fP¤Ï¡¢6ʸ»ú°Ê¾å¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-importcert {\-alias alias} {\-file cert_file} [\-keypass keypass] {\-noprompt} {\-trustcacerts} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++¥Õ¥¡¥¤¥ë\f2cert_file\fP¤«¤é¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó(¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Î¾ì¹ç¤Ï¡¢PKCS#7·Á¼°¤Î±þÅú¤Þ¤¿¤Ï°ìÏ¢¤ÎX.509¾ÚÌÀ½ñ¤ÇÄ󶡤µ¤ì¤ë¤â¤Î)¤òÆɤ߹þ¤ß¡¢\f2alias\fP¤Ë¤è¤Ã¤ÆÆÃÄꤵ¤ì¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤Ë³ÊǼ¤·¤Þ¤¹¡£¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢É¸½àÆþÎϤ«¤é¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤òÆɤ߹þ¤ß¤Þ¤¹¡£
++.LP
++\f3keytool\fP¤Ç¤Ï¡¢X.509 v1¡¢v2¡¢v3¤Î¾ÚÌÀ½ñ¡¢¤ª¤è¤ÓPKCS#7·Á¼°¤Î¾ÚÌÀ½ñ¤«¤é¹½À®¤µ¤ì¤Æ¤¤¤ëPKCS#7·Á¼°¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤Þ¤¹¡£¥¤¥ó¥Ý¡¼¥È¤¹¤ë¥Ç¡¼¥¿¤Ï¡¢¥Ð¥¤¥Ê¥êÉä¹æ²½Êý¼°¡¢¤Þ¤¿¤Ï½ÐÎϲÄǽÉä¹æ²½Êý¼°(Base64Éä¹æ²½¤È¤â¸Æ¤Ð¤ì¤ë)¤Î¤É¤Á¤é¤«¤ÇÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421¾ÚÌÀ½ñÉä¹æ²½µ¬³Ê¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤ÎÉä¹æ²½Êý¼°¤Î¾ì¹ç¡¢¾ÚÌÀ½ñ¤Ï¡Ö\-\-\-\-\-BEGIN¡×¤Ç»Ï¤Þ¤ëʸ»úÎó¤Ç³«»Ï¤µ¤ì¡¢¡Ö\-\-\-\-\-END¡×¤Ç»Ï¤Þ¤ëʸ»úÎó¤Ç½ªÎ»¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È¤Ë¤Ï¡¢¼¡¤Î2¤Ä¤ÎÌÜŪ¤¬¤¢¤ê¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.
++¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥ê¥¹¥È¤Ë¾ÚÌÀ½ñ¤òÄɲä·¤Þ¤¹¡£
++.TP 3
++2.
++CA¤Ë¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È(\-certreq¥³¥Þ¥ó¥É¤ò»²¾È)¤òÁ÷¿®¤·¤¿·ë²Ì¤È¤·¤Æ¡¢CA¤«¤é¼õ¤±¼è¤Ã¤¿¾ÚÌÀ±þÅú¤ò¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.RE
++.LP
++¤É¤Á¤é¤Î¥¿¥¤¥×¤Î¥¤¥ó¥Ý¡¼¥È¤ò¹Ô¤¦¤«¤Ï¡¢\f2\-alias\fP¥ª¥×¥·¥ç¥ó¤ÎÃͤˤè¤Ã¤Æ»ØÄꤷ¤Þ¤¹¡£
++.RS 3
++.TP 3
++1.
++\f3ÊÌ̾¤¬¥­¡¼¡¦¥¨¥ó¥È¥ê¤ò¥Ý¥¤¥ó¥È¤·¤Ê¤¤¾ì¹ç\fP¡¢\f3keytool\fP¤Ï¥æ¡¼¥¶¡¼¤¬¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¥¨¥ó¥È¥ê¤òÄɲ䷤褦¤È¤·¤Æ¤¤¤ë¤â¤Î¤È¸«¤Ê¤·¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢ÊÌ̾¤¬¥­¡¼¥¹¥È¥¢Æâ¤Ë¸ºß¤·¤Æ¤¤¤Ê¤¤¤³¤È¤¬É¬ÍפǤ¹¡£ÊÌ̾¤¬¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤ë¾ì¹ç¡¢¤½¤ÎÊÌ̾¤Î¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤¬¤¹¤Ç¤Ë¸ºß¤¹¤ë¤³¤È¤Ë¤Ê¤ë¤Î¤Ç¡¢\f3keytool\fP¤Ï¥¨¥é¡¼¤ò½ÐÎϤ·¡¢¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È¤ò¹Ô¤¤¤Þ¤»¤ó¡£
++.TP 3
++2.
++\f3ÊÌ̾¤¬¥­¡¼¡¦¥¨¥ó¥È¥ê¤ò¥Ý¥¤¥ó¥È¤¹¤ë¾ì¹ç\fP¡¢\f3keytool\fP¤Ï¥æ¡¼¥¶¡¼¤¬¾ÚÌÀ½ñ±þÅú¤ò¥¤¥ó¥Ý¡¼¥È¤·¤è¤¦¤È¤·¤Æ¤¤¤ë¤â¤Î¤È¸«¤Ê¤·¤Þ¤¹¡£
++.RE
++\f3¿·¤·¤¤¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È\fP
++.LP
++\f3keytool\fP¤Ï¡¢¥­¡¼¥¹¥È¥¢¤Ë¾ÚÌÀ½ñ¤òÄɲ乤ëÁ°¤Ë¡¢¥­¡¼¥¹¥È¥¢Æâ¤Ë¤¹¤Ç¤Ë¸ºß¤¹¤ë¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤ò»ÈÍѤ·¤Æ¡¢¥¤¥ó¥Ý¡¼¥È¤¹¤ë¾ÚÌÀ½ñ¤«¤é(¥ë¡¼¥ÈCA¤Î)¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ë»ê¤ë¤Þ¤Ç¤Î¿®Íê¤Î¥Á¥§¡¼¥ó¤Î¹½ÃÛ¤ò»î¤ß¤Þ¤¹¡£
++.LP
++\f2\-trustcacerts\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¡¢ÄɲäξÚÌÀ½ñ¤Ï¿®Íê¤Ç¤­¤ë¤¹¤Ê¤ï¤Ácacerts¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤ë¾ÚÌÀ½ñ¤Î¥Á¥§¡¼¥ó¤È¸«¤Ê¤µ¤ì¤Þ¤¹¡£
++.LP
++\f3keytool\fP¤¬¡¢¥¤¥ó¥Ý¡¼¥È¤¹¤ë¾ÚÌÀ½ñ¤«¤é¼«¸Ê½ð̾¾ÚÌÀ½ñ(¥­¡¼¥¹¥È¥¢¤Þ¤¿¤Ïcacerts¥Õ¥¡¥¤¥ë¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¼«¸Ê½ð̾¾ÚÌÀ½ñ)¤Ë»ê¤ë¤Þ¤Ç¤Î¿®Íê¤Î¥Ñ¥¹¤Î¹½Ãۤ˼ºÇÔ¤·¤¿¾ì¹ç¤Ï¡¢¥¤¥ó¥Ý¡¼¥È¤¹¤ë¾ÚÌÀ½ñ¤Î¾ðÊó¤òɽ¼¨¤·¡¢¥æ¡¼¥¶¡¼¤Ë³Îǧ¤òµá¤á¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï¡¢É½¼¨¤µ¤ì¤¿¾ÚÌÀ½ñ¤Î¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¡¢Â¾¤Î¤Ê¤ó¤é¤«¤Î(¿®Íê¤Ç¤­¤ë)¾ðÊó¸»(¾ÚÌÀ½ñ¤Î½êÍ­¼ÔËܿͤʤÉ)¤«¤éÆþ¼ê¤·¤¿¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¤òÈæ³Ó¤·¤Þ¤¹¡£¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤È¤·¤Æ¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤È¤­¤Ï¡¢¾ÚÌÀ½ñ¤¬Í­¸ú¤Ç¤¢¤ë¤³¤È¤ò¿µ½Å¤Ë³Îǧ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È¤Ë´Ø¤¹¤ëÃí°Õ»ö¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£¥¤¥ó¥Ý¡¼¥ÈÁàºî¤Ï¡¢¾ÚÌÀ½ñ¤ò³Îǧ¤¹¤ë»þÅÀ¤ÇÃæ»ß¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤È¤ÎÂÐÏäϹԤï¤ì¤Þ¤»¤ó¡£
++\f3¾ÚÌÀ½ñ±þÅú¤Î¥¤¥ó¥Ý¡¼¥È\fP
++.LP
++¡Ö¾ÚÌÀ±þÅú¡×¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤È¤­¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡¢¤ª¤è¤Ó(\f2\-trustcacerts\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï)cacerts¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤Ç¹½À®¤µ¤ì¤¿¾ÚÌÀ½ñ¤ò»ÈÍѤ·¤Æ¾ÚÌÀ±þÅú¤¬¸¡ºº¤µ¤ì¤Þ¤¹¡£
++.LP
++¾ÚÌÀ½ñ±þÅú¤¬¿®Íê¤Ç¤­¤ë¤«¤É¤¦¤«¤ò·èÄꤹ¤ëÊýË¡¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++\f3¾ÚÌÀ±þÅú¤¬Ã±°ì¤ÎX.509¾ÚÌÀ½ñ¤Ç¤¢¤ë¾ì¹ç\fP¡¢\f3keytool\fP¤Ï¡¢¾ÚÌÀ±þÅú¤«¤é(¥ë¡¼¥ÈCA¤Î)¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ë»ê¤ë¤Þ¤Ç¤Î¿®Íê¥Á¥§¡¼¥ó¤Î³ÎΩ¤ò»î¤ß¤Þ¤¹¡£¾ÚÌÀ±þÅú¤È¡¢¾ÚÌÀ±þÅú¤Îǧ¾Ú¤Ë»ÈÍѤµ¤ì¤ë¾ÚÌÀ½ñ¤Î³¬Áع½Â¤¤Ï¡¢\f2alias\fP¤Î¿·¤·¤¤¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò·ÁÀ®¤·¤Þ¤¹¡£¿®Íê¥Á¥§¡¼¥ó¤¬³ÎΩ¤µ¤ì¤Ê¤¤¾ì¹ç¡¢¾ÚÌÀ±þÅú¤Ï¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤Þ¤»¤ó¡£¤³¤Î¾ì¹ç¡¢\f3keytool\fP¤Ï¾ÚÌÀ½ñ¤ò½ÐÎϤ»¤º¡¢¥æ¡¼¥¶¡¼¤Ë¸¡¾Ú¤òµá¤á¤ë¥×¥í¥ó¥×¥È¤òɽ¼¨¤·¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤¬¾ÚÌÀ±þÅú¤Î¿®ÍêÀ­¤òȽÃǤ¹¤ë¤Î¤Ï¡¢ÉÔ²Äǽ¤Ç¤Ï¤Ê¤¯¤Æ¤âÈó¾ï¤Ëº¤Æñ¤À¤«¤é¤Ç¤¹¡£
++.TP 2
++o
++\f3¾ÚÌÀ±þÅú¤¬PKCS#7·Á¼°¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Þ¤¿¤Ï°ìÏ¢¤ÎX.509¾ÚÌÀ½ñ¤Ç¤¢¤ë¾ì¹ç\fP¡¢¥Á¥§¡¼¥ó¤Ï¡¢¥æ¡¼¥¶¡¼¤Î¾ÚÌÀ½ñ¤¬ºÇ½é¤Ë¡¢0°Ê¾å¤ÎCA¾ÚÌÀ½ñ¤¬¤½¤Î¼¡¤Ë¤¯¤ë¤è¤¦¤Ëʤ٤é¤ì¤Þ¤¹¡£¥Á¥§¡¼¥ó¤¬¼«¸Ê½ð̾¤Î¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤Ç½ª¤ï¤ê¡¢\f2\-trustcacerts\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f3keytool\fP¤Ï¡¢¤½¤Î¾ÚÌÀ½ñ¤È¡¢¥­¡¼¥¹¥È¥¢Æâ¤Þ¤¿¤Ï¡Öcacerts¡×¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¿®Íê¤Ç¤­¤ë¤¹¤Ù¤Æ¤Î¾ÚÌÀ½ñ¤ò¾È¹ç¤·¤è¤¦¤È¤·¤Þ¤¹¡£¥Á¥§¡¼¥ó¤¬¼«¸Ê½ð̾¤Î¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤Ç½ª¤ï¤Ã¤Æ¤ª¤é¤º¡¢\f2\-trustcacerts\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢\f3keytool\fP¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Þ¤¿¤Ï¡Öcacerts¡×¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤«¤é¼«¸Ê½ð̾¤Î¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤ò¸«¤Ä¤±¤Æ¤½¤ì¤ò¥Á¥§¡¼¥ó¤ÎËöÈø¤ËÄɲ䷤褦¤È¤·¤Þ¤¹¡£¤½¤Î¾ÚÌÀ½ñ¤¬¸«¤Ä¤«¤é¤º¡¢\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Á¥§¡¼¥óÆâ¤ÎºÇ¸å¤Î¾ÚÌÀ½ñ¤Î¾ðÊ󤬽ÐÎϤµ¤ì¡¢¥æ¡¼¥¶¡¼¤Ï³Îǧ¤òµá¤á¤é¤ì¤Þ¤¹¡£
++.RE
++.LP
++¾ÚÌÀ½ñ±þÅúÆâ¤Î¸ø³«¸°¤¬\f2alias\fP¤Î²¼¤Ë¤¹¤Ç¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë¥æ¡¼¥¶¡¼¤Î¸ø³«¸°¤Ë°ìÃפ·¤¿¾ì¹ç¡¢¸Å¤¤¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤¬±þÅúÆâ¤Î¿·¤·¤¤¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÇÃÖ¤­´¹¤¨¤é¤ì¤Þ¤¹¡£°ÊÁ°¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò¿·¤·¤¤¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÇÃÖ¤­´¹¤¨¤ë¤³¤È¤¬¤Ç¤­¤ë¤Î¤Ï¡¢Í­¸ú¤Ê\f2keypass\fP¡¢¤Ä¤Þ¤ê³ºÅö¤¹¤ë¥¨¥ó¥È¥ê¤ÎÈëÌ©¸°¤òÊݸ¤ë¤¿¤á¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤¿¾ì¹ç¤Î¤ß¤Ç¤¹¡£¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Æ¤ª¤é¤º¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤¬¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤È°Û¤Ê¤ë¾ì¹ç¤Ï¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï\f2\-import\fP¤È¤¤¤¦Ì¾Á°¤Ç¤·¤¿¡£¤³¤Î¸Å¤¤Ì¾Á°¤Ï¡¢¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤â°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤ª¤ê¡¢º£¸å¤Î¥ê¥ê¡¼¥¹¤Ç¤â¥µ¥Ý¡¼¥È¤µ¤ì¤ëͽÄê¤Ç¤¹¡£¤¿¤À¤·¡¢º£¸å¤Ï¤ï¤«¤ê¤ä¤¹¤¤¤è¤¦¤Ë¡¢¿·¤·¤¤Ì¾Á°\f2\-importcert\fP¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.TP 3
++\-importkeystore \-srckeystore srckeystore \-destkeystore destkeystore {\-srcstoretype srcstoretype} {\-deststoretype deststoretype} [\-srcstorepass srcstorepass] [\-deststorepass deststorepass] {\-srcprotected} {\-destprotected} {\-srcalias srcalias {\-destalias destalias} [\-srckeypass srckeypass] [\-destkeypass destkeypass] } {\-noprompt} {\-srcProviderName src_provider_name} {\-destProviderName dest_provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++¥½¡¼¥¹¡¦¥­¡¼¥¹¥È¥¢¤«¤é¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ø¡¢Ã±°ì¤Î¥¨¥ó¥È¥ê¤Þ¤¿¤Ï¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤ò¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹¡£
++.LP
++\f2srcalias\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤¿¾ì¹ç¡¢¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¤½¤ÎÊÌ̾¤ÇÆÃÄꤵ¤ì¤ëñ°ì¤Î¥¨¥ó¥È¥ê¤ò¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤·¤Þ¤¹¡£\f2destalias\fP·Ðͳ¤Ç¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f2srcalias\fP¤¬¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤È¤·¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£¥½¡¼¥¹¤Î¥¨¥ó¥È¥ê¤¬¥Ñ¥¹¥ï¡¼¥É¤ÇÊݸ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢\f2srckeypass\fP¤ò»ÈÍѤ·¤Æ¤½¤Î¥¨¥ó¥È¥ê¤¬²óÉü¤µ¤ì¤Þ¤¹¡£\f2srckeypass\fP¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f3keytool\fP¤Ï\f2srcstorepass\fP¤ò»ÈÍѤ·¤Æ¤½¤Î¥¨¥ó¥È¥ê¤ò²óÉü¤·¤è¤¦¤È¤·¤Þ¤¹¡£\f2srcstorepass\fP¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¤«Àµ¤·¤¯¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥È¡¦¥¨¥ó¥È¥ê¤Ï\f2destkeypass\fP¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Þ¤¹¡£\f2destkeypass\fP¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¥¿¡¼¥²¥Ã¥È¡¦¥¨¥ó¥È¥ê¤Ï¥½¡¼¥¹¡¦¥¨¥ó¥È¥ê¤Î¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Þ¤¹¡£
++.LP
++\f2srcalias\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¥½¡¼¥¹¡¦¥­¡¼¥¹¥È¥¢Æâ¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤¬¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢Æâ¤Ë¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£³Æ¥¿¡¼¥²¥Ã¥È¡¦¥¨¥ó¥È¥ê¤ÏÂбþ¤¹¤ë¥½¡¼¥¹¡¦¥¨¥ó¥È¥ê¤ÎÊÌ̾¤Î²¼¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£¥½¡¼¥¹¤Î¥¨¥ó¥È¥ê¤¬¥Ñ¥¹¥ï¡¼¥É¤ÇÊݸ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢\f2srcstorepass\fP¤ò»ÈÍѤ·¤Æ¤½¤Î¥¨¥ó¥È¥ê¤¬²óÉü¤µ¤ì¤Þ¤¹¡£\f2srcstorepass\fP¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¤«Àµ¤·¤¯¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¥½¡¼¥¹¡¦¥­¡¼¥¹¥È¥¢Æâ¤Î¤¢¤ë¥¨¥ó¥È¥ê¡¦¥¿¥¤¥×¤¬¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤ä¡¢¤¢¤ë¥¨¥ó¥È¥ê¤ò¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ë³ÊǼ¤¹¤ëºÝ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤¿¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤Ï¤½¤Î¥¨¥ó¥È¥ê¤ò¥¹¥­¥Ã¥×¤·¤Æ½èÍý¤ò³¹Ô¤¹¤ë¤«¡¢¤¢¤ë¤¤¤Ï½èÍý¤òÃæÃǤ¹¤ë¤«¤ÎÁªÂò¤òµá¤á¤é¤ì¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥È¡¦¥¨¥ó¥È¥ê¤Ï¥½¡¼¥¹¡¦¥¨¥ó¥È¥ê¤Î¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Þ¤¹¡£
++.LP
++¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤¬¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢Æâ¤Ë¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤¿¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤Ï¡¢¤½¤Î¥¨¥ó¥È¥ê¤ò¾å½ñ¤­¤¹¤ë¤«¡¢¤¢¤ë¤¤¤Ï°Û¤Ê¤ëÊÌ̾¤Î²¼¤Ç¿·¤·¤¤¥¨¥ó¥È¥ê¤òºîÀ®¤¹¤ë¤«¤ÎÁªÂò¤òµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++\f2\-noprompt\fP¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤Ï¿·¤·¤¤¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤»¤ó¡£´û¸¤Î¥¨¥ó¥È¥ê¤Ï¤½¤Î¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤Ç¼«Æ°Åª¤Ë¾å½ñ¤­¤µ¤ì¤Þ¤¹¡£ºÇ¸å¤Ë¡¢¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤Ê¤¤¥¨¥ó¥È¥ê¤Ï¼«Æ°Åª¤Ë¥¹¥­¥Ã¥×¤µ¤ì¡¢·Ù¹ð¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.TP 3
++\-printcertreq {\-file file}
++.LP
++PKCS#10·Á¼°¤Î¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¤ÎÆâÍƤò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥ê¥¯¥¨¥¹¥È¤Ï¡¢keytool \-certreq¥³¥Þ¥ó¥É¤ÇÀ¸À®¤Ç¤­¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢file¤«¤é¥ê¥¯¥¨¥¹¥È¤òÆɤ߹þ¤ß¤Þ¤¹¡£file¤¬¾Êά¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢É¸½àÆþÎϤ«¤éÆɤ߹þ¤ß¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥Ç¡¼¥¿¤Î¥¨¥¯¥¹¥Ý¡¼¥È
++.LP
++.RS 3
++.TP 3
++\-certreq {\-alias alias} {\-dname dname} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++PKCS#10·Á¼°¤ò»ÈÍѤ·¤Æ¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È(CSR)¤òÀ¸À®¤·¤Þ¤¹¡£
++.LP
++CSR¤Ï¡¢¾ÚÌÀ½ñȯ¹Ô¶É(CA)¤ËÁ÷¿®¤¹¤ë¤³¤È¤òÌÜŪ¤È¤·¤¿¤â¤Î¤Ç¤¹¡£CA¤Ï¡¢¾ÚÌÀ½ñÍ×µá¼Ô¤ò(Ä̾ï¤Ï¥ª¥Õ¥é¥¤¥ó¤Ç)ǧ¾Ú¤·¡¢¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤òÁ÷¤êÊÖ¤·¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î´û¸¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó(ºÇ½é¤Ï1¤Ä¤Î¼«¸Ê½ð̾¾ÚÌÀ½ñ¤«¤é¹½À®¤µ¤ì¤ë)¤ËÃÖ¤­´¹¤¨¤Æ»ÈÍѤ·¤Þ¤¹¡£
++.LP
++\f2alias\fP¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿ÈëÌ©¸°¤Ï¡¢PKCS#10¾ÚÌÀ½ñ¥ê¥¯¥¨¥¹¥È¤òºîÀ®¤¹¤ë¤Î¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£ÈëÌ©¸°¤Ï¥­¡¼¥¹¥È¥¢Æâ¤Ç¤Ï¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢ÈëÌ©¸°¤Ë¥¢¥¯¥»¥¹¤¹¤ë¤Ë¤Ï¡¢Å¬Àڤʥѥ¹¥ï¡¼¥É¤òÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2keypass\fP¤ò»ØÄꤷ¤Æ¤ª¤é¤º¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤¬¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤È°Û¤Ê¤ë¾ì¹ç¤Ï¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£dname¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¤½¤ì¤¬CSR¤Ç¼çÂΤȤ·¤Æ»ÈÍѤµ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¤Ï¡¢ÊÌ̾¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿X.500¼±ÊÌ̾¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£
++.LP
++\f2sigalg\fP¤Ë¤Ï¡¢CSR¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤Ë»ÈÍѤ¹¤ë¥¢¥ë¥´¥ê¥º¥à¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++CSR¤Ï¡¢¥Õ¥¡¥¤¥ë\f2certreq_file\fP¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢É¸½à½ÐÎϤËCSR¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++CA¤«¤é¤Î¥ì¥¹¥Ý¥ó¥¹¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï¡¢\f2importcert\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-exportcert {\-alias alias} {\-file cert_file} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-rfc} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++\f2alias\fP¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿¾ÚÌÀ½ñ¤ò(¥­¡¼¥¹¥È¥¢¤«¤é)Æɤ߹þ¤ß¡¢¥Õ¥¡¥¤¥ë\f2cert_file\fP¤Ë³ÊǼ¤·¤Þ¤¹¡£
++.LP
++¥Õ¥¡¥¤¥ë¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢É¸½à½ÐÎϤ˾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥Ð¥¤¥Ê¥êÉä¹æ²½Êý¼°¤Î¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢\f2\-rfc\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Î¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421¾ÚÌÀ½ñÉä¹æ²½µ¬³Ê¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++\f2alias\fP¤¬¡¢¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤ò»²¾È¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢³ºÅö¤¹¤ë¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¤½¤ì°Ê³°¤Î¾ì¹ç¡¢\f2alias\fP¤Ï¡¢´ØÏ¢ÉÕ¤±¤é¤ì¤¿¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò»ý¤Ä¸°¥¨¥ó¥È¥ê¤ò»²¾È¤·¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï¡¢¥Á¥§¡¼¥óÆâ¤ÎºÇ½é¤Î¾ÚÌÀ½ñ¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤Ï¡¢\f2alias\fP¤Ë¤è¤Ã¤Æɽ¤µ¤ì¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Ç¤¹¡£
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï\f2\-export\fP¤È¤¤¤¦Ì¾Á°¤Ç¤·¤¿¡£¤³¤Î¸Å¤¤Ì¾Á°¤Ï¡¢¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤â°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤ª¤ê¡¢º£¸å¤Î¥ê¥ê¡¼¥¹¤Ç¤â¥µ¥Ý¡¼¥È¤µ¤ì¤ëͽÄê¤Ç¤¹¡£¤¿¤À¤·¡¢º£¸å¤Ï¤ï¤«¤ê¤ä¤¹¤¤¤è¤¦¤Ë¡¢¿·¤·¤¤Ì¾Á°\f2\-exportcert\fP¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥Ç¡¼¥¿¤Îɽ¼¨
++.LP
++.RS 3
++.TP 3
++\-list {\-alias alias} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v | \-rfc} {\-protected} {\-Jjavaoption}
++.LP
++\f2alias\fP¤ÇÆÃÄꤵ¤ì¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ÎÆâÍƤò(ɸ½à½ÐÎϤË)½ÐÎϤ·¤Þ¤¹¡£ÊÌ̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥­¡¼¥¹¥È¥¢Á´ÂΤÎÆâÍƤ¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¾ÚÌÀ½ñ¤ÎSHA1¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤òɽ¼¨¤·¤Þ¤¹¡£\f2\-v\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢½êÍ­¼Ô¡¢È¯¹Ô¼Ô¡¢¥·¥ê¥¢¥ëÈֹ桢³ÈÄ¥µ¡Ç½¤Ê¤É¤ÎÉÕ²ÃŪ¤Ê¾ðÊó¤È¤È¤â¤Ë¡¢¿Í´Ö¤¬Æɤळ¤È¤Î¤Ç¤­¤ë·Á¼°¤Ç¾ÚÌÀ½ñ¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£\f2\-rfc\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Ç¾ÚÌÀ½ñ¤ÎÆâÍƤ¬É½¼¨¤µ¤ì¤Þ¤¹¡£½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421¾ÚÌÀ½ñÉä¹æ²½µ¬³Ê¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++\f2\-v\fP¥ª¥×¥·¥ç¥ó¤È\f2\-rfc\fP¥ª¥×¥·¥ç¥ó¤òƱ»þ¤Ë»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.TP 3
++\-printcert {\-file cert_file | \-sslserver host[:port]} {\-jarfile JAR_file {\-rfc} {\-v} {\-Jjavaoption}
++.LP
++¥Õ¥¡¥¤¥ë\f2cert_file\fP¡¢\f2host:port\fP¤Ë¤¢¤ëSSL¥µ¡¼¥Ð¡¼¡¢¤Þ¤¿¤Ï½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë\f2JAR_file\fP(\f2\-jarfile\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄê)¤«¤é¾ÚÌÀ½ñ¤òÆɤ߹þ¤ß¡¢¿Í´Ö¤¬Æɤळ¤È¤Î¤Ç¤­¤ë·Á¼°¤Ç¾ÚÌÀ½ñ¤ÎÆâÍƤòɽ¼¨¤·¤Þ¤¹¡£¥Ý¡¼¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢É¸½à¤ÎHTTPS¥Ý¡¼¥È443¤¬ÁÛÄꤵ¤ì¤Þ¤¹¡£\f2\-sslserver\fP¤ª¤è¤Ó\f2\-file\fP¥ª¥×¥·¥ç¥ó¤òƱ»þ¤Ë»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£Æ±»þ¤Ë»ØÄꤹ¤ë¤È¡¢¥¨¥é¡¼¤¬Êó¹ð¤µ¤ì¤Þ¤¹¡£¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢É¸½àÆþÎϤ«¤é¾ÚÌÀ½ñ¤òÆɤ߹þ¤ß¤Þ¤¹¡£
++.LP
++\f2\-rfc\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢keytool¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421ɸ½à¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ë¡¢PEM¥â¡¼¥É¤Ç¾ÚÌÀ½ñ¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++¥Õ¥¡¥¤¥ë¤Þ¤¿¤Ïɸ½àÆþÎϤ«¤é¾ÚÌÀ½ñ¤òÆɤ߹þ¤à¾ì¹ç¡¢¤½¤Î¾ÚÌÀ½ñ¤Ï¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421ɸ½à¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë¤è¤¦¤Ë¡¢¥Ð¥¤¥Ê¥êÉä¹æ²½Êý¼°¤Þ¤¿¤Ï½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Çɽ¼¨¤Ç¤­¤Þ¤¹¡£
++.LP
++SSL¥µ¡¼¥Ð¡¼¤¬¥Õ¥¡¥¤¥¢¥¦¥©¡¼¥ë¤ÎÇظå¤Ë¤¢¤ë¾ì¹ç¤Ï¡¢\f2\-J\-Dhttps.proxyHost=proxyhost\fP¤È\f2\-J\-Dhttps.proxyPort=proxyport\fP¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Æ¡¢¥×¥í¥­¥·¡¦¥È¥ó¥Í¥ê¥ó¥°¤ò»ÈÍѤǤ­¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2JSSE¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥¬¥¤¥É\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++\f3Ãí°Õ\fP: ¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¥­¡¼¥¹¥È¥¢¤È¤Ï´Ø·¸¤Ê¤¯»ÈÍѤǤ­¤Þ¤¹¡£
++.TP 3
++\-printcrl \-file crl_ {\-v}
++.LP
++¥Õ¥¡¥¤¥ë\f2crl_file\fP¤«¤é¾ÚÌÀ½ñ¤Î¼è¾Ã¤·¥ê¥¹¥È(CRL)¤òÆɤ߹þ¤ß¤Þ¤¹¡£
++.LP
++¾ÚÌÀ½ñ¤Î¼è¾Ã¤·¥ê¥¹¥È(CRL)¤Ï¡¢¥Ç¥¸¥¿¥ë¾ÚÌÀ½ñ¤òȯ¹Ô¤·¤¿¾ÚÌÀ½ñȯ¹Ô¶É(CA)¤Ë¤è¤Ã¤Æ¼è¤ê¾Ã¤µ¤ì¤¿¥Ç¥¸¥¿¥ë¾ÚÌÀ½ñ¤Î¥ê¥¹¥È¤Ç¤¹¡£CA¤Ï¡¢\f2crl_file\fP¤òÀ¸À®¤·¤Þ¤¹¡£
++.LP
++\f3Ãí°Õ\fP: ¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¥­¡¼¥¹¥È¥¢¤È¤Ï´Ø·¸¤Ê¤¯»ÈÍѤǤ­¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤Î´ÉÍý
++.LP
++.RS 3
++.TP 3
++\-storepasswd [\-new new_storepass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
++.LP
++¥­¡¼¥¹¥È¥¢¤ÎÆâÍƤÎÀ°¹çÀ­¤òÊݸ¤ë¤¿¤á¤Ë»ÈÍѤ¹¤ë¥Ñ¥¹¥ï¡¼¥É¤òÊѹ¹¤·¤Þ¤¹¡£\f2new_storepass\fP¤Ë¤Ï¡¢¿·¤·¤¤¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Þ¤¹¡£new_storepass¤Ï¡¢6ʸ»ú°Ê¾å¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-keypasswd {\-alias alias} [\-keypass old_keypass] [\-new new_keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
++.LP
++\f2alias\fP¤Ë¤è¤Ã¤ÆÆÃÄꤵ¤ì¤ëÈó¸ø³«/ÈëÌ©¸°¤òÊݸ¤ë¤¿¤á¤Î¥Ñ¥¹¥ï¡¼¥É¤ò¡¢\f2old_keypass\fP¤«¤é\f2new_keypass\fP¤ËÊѹ¹¤·¤Þ¤¹¡£new_keypass¤Ï¡¢6ʸ»ú°Ê¾å¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-keypass\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Æ¤ª¤é¤º¡¢¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤¬¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤È°Û¤Ê¤ë¾ì¹ç¤Ï¡¢¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-new\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¿·¤·¤¤¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.TP 3
++\-delete [\-alias alias] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++\f2alias\fP¤Ë¤è¤Ã¤ÆÆÃÄꤵ¤ì¤ë¥¨¥ó¥È¥ê¤ò¥­¡¼¥¹¥È¥¢¤«¤éºï½ü¤·¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÇÊÌ̾¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢ÊÌ̾¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.TP 3
++\-changealias {\-alias alias} [\-destalias destalias] [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++.LP
++»ØÄꤵ¤ì¤¿\f2alias\fP¤«¤é¿·¤·¤¤ÊÌ̾\f2destalias\fP¤Ø¡¢´û¸¤Î¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤ò°ÜÆ°¤·¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢¤³¤Î¥³¥Þ¥ó¥É¤Ï¤½¤ÎÆþÎϤòµá¤á¤Þ¤¹¡£¸µ¤Î¥¨¥ó¥È¥ê¤¬¥¨¥ó¥È¥ê¡¦¥Ñ¥¹¥ï¡¼¥É¤ÇÊݸ¤ì¤Æ¤¤¤¿¾ì¹ç¡¢¡Ö\-keypass¡×¥ª¥×¥·¥ç¥ó·Ðͳ¤Ç¤½¤Î¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¸°¥Ñ¥¹¥ï¡¼¥É¤¬»ØÄꤵ¤ì¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f2storepass\fP(»ØÄꤵ¤ì¤¿¾ì¹ç)¤¬¤Þ¤º»î¤ß¤é¤ì¤Þ¤¹¡£¤½¤Î»î¤ß¤¬¼ºÇÔ¤¹¤ë¤È¡¢¥æ¡¼¥¶¡¼¤Ï¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¥Ø¥ë¥×¤Îɽ¼¨
++.LP
++.RS 3
++.TP 3
++\-help
++.LP
++´ðËÜŪ¤Ê¥³¥Þ¥ó¥É¤È¤½¤Î¥ª¥×¥·¥ç¥ó¤Î°ìÍ÷¤òɽ¼¨¤·¤Þ¤¹¡£
++.LP
++ÆÃÄê¤Î¥³¥Þ¥ó¥É¤Î¾ÜºÙ¤ò»²¾È¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£\f2command_name\fP¤Ï¥³¥Þ¥ó¥É¤Î̾Á°¤Ç¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-\fP\f4command_name\fP\f3 \-help
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SH "Îã"
++.LP
++.LP
++¤³¤³¤Ç¤Ï¡¢¼«Ê¬¤Î¸°¤Î¥Ú¥¢¤ª¤è¤Ó¿®Íê¤Ç¤­¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤«¤é¤Î¾ÚÌÀ½ñ¤ò´ÉÍý¤¹¤ë¤¿¤á¤Î¥­¡¼¥¹¥È¥¢¤òºîÀ®¤¹¤ë¾ì¹ç¤òÎã¤È¤·¤Æ¼¨¤·¤Þ¤¹¡£
++.LP
++.SS
++¸°¤Î¥Ú¥¢¤ÎÀ¸À®
++.LP
++.LP
++¤Þ¤º¡¢¥­¡¼¥¹¥È¥¢¤òºîÀ®¤·¤Æ¸°¤Î¥Ú¥¢¤òÀ¸À®¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤Ë¼¨¤¹¤Î¤Ï¡¢¼Â¹Ô¤¹¤ë¥³¥Þ¥ó¥É¤ÎÎã¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-genkeypair \-dname "cn=Mark Jones, ou=Java, o=Oracle, c=US"
++.fl
++ \-alias business \-keypass \fP\f4<new password for private key>\fP\f3 \-keystore /working/mykeystore
++.fl
++ \-storepass \fP\f4<new password for keystore>\fP\f3 \-validity 180
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Ãí°Õ: ¤³¤Î¥³¥Þ¥ó¥É¤Ï1¹Ô¤ËÆþÎϤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Îã¤ÇÊ£¿ô¹Ô¤ËÆþÎϤ·¤Æ¤¤¤ë¤Î¤ÏÆɤߤ䤹¤¯¤¹¤ë¤¿¤á¤Ç¤¹¡£
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢working¥Ç¥£¥ì¥¯¥È¥ê¤Ëmykeystore¤È¤¤¤¦Ì¾Á°¤Î¥­¡¼¥¹¥È¥¢¤òºîÀ®¤·(¥­¡¼¥¹¥È¥¢¤Ï¤Þ¤À¸ºß¤·¤Æ¤¤¤Ê¤¤¤È²¾Äê)¡¢ºîÀ®¤·¤¿¥­¡¼¥¹¥È¥¢¤Ë¡¢\f2<new password for keystore>\fP¤Ç»ØÄꤷ¤¿¥Ñ¥¹¥ï¡¼¥É¤ò³ä¤êÅö¤Æ¤Þ¤¹¡£À¸À®¤¹¤ë¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥Ú¥¢¤ËÂбþ¤¹¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤Î¡Ö¼±ÊÌ̾¡×¤Ï¡¢Ä̾Τ¬¡ÖMark Jones¡×¡¢ÁÈ¿¥Ã±°Ì¤¬¡ÖJava¡×¡¢ÁÈ¿¥¤¬¡ÖOracle¡×¡¢2ʸ»ú¤Î¹ñÈֹ椬¡ÖUS¡×¤Ç¤¹¡£¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥µ¥¤¥º¤Ï¤É¤Á¤é¤â1024¥Ó¥Ã¥È¤Ç¡¢¸°¤ÎºîÀ®¤Ë¤Ï¥Ç¥Õ¥©¥ë¥È¤ÎDSA¸°À¸À®¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢¸ø³«¸°¤È¼±ÊÌ̾¾ðÊó¤ò´Þ¤à¼«¸Ê½ð̾¾ÚÌÀ½ñ(¥Ç¥Õ¥©¥ë¥È¤ÎSHA1withDSA½ð̾¥¢¥ë¥´¥ê¥º¥à¤ò»ÈÍÑ)¤òºîÀ®¤·¤Þ¤¹¡£¾ÚÌÀ½ñ¤ÎÍ­¸ú´ü´Ö¤Ï180Æü¤Ç¤¹¡£¾ÚÌÀ½ñ¤Ï¡¢ÊÌ̾¡Öbusiness¡×¤ÇÆÃÄꤵ¤ì¤ë¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥êÆâ¤ÎÈëÌ©¸°¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤Þ¤¹¡£ÈëÌ©¸°¤Ë¤Ï¡¢\f2<new password for private key>\fP¤Ç»ØÄꤷ¤¿¥Ñ¥¹¥ï¡¼¥É¤¬³ä¤êÅö¤Æ¤é¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥ª¥×¥·¥ç¥ó¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤò»ÈÍѤ¹¤ë¾ì¹ç¤Ï¡¢¾å¤Ë¼¨¤·¤¿¥³¥Þ¥ó¥É¤òÂçÉý¤Ëû¤¯¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¼ÂºÝ¤Ë¤Ï¡¢¥ª¥×¥·¥ç¥ó¤ò1¤Ä¤â»ØÄꤻ¤º¤Ë¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤò»ý¤Ä¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤±¤ì¤Ð¥Ç¥Õ¥©¥ë¥ÈÃͤ¬»ÈÍѤµ¤ì¡¢É¬ÍפÊÃͤˤĤ¤¤Æ¤ÏÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢Ã±¤Ë¼¡¤Î¤è¤¦¤ËÆþÎϤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-genkeypair
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¾ì¹ç¤Ï¡¢mykey¤È¤¤¤¦ÊÌ̾¤Ç¥­¡¼¥¹¥È¥¢¡¦¥¨¥ó¥È¥ê¤¬ºîÀ®¤µ¤ì¡¢¿·¤·¤¯À¸À®¤µ¤ì¤¿¸°¤Î¥Ú¥¢¡¢¤ª¤è¤Ó90Æü´ÖÍ­¸ú¤Ê¾ÚÌÀ½ñ¤¬¤³¤Î¥¨¥ó¥È¥ê¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¨¥ó¥È¥ê¤Ï¡¢¥Û¡¼¥à¡¦¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î .keystore¤È¤¤¤¦Ì¾Á°¤Î¥­¡¼¥¹¥È¥¢¤ËÃÖ¤«¤ì¤Þ¤¹¡£¤³¤Î¥­¡¼¥¹¥È¥¢¤¬¤Þ¤À¸ºß¤·¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢ºîÀ®¤µ¤ì¤Þ¤¹¡£¼±ÊÌ̾¾ðÊó¡¢¥­¡¼¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤ª¤è¤ÓÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤Ë¤Ä¤¤¤Æ¤Ï¡¢ÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++.LP
++°Ê¹ß¤Ç¤Ï¡¢¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤Ç\f2\-genkeypair\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤¿¤â¤Î¤È¤·¤ÆÎã¤ò¼¨¤·¤Þ¤¹¡£¾ðÊó¤ÎÆþÎϤòµá¤á¤é¤ì¤¿¾ì¹ç¤Ï¡¢ºÇ½é¤Ë¼¨¤·¤¿\f2\-genkeypair\fP¥³¥Þ¥ó¥É¤ÎÃͤòÆþÎϤ·¤¿¤â¤Î¤È¤·¤Þ¤¹(¤¿¤È¤¨¤Ð¡¢¼±ÊÌ̾¤Ë¤Ïcn=Mark Jones,ou=Java,o=Oracle,c=US¤È»ØÄê)¡£
++.LP
++.SS
++¾ÚÌÀ½ñȯ¹Ô¶É¤ËÂФ¹¤ë½ð̾ÉÕ¤­¾ÚÌÀ½ñ¤Î¥ê¥¯¥¨¥¹¥È
++.LP
++.LP
++¸½»þÅÀ¤Ç¼ê¸µ¤Ë¤¢¤ë¤Î¤Ï¡¢1Ä̤μ«¸Ê½ð̾¾ÚÌÀ½ñ¤Î¤ß¤Ç¤¹¡£¾ÚÌÀ½ñ¤Ë¾ÚÌÀ½ñȯ¹Ô¶É(CA)¤Î½ð̾¤¬ÉÕ¤¤¤Æ¤¤¤ì¤Ð¡¢Â¾¤Î¥æ¡¼¥¶¡¼¤«¤é¾ÚÌÀ½ñ¤¬¿®Íꤵ¤ì¤ë²ÄǽÀ­¤â¹â¤¯¤Ê¤ê¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ê½ð̾¤ò¼èÆÀ¤¹¤ë¤Ë¤Ï¡¢¤Þ¤º¡¢¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È(CSR)¤òÀ¸À®¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-certreq \-file MarkJ.csr
++.fl
++\fP
++.fi
++
++.LP
++.LP
++CSR(¥Ç¥Õ¥©¥ë¥ÈÊÌ̾¡Ömykey¡×¤Ë¤è¤Ã¤ÆÆÃÄꤵ¤ì¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤ÎCSR)¤¬ºîÀ®¤µ¤ì¡¢MarkJ.csr¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤ËÃÖ¤«¤ì¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¡¢VeriSign¤Ê¤É¤ÎCA¤ËÄó½Ð¤·¤Þ¤¹¡£CA¤ÏÍ×µá¼Ô¤ò(Ä̾ï¤Ï¥ª¥Õ¥é¥¤¥ó¤Ç)ǧ¾Ú¤·¡¢Í×µá¼Ô¤Î¸ø³«¸°¤òǧ¾Ú¤·¤¿½ð̾ÉÕ¤­¤Î¾ÚÌÀ½ñ¤òÁ÷¤êÊÖ¤·¤Þ¤¹¡£¾ì¹ç¤Ë¤è¤Ã¤Æ¤Ï¡¢CA¤¬¾ÚÌÀ½ñ¤Î¥Á¥§¡¼¥ó¤òÊÖ¤¹¤³¤È¤â¤¢¤ê¤Þ¤¹¡£¾ÚÌÀ½ñ¤Î¥Á¥§¡¼¥ó¤Ç¤Ï¡¢³Æ¾ÚÌÀ½ñ¤¬¥Á¥§¡¼¥óÆâ¤Î¤½¤ÎÁ°¤Î½ð̾¼Ô¤Î¸ø³«¸°¤òǧ¾Ú¤·¤Þ¤¹¡£
++.LP
++.SS
++CA¤«¤é¤Î¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È
++.LP
++.LP
++ºîÀ®¤·¤¿¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ï¡¢¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÇÃÖ¤­´¹¤¨¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ç¤Ï¡¢³Æ¾ÚÌÀ½ñ¤¬¡¢¡Ö¥ë¡¼¥È¡×CA¤òµ¯ÅÀ¤È¤¹¤ë¥Á¥§¡¼¥óÆâ¤Î¼¡¤Î¾ÚÌÀ½ñ¤Î½ð̾¼Ô¤Î¸ø³«¸°¤òǧ¾Ú¤·¤Þ¤¹¡£
++.LP
++.LP
++CA¤«¤é¤Î¾ÚÌÀ±þÅú¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï¡¢¥­¡¼¥¹¥È¥¢¤«¡¢\f2cacerts\fP¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë(importcert¥³¥Þ¥ó¥É¤ÇÀâÌÀ)Æâ¤Ë1¤Ä°Ê¾å¤Î¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤¬¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¾ÚÌÀ±þÅú¤¬¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Î¾ì¹ç¤Ï¡¢¥Á¥§¡¼¥ó¤Î¥È¥Ã¥×¤Î¾ÚÌÀ½ñ(¤½¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¡Ö¥ë¡¼¥È¡×CA¤Î¾ÚÌÀ½ñ)¤Î¤ß¤¬É¬ÍפǤ¹¡£
++.TP 2
++o
++¾ÚÌÀ±þÅú¤¬Ã±°ì¤Î¾ÚÌÀ½ñ¤Î¾ì¹ç¤Ï¡¢¾ÚÌÀ½ñ¤Ë½ð̾¤·¤¿CA¤Îȯ¹ÔÍѤξÚÌÀ½ñ¤¬É¬Íפǡ¢¤½¤Î¾ÚÌÀ½ñ¤¬¼«¸Ê½ð̾¤µ¤ì¤Ê¤¤¾ì¹ç¤Ï¡¢¤µ¤é¤Ë¤½¤Î¾ÚÌÀ½ñ¤Î½ð̾¼ÔÍѤξÚÌÀ½ñ¤¬É¬ÍפǤ¹¡£¤³¤Î¤è¤¦¤Ë¤·¤Æ¼«¸Ê½ð̾¤µ¤ì¤ë¡Ö¥ë¡¼¥È¡×CA¤Î¾ÚÌÀ½ñ¤Þ¤Ç¡¢¤½¤ì¤¾¤ì¾ÚÌÀ½ñ¤¬É¬ÍפǤ¹¡£
++.RE
++
++.LP
++.LP
++cacerts¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¤¤¤¯¤Ä¤«¤ÎVeriSign¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤ò´Þ¤ó¤À¾õÂ֤ǽв٤µ¤ì¤Æ¤¤¤ë¤Î¤Ç¡¢VeriSign¤Î¾ÚÌÀ½ñ¤ò¡¢¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤È¤·¤Æ¥­¡¼¥¹¥È¥¢Æâ¤Ë¥¤¥ó¥Ý¡¼¥È¤¹¤ëɬÍפϤʤ¤¤«¤â¤·¤ì¤Þ¤»¤ó¡£¤¿¤À¤·¡¢Â¾¤ÎCA¤ËÂФ·¤Æ½ð̾ÉÕ¤­¾ÚÌÀ½ñ¤ò¥ê¥¯¥¨¥¹¥È¤·¤Æ¤¤¤Æ¡¢¤³¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤¬¡¢cacerts¤Ë¤Þ¤ÀÄɲ䵤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢³ºÅö¤¹¤ëCA¤«¤é¤Î¾ÚÌÀ½ñ¤ò¡¢¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤È¤·¤Æ¥¤¥ó¥Ý¡¼¥È¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++Ä̾CA¤«¤é¤Î¾ÚÌÀ½ñ¤Ï¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¡¢¤Þ¤¿¤Ï¾¤ÎCA¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¤¿¾ÚÌÀ½ñ¤Ç¤¹(¸å¼Ô¤Î¾ì¹ç¤Ï¡¢³ºÅö¤¹¤ë¾¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤âɬÍ×)¡£¤¿¤È¤¨¤Ð¡¢ABC¤È¤¤¤¦´ë¶È¤¬CA¤À¤È¤·¤Þ¤¹¡£¤³¤Î¤È¤­¡¢¤³¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¼«¸Ê½ð̾¾ÚÌÀ½ñ¤È¹Í¤¨¤é¤ì¤ë¡ÖABCCA.cer¡×¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤ò¡¢ABC¤«¤éÆþ¼ê¤·¤¿¤È¤·¤Þ¤¹¡£
++.LP
++.LP
++¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤È¤·¤Æ¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤È¤­¤Ï¡¢¾ÚÌÀ½ñ¤¬Í­¸ú¤Ç¤¢¤ë¤³¤È¤ò¿µ½Å¤Ë³Îǧ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Þ¤º¡¢¾ÚÌÀ½ñ¤ÎÆâÍƤòɽ¼¨¤·(\f3keytool\fP \f2\-printcert\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤«¡¢¤Þ¤¿¤Ï\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤Ç\f3keytool\fP \f2\-importcert\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¡¢É½¼¨¤µ¤ì¤¿¾ÚÌÀ½ñ¤Î¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤¬¡¢´üÂÔ¤µ¤ì¤ë¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È°ìÃפ¹¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Þ¤¹¡£¾ÚÌÀ½ñ¤òÁ÷¿®¤·¤¿¿Íʪ¤ËÏ¢Íí¤·¡¢¤³¤Î¿Íʪ¤¬Ä󼨤·¤¿(¤Þ¤¿¤Ï°ÂÁ´¤Ê¸ø³«¸°¤Î¥ê¥Ý¥¸¥È¥ê¤Ë¤è¤Ã¤ÆÄ󼨤µ¤ì¤ë)¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¡¢¾å¤Î¥³¥Þ¥ó¥É¤Çɽ¼¨¤µ¤ì¤¿¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¤òÈæ³Ó¤·¤Þ¤¹¡£¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤¬°ìÃפ¹¤ì¤Ð¡¢Á÷¿®ÅÓÃæ¤Ç¾¤Î²¿¼Ô¤«(¹¶·â¼Ô¤Ê¤É)¤Ë¤è¤ë¾ÚÌÀ½ñ¤Î¤¹¤êÂؤ¨¤¬¹Ô¤ï¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤ò³Îǧ¤Ç¤­¤Þ¤¹¡£Á÷¿®ÅÓÃæ¤Ç¤³¤Î¼ï¤Î¹¶·â¤¬¹Ô¤ï¤ì¤Æ¤¤¤¿¾ì¹ç¡¢¥Á¥§¥Ã¥¯¤ò¹Ô¤ï¤º¤Ë¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤È¡¢¹¶·â¼Ô¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¤â¤Î¤ò¿®Íꤹ¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¤³¤Î¾ÚÌÀ½ñ¤òÍ­¸ú¤Ê¤â¤Î¤È¤·¤Æ¿®Íꤹ¤ë¾ì¹ç¤Ï¡¢¾ÚÌÀ½ñ¤ò¥­¡¼¥¹¥È¥¢¤ËÄɲäǤ­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-importcert \-alias abc \-file ABCCA.cer
++.fl
++\fP
++.fi
++
++.LP
++.LP
++ABCCA.cer¥Õ¥¡¥¤¥ë¤Î¥Ç¡¼¥¿¤ò´Þ¤à¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤Î¥¨¥ó¥È¥ê¤¬¥­¡¼¥¹¥È¥¢Æâ¤ËºîÀ®¤µ¤ì¡¢³ºÅö¤¹¤ë¥¨¥ó¥È¥ê¤Ëabc¤È¤¤¤¦ÊÌ̾¤¬³ä¤êÅö¤Æ¤é¤ì¤Þ¤¹¡£
++.LP
++.SS
++CA¤«¤é¤Î¾ÚÌÀ½ñ±þÅú¤Î¥¤¥ó¥Ý¡¼¥È
++.LP
++.LP
++¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È¤ÎÄó½ÐÀè¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤·¤¿¸å¤Ï(¤Þ¤¿¤ÏƱ¼ï¤Î¾ÚÌÀ½ñ¤¬¤¹¤Ç¤Ëcacerts¥Õ¥¡¥¤¥ëÆâ¤Ë¸ºß¤·¤Æ¤¤¤ë¾ì¹ç¤Ï)¡¢¾ÚÌÀ±þÅú¤ò¥¤¥ó¥Ý¡¼¥È¤·¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¤ò¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ÇÃÖ¤­´¹¤¨¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¥Á¥§¡¼¥ó¤Ï¡¢CA¤Î±þÅú¤¬¥Á¥§¡¼¥ó¤Î¾ì¹ç¤Ë¡¢¥ê¥¯¥¨¥¹¥È¤ËÂФ¹¤ë¥ì¥¹¥Ý¥ó¥¹¤È¤·¤ÆCA¤«¤éÁ÷¤êÊÖ¤µ¤ì¤¿¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ç¤¹¡£¤Þ¤¿¡¢CA¤Î±þÅú¤¬Ã±°ì¤Î¾ÚÌÀ½ñ¤Î¾ì¹ç¤Ï¡¢¤³¤Î¾ÚÌÀ±þÅú¤È¡¢¥¤¥ó¥Ý¡¼¥ÈÀè¤Î¥­¡¼¥¹¥È¥¢Æâ¤Þ¤¿¤Ïcacerts¥­¡¼¥¹¥È¥¢¥Õ¥¡¥¤¥ëÆâ¤Ë¤¹¤Ç¤Ë¸ºß¤¹¤ë¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤È¤ò»ÈÍѤ·¤Æ¹½ÃÛ¤·¤¿¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ç¤¹¡£
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È¤òVeriSign¤ËÁ÷¿®¤·¤¿¤È¤·¤Þ¤¹¡£Á÷¤êÊÖ¤µ¤ì¤¿¾ÚÌÀ½ñ¤Î̾Á°¤¬VSMarkJ.cer¤À¤È¤¹¤ë¤È¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Æ±þÅú¤ò¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-importcert \-trustcacerts \-file VSMarkJ.cer
++.fl
++\fP
++.fi
++
++.LP
++.SS
++¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Î¥¨¥¯¥¹¥Ý¡¼¥È
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢jarsigner(1)¥Ä¡¼¥ë¤ò»ÈÍѤ·¤ÆJava ARchive(JAR)¥Õ¥¡¥¤¥ë¤Ë½ð̾¤òÉÕ¤±¤¿¤È¤·¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¥¯¥é¥¤¥¢¥ó¥È¤Ë¤è¤Ã¤Æ»ÈÍѤµ¤ì¤Þ¤¹¤¬¡¢¥¯¥é¥¤¥¢¥ó¥È¦¤Ç¤Ï½ð̾¤òǧ¾Ú¤·¤¿¤¤¤È¹Í¤¨¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++¥¯¥é¥¤¥¢¥ó¥È¤¬½ð̾¤òǧ¾Ú¤¹¤ëÊýË¡¤Î1¤Ä¤Ë¡¢¤Þ¤º¼«Ê¬¤Î¸ø³«¸°¤Î¾ÚÌÀ½ñ¤ò¡Ö¿®Íê¤Ç¤­¤ë¡×¥¨¥ó¥È¥ê¤È¤·¤Æ¥¯¥é¥¤¥¢¥ó¥È¤Î¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤¹¤ëÊýË¡¤¬¤¢¤ê¤Þ¤¹¡£¤½¤Î¤¿¤á¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤ò¥¨¥¯¥¹¥Ý¡¼¥È¤·¤Æ¡¢¥¯¥é¥¤¥¢¥ó¥È¤ËÄ󶡤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Æ¡¢¾ÚÌÀ½ñ¤ò\f2MJ.cer\fP¤È¤¤¤¦Ì¾Á°¤Î¥Õ¥¡¥¤¥ë¤Ë¥³¥Ô¡¼¤·¤Þ¤¹¡£¤³¤Î¥¨¥ó¥È¥ê¤Ë¤Ï¡Ömykey¡×¤È¤¤¤¦ÊÌ̾¤¬»ÈÍѤµ¤ì¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-exportcert \-alias mykey \-file MJ.cer
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¾ÚÌÀ½ñ¤È½ð̾ÉÕ¤­JAR¥Õ¥¡¥¤¥ë¤òÆþ¼ê¤·¤¿¥¯¥é¥¤¥¢¥ó¥È¤Ï¡¢\f3jarsigner\fP¥Ä¡¼¥ë¤ò»ÈÍѤ·¤Æ½ð̾¤òǧ¾Ú¤Ç¤­¤Þ¤¹¡£
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢¤Î¥¤¥ó¥Ý¡¼¥È
++.LP
++.LP
++¥³¥Þ¥ó¥É¡Öimportkeystore¡×¤ò»ÈÍѤ¹¤ì¤Ð¡¢¤¢¤ë¥­¡¼¥¹¥È¥¢¤ÎÁ´ÂΤòÊ̤Υ­¡¼¥¹¥È¥¢Æâ¤Ë¥¤¥ó¥Ý¡¼¥È¤Ç¤­¤Þ¤¹¡£¤³¤ì¤Ï¡¢¸°¤ä¾ÚÌÀ½ñ¤È¤¤¤Ã¤¿¥½¡¼¥¹¥­¡¼¥¹¥È¥¢Æâ¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤¬¡¢Ã±°ì¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¥¿¡¼¥²¥Ã¥È¥­¡¼¥¹¥È¥¢Æâ¤Ë¥¤¥ó¥Ý¡¼¥È¤µ¤ì¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ì¤Ð¡¢°Û¤Ê¤ë¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢Æâ¤Ë´Þ¤Þ¤ì¤ë¥¨¥ó¥È¥ê¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥¤¥ó¥Ý¡¼¥È»þ¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢Æâ¤Î¿·¤·¤¤¥¨¥ó¥È¥ê¤Ï¤¹¤Ù¤Æ¡¢¸µ¤ÈƱ¤¸ÊÌ̾¤ª¤è¤Ó(ÈëÌ©¸°¤äÈëÌ©¸°¤Î¾ì¹ç¤Ï)ÊݸîÍѥѥ¹¥ï¡¼¥É¤ò»ý¤Á¤Þ¤¹¡£¥½¡¼¥¹¥­¡¼¥¹¥È¥¢Æâ¤ÎÈëÌ©¸°¤äÈëÌ©¸°¤Î²óÉü»þ¤ËÌäÂ꤬ȯÀ¸¤·¤¿¾ì¹ç¡¢\f3keytool\fP¤Ï¥æ¡¼¥¶¡¼¤Ë¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢ÊÌ̾¤Î½ÅÊ£¤ò¸¡½Ð¤¹¤ë¤È¡¢¥æ¡¼¥¶¡¼¤Ë¿·¤·¤¤ÊÌ̾¤ÎÆþÎϤòµá¤á¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤Ï¡¢¿·¤·¤¤ÊÌ̾¤ò»ØÄꤹ¤ë¤³¤È¤â¡¢Ã±½ã¤Ë´û¸¤ÎÊÌ̾¤Î¾å½ñ¤­¤ò\f3keytool\fP¤Ëµö²Ä¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢Ä̾ï¤ÎJKS¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢key.jksÆâ¤Î¥¨¥ó¥È¥ê¤òPKCS#11¥¿¥¤¥×¤Î¥Ï¡¼¥É¥¦¥§¥¢¡¦¥Ù¡¼¥¹¤Î¥­¡¼¥¹¥È¥¢Æâ¤Ë¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-importkeystore
++.fl
++ \-srckeystore key.jks \-destkeystore NONE
++.fl
++ \-srcstoretype JKS \-deststoretype PKCS11
++.fl
++ \-srcstorepass \fP\f4<source keystore password>\fP\f3 \-deststorepass \fP\f4<destination keystore password>\fP\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤Þ¤¿¡¢importkeystore¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ì¤Ð¡¢¤¢¤ë¥½¡¼¥¹¡¦¥­¡¼¥¹¥È¥¢Æâ¤Îñ°ì¤Î¥¨¥ó¥È¥ê¤ò¥¿¡¼¥²¥Ã¥È¡¦¥­¡¼¥¹¥È¥¢¤Ë¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¾åµ­¤ÎÎã¤Ç¼¨¤·¤¿¥ª¥×¥·¥ç¥ó¤Ë²Ã¤¨¡¢¥¤¥ó¥Ý¡¼¥ÈÂоݤȤʤëÊÌ̾¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£srcalias¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¾ì¹ç¤Ë¤Ï¡¢¥¿¡¼¥²¥Ã¥ÈÊÌ̾¤â¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é»ØÄê¤Ç¤­¤ë¤Û¤«¡¢ÈëÌ©/ÈëÌ©¸°¤ÎÊݸîÍѥѥ¹¥ï¡¼¥É¤ä¥¿¡¼¥²¥Ã¥ÈÊݸîÍѥѥ¹¥ï¡¼¥É¤â»ØÄê¤Ç¤­¤Þ¤¹¡£¤½¤ÎÊýË¡¤ò¼¨¤¹¥³¥Þ¥ó¥É¤ò¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-importkeystore
++.fl
++ \-srckeystore key.jks \-destkeystore NONE
++.fl
++ \-srcstoretype JKS \-deststoretype PKCS11
++.fl
++ \-srcstorepass \fP\f4<source keystore password>\fP\f3 \-deststorepass \fP\f4<destination keystore password>\fP\f3
++.fl
++ \-srcalias myprivatekey \-destalias myoldprivatekey
++.fl
++ \-srckeypass \fP\f4<source entry password>\fP\f3 \-destkeypass \fP\f4<destination entry password>\fP\f3
++.fl
++ \-noprompt
++.fl
++\fP
++.fi
++
++.LP
++.SS
++°ìÈÌŪ¤ÊSSL¥µ¡¼¥Ð¡¼ÍѤξÚÌÀ½ñ¤ÎÀ¸À®
++.LP
++.LP
++¼¡¤Ë¡¢3¤Ä¤Î¥¨¥ó¥Æ¥£¥Æ¥£¡¢¤Ä¤Þ¤ê¥ë¡¼¥ÈCA(root)¡¢Ãæ´ÖCA(ca)¤ª¤è¤ÓSSL¥µ¡¼¥Ð¡¼(server)ÍѤθ°¥Ú¥¢¤È¾ÚÌÀ½ñ¤òÀ¸À®¤¹¤ëkeytool¥³¥Þ¥ó¥É¤ò¼¨¤·¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¾ÚÌÀ½ñ¤òƱ¤¸¥­¡¼¥¹¥È¥¢¤Ë³ÊǼ¤¹¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤ì¤é¤ÎÎã¤Ç¤Ï¡¢¸°¤Î¥¢¥ë¥´¥ê¥º¥à¤È¤·¤ÆRSA¤ò»ØÄꤹ¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++keytool \-genkeypair \-keystore root.jks \-alias root \-ext bc:c
++.fl
++keytool \-genkeypair \-keystore ca.jks \-alias ca \-ext bc:c
++.fl
++keytool \-genkeypair \-keystore server.jks \-alias server
++.fl
++
++.fl
++keytool \-keystore root.jks \-alias root \-exportcert \-rfc > root.pem
++.fl
++
++.fl
++keytool \-storepass \fP\f4<storepass>\fP\f3 \-keystore ca.jks \-certreq \-alias ca | keytool \-storepass \fP\f4<storepass>\fP\f3 \-keystore root.jks \-gencert \-alias root \-ext BC=0 \-rfc > ca.pem
++.fl
++keytool \-keystore ca.jks \-importcert \-alias ca \-file ca.pem
++.fl
++
++.fl
++keytool \-storepass \fP\f4<storepass>\fP\f3 \-keystore server.jks \-certreq \-alias server | keytool \-storepass \fP\f4<storepass>\fP\f3 \-keystore ca.jks \-gencert \-alias ca \-ext ku:c=dig,kE \-rfc > server.pem
++.fl
++cat root.pem ca.pem server.pem | keytool \-keystore server.jks \-importcert \-alias server
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÍѸì¤È·Ù¹ð"
++.LP
++.SS
++¥­¡¼¥¹¥È¥¢
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤Ï¡¢°Å¹æ²½¤Î¸°¤È¾ÚÌÀ½ñ¤ò³ÊǼ¤¹¤ë¤¿¤á¤Îµ¡Ç½¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f3¥­¡¼¥¹¥È¥¢¤Î¥¨¥ó¥È¥ê\fP
++.LP
++¥­¡¼¥¹¥È¥¢¤Ë¤Ï°Û¤Ê¤ë¥¿¥¤¥×¤Î¥¨¥ó¥È¥ê¤ò´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£\f3keytool\fP¤ÇºÇ¤âŬÍÑÈϰϤι­¤¤¥¨¥ó¥È¥ê¡¦¥¿¥¤¥×¤Ï¡¢¼¡¤Î2¤Ä¤Ç¤¹¡£
++.RS 3
++.TP 3
++1.
++\f3¸°¤Î¥¨¥ó¥È¥ê\fP \- ³Æ¥¨¥ó¥È¥ê¤Ï¡¢Èó¾ï¤Ë½ÅÍפʰŹ沽¤Î¸°¤Î¾ðÊó¤òÊÝ»ý¤·¤Þ¤¹¡£¤³¤Î¾ðÊó¤Ï¡¢µö²Ä¤·¤Æ¤¤¤Ê¤¤¥¢¥¯¥»¥¹¤òËɤ°¤¿¤á¤Ë¡¢Êݸ¤ì¤¿·Á¤Ç³ÊǼ¤µ¤ì¤Þ¤¹¡£°ìÈ̤ˡ¢¤³¤Î¼ï¤Î¥¨¥ó¥È¥ê¤È¤·¤Æ³ÊǼ¤µ¤ì¤ë¸°¤Ï¡¢ÈëÌ©¸°¤«¡¢Âбþ¤¹¤ë¸ø³«¸°¤Î¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤òȼ¤¦ÈëÌ©¸°¤Ç¤¹¡£\f3keytool\fP¤¬¤³¤ÎξÊý¤Î¥¿¥¤¥×¤Î¥¨¥ó¥È¥ê¤ò½èÍý¤Ç¤­¤ë¤Î¤ËÂФ·¡¢\f3jarsigner\fP¥Ä¡¼¥ë¤Ï¸å¼Ô¤Î¥¿¥¤¥×¤Î¥¨¥ó¥È¥ê¡¢¤Ä¤Þ¤êÈëÌ©¸°¤È¤½¤ì¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Î¤ß¤ò½èÍý¤·¤Þ¤¹¡£
++.TP 3
++2.
++\f3¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥¨¥ó¥È¥ê\fP \- ³Æ¥¨¥ó¥È¥ê¤Ï¡¢Âè»°¼Ô¤«¤é¤Î¸ø³«¸°¾ÚÌÀ½ñ¤ò1¤Ä´Þ¤ó¤Ç¤¤¤Þ¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤Ï¡¢¡Ö¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¡×¤È¸Æ¤Ð¤ì¤Þ¤¹¡£¤½¤ì¤Ï¡¢¾ÚÌÀ½ñÆâ¤Î¸ø³«¸°¤¬¡¢¾ÚÌÀ½ñ¤Î¡ÖSubject¡×(½êÍ­¼Ô)¤Ë¤è¤Ã¤ÆÆÃÄꤵ¤ì¤ë¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤ËͳÍ褹¤ë¤â¤Î¤Ç¤¢¤ë¤³¤È¤ò¡¢¥­¡¼¥¹¥È¥¢¤Î½êÍ­¼Ô¤¬¿®Íꤹ¤ë¤«¤é¤Ç¤¹¡£¾ÚÌÀ½ñ¤Îȯ¹Ô¼Ô¤Ï¡¢¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤ë¤³¤È¤Ë¤è¤Ã¤Æ¡¢¤½¤ÎÆâÍƤòÊݾڤ·¤Þ¤¹¡£
++.RE
++.TP 2
++o
++\f3¥­¡¼¥¹¥È¥¢¤ÎÊÌ̾\fP
++.LP
++¥­¡¼¥¹¥È¥¢¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê(¸°¤ª¤è¤Ó¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ)¤Ï¡¢°ì°Õ¤Î\f2ÊÌ̾\fP¤ò²ð¤·¤Æ¥¢¥¯¥»¥¹¤µ¤ì¤Þ¤¹¡£
++.LP
++ÊÌ̾¤ò»ØÄꤹ¤ë¤Î¤Ï¡¢\-genseckey¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤ÆÈëÌ©¸°¤òÀ¸À®¤·¤¿¤ê¡¢\-genkeypair¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¸°¥Ú¥¢(¸ø³«¸°¤ÈÈëÌ©¸°)¤òÀ¸À®¤·¤¿¤ê¡¢\-importcert¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Æ¾ÚÌÀ½ñ¤Þ¤¿¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥ê¥¹¥È¤ËÄɲ乤ë¤Ê¤É¡¢ÆÃÄê¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤ò¥­¡¼¥¹¥È¥¢¤ËÄɲ乤ë¾ì¹ç¤Ç¤¹¡£¤³¤ì°Ê¸å¡¢\f3keytool\fP¥³¥Þ¥ó¥É¤Ç¥¨¥ó¥Æ¥£¥Æ¥£¤ò»²¾È¤¹¤ë¾ì¹ç¤Ï¡¢¤³¤Î¤È¤­¤Ë»ØÄꤷ¤¿ÊÌ̾¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¤¿¤È¤¨¤Ð¡¢\f2duke\fP¤È¤¤¤¦ÊÌ̾¤ò»ÈÍѤ·¤Æ¿·¤·¤¤¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥Ú¥¢¤òÀ¸À®¤·¡¢¸ø³«¸°¤ò¼«¸Ê½ð̾¾ÚÌÀ½ñ(¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò»²¾È)¤Ç¥é¥Ã¥×¤¹¤ë¤È¤·¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-genkeypair \-alias duke \-keypass dukekeypasswd
++.fl
++\fP
++.fi
++.LP
++¤³¤³¤Ç¤Ï¡¢½é´ü¥Ñ¥¹¥ï¡¼¥É¤È¤·¤Ædukekeypasswd¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹¡£°Ê¸å¡¢ÊÌ̾\f2duke\fP¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿ÈëÌ©¸°¤Ë¥¢¥¯¥»¥¹¤¹¤ë¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ï¡¢¤³¤Î¥Ñ¥¹¥ï¡¼¥É¤¬É¬Íפˤʤê¤Þ¤¹¡£duke¤ÎÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤ò¤¢¤È¤«¤éÊѹ¹¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ keytool \-keypasswd \-alias duke \-keypass dukekeypasswd \-new newpass
++.fl
++\fP
++.fi
++.LP
++¥Ñ¥¹¥ï¡¼¥É¤¬¡¢dukekeypasswd¤«¤énewpass¤ËÊѹ¹¤µ¤ì¤Þ¤¹¡£
++.LP
++Ãí°Õ: ¥Æ¥¹¥È¤òÌÜŪ¤È¤¹¤ë¾ì¹ç¡¢¤Þ¤¿¤Ï°ÂÁ´¤Ç¤¢¤ë¤³¤È¤¬¤ï¤«¤Ã¤Æ¤¤¤ë¥·¥¹¥Æ¥à¤Ç¼Â¹Ô¤¹¤ë¾ì¹ç°Ê³°¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ä¥¹¥¯¥ê¥×¥È¤Ç¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£É¬Íפʥѥ¹¥ï¡¼¥É¤Î¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.TP 2
++o
++\f3¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ\fP
++.LP
++\f2java.security\fP¥Ñ¥Ã¥±¡¼¥¸¤ÇÄ󶡤µ¤ì¤Æ¤¤¤ë\f2KeyStore\fP¥¯¥é¥¹¤Ï¡¢¥­¡¼¥¹¥È¥¢Æâ¤Î¾ðÊó¤Ø¤Î¥¢¥¯¥»¥¹¤ª¤è¤Ó¾ðÊó¤ÎÊѹ¹¤ò¹Ô¤¦¤¿¤á¤Î¡¢ÌÀ³Î¤ËÄêµÁ¤µ¤ì¤¿¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ󶡤·¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Î¸ÇÄê¼ÂÁõ¤È¤·¤Æ¤Ï¡¢¤½¤ì¤¾¤ì¤¬ÆÃÄê¤Î\f2¥¿¥¤¥×\fP¤Î¥­¡¼¥¹¥È¥¢¤òÂоݤȤ¹¤ëÊ£¿ô¤Î°Û¤Ê¤ë¼ÂÁõ¤¬Â¸ºß²Äǽ¤Ç¤¹¡£
++.LP
++¸½ºß¡¢\f3keytool\fP¤È\f3jarsigner\fP¤Î2¤Ä¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Ä¡¼¥ë¤È¡¢\f3Policy Tool\fP¤È¤¤¤¦Ì¾Á°¤ÎGUI¥Ù¡¼¥¹¤Î¥Ä¡¼¥ë¤¬¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹¡£\f2KeyStore\fP¤Ïpublic¤È¤·¤Æ»ÈÍѲÄǽ¤Ê¤Î¤Ç¡¢¥æ¡¼¥¶¡¼¤ÏKeyStore¤ò»ÈÍѤ·¤¿Â¾¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤âºîÀ®¤Ç¤­¤Þ¤¹¡£
++.LP
++¥­¡¼¥¹¥È¥¢¤Ë¤Ï¡¢Oracle¤¬Ä󶡤¹¤ëÁȹþ¤ß¤Î¥Ç¥Õ¥©¥ë¥È¤Î¼ÂÁõ¤¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢JKS¤È¤¤¤¦Ì¾Á°¤ÎÆȼ«¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×(·Á¼°)¤òÍøÍѤ¹¤ë¤â¤Î¤Ç¡¢¥­¡¼¥¹¥È¥¢¤ò¥Õ¥¡¥¤¥ë¤È¤·¤Æ¼ÂÁõ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤Î¼ÂÁõ¤Ç¤Ï¡¢¸Ä¡¹¤ÎÈëÌ©¸°¤Ï¸ÄÊ̤Υѥ¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¡¢¥­¡¼¥¹¥È¥¢Á´ÂΤÎÀ°¹çÀ­¤â(ÈëÌ©¸°¤È¤ÏÊ̤Î)¥Ñ¥¹¥ï¡¼¥É¤Ë¤è¤Ã¤ÆÊݸ¤ì¤Þ¤¹¡£
++.LP
++¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤Ï¡¢¥×¥í¥Ð¥¤¥À¥Ù¡¼¥¹¤Ç¤¹¡£¶ñÂÎŪ¤Ë¤Ï¡¢\f2KeyStore\fP¤Ë¤è¤Ã¤ÆÄ󶡤µ¤ì¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬¡Ö¥µ¡¼¥Ó¥¹¡¦¥×¥í¥Ð¥¤¥À¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¡×(SPI)¤Ë´ð¤Å¤¤¤Æ¼ÂÁõ¤µ¤ì¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢Âбþ¤¹¤ë\f2KeystoreSpi\fPÃê¾Ý¥¯¥é¥¹(¤³¤ì¤â\f2java.security\fP¥Ñ¥Ã¥±¡¼¥¸¤Ë´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹)¤¬¤¢¤ê¡¢¤³¤Î¥¯¥é¥¹¤¬¡¢¡Ö¥×¥í¥Ð¥¤¥À¡×¤¬¼ÂÁõ¤¹¤ëɬÍפΤ¢¤ëService Provider Interface¤Î¥á¥½¥Ã¥É¤òÄêµÁ¤·¤Æ¤¤¤Þ¤¹¡£(¤³¤³¤Ç¡¢¡Ö¥×¥í¥Ð¥¤¥À¡×¤È¤Ï¡¢Java Security API¤Ë¤è¤Ã¤Æ¥¢¥¯¥»¥¹²Äǽ¤Ê¥µ¡¼¥Ó¥¹¤Î¥µ¥Ö¥»¥Ã¥È¤ËÂФ·¡¢¤½¤Î¸ÇÄê¼ÂÁõ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Þ¤¿¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î½¸¹ç¤Î¤³¤È¤Ç¤¹¡£)¤·¤¿¤¬¤Ã¤Æ¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÄ󶡤¹¤ë¤Ë¤Ï¡¢
++.na
++\f2Java°Å¹æ²½¥¢¡¼¥­¥Æ¥¯¥Á¥ãÍÑ¥×¥í¥Ð¥¤¥À¤Î¼ÂÁõÊýË¡\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html¤ÇÀâÌÀ¤·¤Æ¤¤¤ë¤è¤¦¤Ë¡¢¥¯¥é¥¤¥¢¥ó¥È¤¬¡Ö¥×¥í¥Ð¥¤¥À¡×¤ò¼ÂÁõ¤·¡¢KeystoreSpi¥µ¥Ö¥¯¥é¥¹¤Î¼ÂÁõ¤òÄ󶡤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ç¤Ï¡¢\f2KeyStore\fP¥¯¥é¥¹¤¬Ä󶡤¹¤ëgetInstance¥Õ¥¡¥¯¥È¥ê¡¦¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ë¤³¤È¤Ç¡¢ÍÍ¡¹¤Ê¥×¥í¥Ð¥¤¥À¤«¤é°Û¤Ê¤ë\f2¥¿¥¤¥×\fP¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÁªÂò¤Ç¤­¤Þ¤¹¡£¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤Ï¡¢¥­¡¼¥¹¥È¥¢¾ðÊó¤Î³ÊǼ·Á¼°¤È¥Ç¡¼¥¿·Á¼°¤òÄêµÁ¤¹¤ë¤È¤È¤â¤Ë¡¢¥­¡¼¥¹¥È¥¢Æâ¤ÎÈó¸ø³«/ÈëÌ©¸°¤È¥­¡¼¥¹¥È¥¢¼«ÂΤÎÀ°¹çÀ­¤òÊݸ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤ë¥¢¥ë¥´¥ê¥º¥à¤òÄêµÁ¤·¤Þ¤¹¡£°Û¤Ê¤ë¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤Ë¤Ï¡¢¸ß´¹À­¤Ï¤¢¤ê¤Þ¤»¤ó¡£
++.LP
++\f3keytool\fP¤Ï¡¢Ç¤°Õ¤Î¥Õ¥¡¥¤¥ë¥Ù¡¼¥¹¤Î¥­¡¼¥¹¥È¥¢¼ÂÁõ¤ÇÆ°ºî¤·¤Þ¤¹¡£(¤³¤ì¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤éÅϤµ¤ì¤¿¥­¡¼¥¹¥È¥¢¤Î¾ì½ê¤ò¥Õ¥¡¥¤¥ë̾¤È¤·¤Æ°·¤¤¡¢¤³¤ì¤òFileInputStream¤ËÊÑ´¹¤·¤Æ¡¢FileInputStream¤«¤é¥­¡¼¥¹¥È¥¢¤Î¾ðÊó¤ò¥í¡¼¥É¤·¤Þ¤¹¡£)°ìÊý¡¢\f3jarsigner\fP¥Ä¡¼¥ë¤È\f3policytool\fP¥Ä¡¼¥ë¤Ï¡¢URL¤Ç»ØÄê²Äǽ¤ÊǤ°Õ¤Î¾ì½ê¤«¤é¥­¡¼¥¹¥È¥¢¤òÆɤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++\f3keytool\fP¤È\f3jarsigner\fP¤Î¾ì¹ç¡¢\f2\-storetype\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£\f3Policy Tool\fP¤Î¾ì¹ç¤Ï¡¢¡Ö¥­¡¼¥¹¥È¥¢¡×¥á¥Ë¥å¡¼¤Ë¤è¤Ã¤Æ¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++¥æ¡¼¥¶¡¼¤¬¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤òÌÀ¼¨Åª¤Ë»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢Ã±½ã¤Ë¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤Ç»ØÄꤵ¤ì¤¿\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤ˴ð¤Å¤¤¤Æ¡¢¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤¬ÁªÂò¤µ¤ì¤Þ¤¹¡£¤³¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤Ï\f2java.security\fP¤È¸Æ¤Ð¤ì¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Ç¥£¥ì¥¯¥È¥ê\f2java.home\fP/lib/securityÆâ¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹¡£¤³¤³¤Ç¡¢\f2java.home\fP¤Ï¼Â¹Ô»þ´Ä¶­¤Î¥Ç¥£¥ì¥¯¥È¥ê(SDK¤Î\f2jre\fP¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤ÏJava 2 Runtime Environment¤Î¥È¥Ã¥×¥ì¥Ù¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê)¤Ç¤¹¡£
++.LP
++³Æ¥Ä¡¼¥ë¤Ï¡¢\f2keystore.type\fP¤ÎÃͤò¼èÆÀ¤·¡¢¤³¤ÎÃͤǻØÄꤵ¤ì¤¿¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤ò¼ÂÁõ¤·¤Æ¤¤¤ë¥×¥í¥Ð¥¤¥À¤¬¸«¤Ä¤«¤ë¤Þ¤Ç¡¢¸½ºß¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥×¥í¥Ð¥¤¥À¤òÄ´¤Ù¤Þ¤¹¡£ÌÜŪ¤Î¥×¥í¥Ð¥¤¥À¤¬¸«¤Ä¤«¤ë¤È¡¢¤½¤Î¥×¥í¥Ð¥¤¥À¤«¤é¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++\f2KeyStore\fP¥¯¥é¥¹¤ËÄêµÁ¤µ¤ì¤Æ¤¤¤ëstatic¥á¥½¥Ã¥É\f2getDefaultType\fP¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ä¥¢¥×¥ì¥Ã¥È¤«¤é\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤò¼èÆÀ¤Ç¤­¤Þ¤¹¡£¼¡¤Î¥³¡¼¥É¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×(\f2keystore.type\fP¥×¥í¥Ñ¥Æ¥£¤Ç»ØÄꤵ¤ì¤¿¥¿¥¤¥×)¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤òÀ¸À®¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
++.fl
++\fP
++.fi
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Î¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×¤ÏJKS(Oracle¤¬Ä󶡤¹¤ëÆȼ«¤Î¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ)¤Ç¤¹¡£¤³¤ì¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ëÆâ¤Î¼¡¤Î¹Ô¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ keystore.type=jks
++.fl
++\fP
++.fi
++.LP
++³Æ¥Ä¡¼¥ë¤Ç¥Ç¥Õ¥©¥ë¥È°Ê³°¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¾å¤Î¹Ô¤òÊѹ¹¤·¤ÆÊ̤Υ­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++¤¿¤È¤¨¤Ð¡¢pkcs12¤È¸Æ¤Ð¤ì¤ë¥¿¥¤¥×¤Î¥­¡¼¥¹¥È¥¢¤Î¼ÂÁõ¤òÄ󶡤·¤Æ¤¤¤ë¥×¥í¥Ð¥¤¥À¡¦¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ¹¤ë¤Ë¤Ï¡¢¾å¤Î¹Ô¤ò¼¡¤Î¤è¤¦¤ËÊѹ¹¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ keystore.type=pkcs12
++.fl
++\fP
++.fi
++.LP
++Ãí°Õ: ¥­¡¼¥¹¥È¥¢¤Î¥¿¥¤¥×¤Î»ØÄê¤Ç¤Ï¡¢Âçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢JKS¤Èjks¤ÏƱ¤¸¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++¾ÚÌÀ½ñ
++.LP
++\f3¾ÚÌÀ½ñ\fP(\f3¸ø³«¸°¾ÚÌÀ½ñ\fP¤È¤â¸Æ¤Ð¤ì¤Þ¤¹)¤È¤Ï¡¢¤¢¤ë¥¨¥ó¥Æ¥£¥Æ¥£(\f2ȯ¹Ô¼Ô\fP)¤«¤é¤Î¥Ç¥¸¥¿¥ë½ð̾ÉÕ¤­¤Îʸ½ñ¤Î¤³¤È¤Ç¤¹¡£¾ÚÌÀ½ñ¤Ë¤Ï¡¢Â¾¤Î¤¢¤ë¥¨¥ó¥Æ¥£¥Æ¥£(\f2½ð̾¼Ô\fP)¤Î¸ø³«¸°(¤ª¤è¤Ó¤½¤Î¾¤Î¾ðÊó)¤¬ÆÃÊ̤ÊÃͤò»ý¤Ã¤Æ¤¤¤ë¤³¤È¤¬½ñ¤«¤ì¤Æ¤¤¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++\f3¾ÚÌÀ½ñ¤ÎÍѸì\fP
++.RS 3
++.TP 3
++¸ø³«¸°
++.LP
++¸ø³«¸°¤Ï¡¢ÆÃÄê¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤¿¿ô¤Ç¤¹¡£¸ø³«¸°¤Ï¡¢³ºÅö¤¹¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤È¤Î´Ö¤Ë¿®Íê¤Ç¤­¤ë´Ø·¸¤ò»ý¤ÄɬÍפ¬¤¢¤ë¤¹¤Ù¤Æ¤Î¿Í¤ËÂФ·¤Æ¸ø³«¤¹¤ë¤³¤È¤ò°Õ¿Þ¤·¤¿¤â¤Î¤Ç¤¹¡£¸ø³«¸°¤Ï¡¢½ð̾¤ò¸¡¾Ú¤¹¤ë¤Î¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++¥Ç¥¸¥¿¥ë½ð̾
++.LP
++¥Ç¡¼¥¿¤¬¡Ö\f2¥Ç¥¸¥¿¥ë½ð̾\fP¡×¤µ¤ì¤ë¤È¡¢¤½¤Î¥Ç¡¼¥¿¤Ï¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤Î¡Ö¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¡×¤È¡¢¤½¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤¬¥Ç¡¼¥¿¤ÎÆâÍƤˤĤ¤¤ÆÃΤäƤ¤¤ë¤³¤È¤ò¾ÚÌÀ½ñ¤¹¤ë½ð̾¤È¤È¤â¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£¥¨¥ó¥Æ¥£¥Æ¥£¤ÎÈëÌ©¸°¤ò»ÈÍѤ·¤Æ¥Ç¡¼¥¿¤Ë½ð̾¤òÉÕ¤±¤ë¤È¡¢¥Ç¡¼¥¿¤Îµ¶Â¤¤ÏÉÔ²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£
++.LP
++¥¨¥ó¥Æ¥£¥Æ¥£¤òÆÃÄꤹ¤ë¤¿¤á¤Î´ûÃΤÎÊýË¡¤Ç¤¹¡£¥·¥¹¥Æ¥à¤Ë¤è¤Ã¤Æ¤Ï¡¢¸ø³«¸°¤ò¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤Ë¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤¹¡£¸ø³«¸°¤Î¾¤Ë¤â¡¢Unix UID¤äÅŻҥ᡼¥ë¡¦¥¢¥É¥ì¥¹¡¢X.509¼±ÊÌ̾¤Ê¤É¡¢ÍÍ¡¹¤Ê¤â¤Î¤ò¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤È¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.TP 3
++½ð̾
++.LP
++½ð̾¤Ï¡¢¤Ê¤ó¤é¤«¤Î¥Ç¡¼¥¿¤ò´ð¤Ë¥¨¥ó¥Æ¥£¥Æ¥£(\f2½ð̾¼Ô\fP¡£¾ÚÌÀ½ñ¤Ë´Ø¤·¤Æ¤Ï\f2ȯ¹Ô¼Ô\fP¤È¤â¸Æ¤Ð¤ì¤Þ¤¹)¤ÎÈëÌ©¸°¤ò»ÈÍѤ·¤Æ·×»»¤µ¤ì¤Þ¤¹¡£
++.TP 3
++ÈëÌ©¸°
++.LP
++ÈëÌ©¸°¤ÏÆÃÄê¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Î¤ß¤¬ÃΤäƤ¤¤ë¿ô¤Î¤³¤È¤Ç¡¢¤³¤Î¿ô¤Î¤³¤È¤ò¡¢¤½¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤ÎÈëÌ©¸°¤È¤¤¤¤¤Þ¤¹¡£ÈëÌ©¸°¤Ï¡¢Â¾¤ËÃΤé¤ì¤Ê¤¤¤è¤¦¤ËÈëÌ©¤Ë¤·¤Æ¤ª¤¯¤³¤È¤¬Á°Äó¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£ÈëÌ©¸°¤È¸ø³«¸°¤Ï¡¢¤¹¤Ù¤Æ¤Î¸ø³«¸°°Å¹æ²½¥·¥¹¥Æ¥à¤ÇÂФˤʤäƸºß¤·¤Æ¤¤¤Þ¤¹¡£DSA¤Ê¤É¤Îŵ·¿Åª¤Ê¸ø³«¸°°Å¹æ²½¥·¥¹¥Æ¥à¤Î¾ì¹ç¡¢1¤Ä¤ÎÈëÌ©¸°¤ÏÀµ³Î¤Ë1¤Ä¤Î¸ø³«¸°¤ËÂбþ¤·¤Þ¤¹¡£ÈëÌ©¸°¤Ï¡¢½ð̾¤ò·×»»¤¹¤ë¤Î¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.TP 3
++¥¨¥ó¥Æ¥£¥Æ¥£
++.LP
++¥¨¥ó¥Æ¥£¥Æ¥£¤Ï¡¢¿Í¡¢ÁÈ¿¥¡¢¥×¥í¥°¥é¥à¡¢¥³¥ó¥Ô¥å¡¼¥¿¡¢´ë¶È¡¢¶ä¹Ô¤Ê¤É¡¢°ìÄê¤ÎÅٹ礤¤Ç¿®Íê¤ÎÂоݤȤʤëÍÍ¡¹¤Ê¤â¤Î¤ò»Ø¤·¤Þ¤¹¡£
++.RE
++.LP
++¸ø³«¸°°Å¹æ²½¤Ç¤Ï¡¢¤½¤ÎÀ­¼Á¾å¡¢¥æ¡¼¥¶¡¼¤Î¸ø³«¸°¤Ë¥¢¥¯¥»¥¹¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Â絬ÌϤʥͥåȥ¥¯´Ä¶­¤Ç¤Ï¡¢¸ß¤¤¤ËÄÌ¿®¤·¤Æ¤¤¤ë¥¨¥ó¥Æ¥£¥Æ¥£´Ö¤Ç°ÊÁ°¤Î´Ø·¸¤¬°ú³¤­³ÎΩ¤µ¤ì¤Æ¤¤¤ë¤È²¾Äꤷ¤¿¤ê¡¢»ÈÍѤµ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¸ø³«¸°¤ò¼ý¤á¤¿¿®Íê¤Ç¤­¤ë¥ê¥Ý¥¸¥È¥ê¤¬Â¸ºß¤¹¤ë¤È²¾Äꤷ¤¿¤ê¤¹¤ë¤³¤È¤ÏÉÔ²Äǽ¤Ç¤¹¡£¤³¤Î¤è¤¦¤Ê¸ø³«¸°¤ÎÇÛÉۤ˴ؤ¹¤ëÌäÂê¤ò²ò·è¤¹¤ë¤¿¤á¤Ë¾ÚÌÀ½ñ¤¬¹Í°Æ¤µ¤ì¤Þ¤·¤¿¡£¸½ºß¤Ç¤Ï¡¢\f2¾ÚÌÀ½ñȯ¹Ô¶É\fP(CA)¤¬¿®Íê¤Ç¤­¤ëÂè»°¼Ô¤È¤·¤Æµ¡Ç½¤·¤Þ¤¹¡£CA¤Ï¡¢Â¾¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Î¾ÚÌÀ½ñ¤Ë½ð̾¤¹¤ë(ȯ¹Ô¤¹¤ë)¹Ô°Ù¤ò¡¢¿®Íꤷ¤ÆǤ¤µ¤ì¤Æ¤¤¤ë¥¨¥ó¥Æ¥£¥Æ¥£(´ë¶È¤Ê¤É)¤Ç¤¹¡£CA¤ÏˡΧ¾å¤Î·ÀÌó¤Ë¹´Â«¤µ¤ì¤ë¤Î¤Ç¡¢Í­¸ú¤«¤Ä¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¤ß¤òºîÀ®¤¹¤ë¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.na
++\f2VeriSign\fP @
++.fi
++http://www.verisign.com/¡¢
++.na
++\f2Thawte\fP @
++.fi
++http://www.thawte.com/¡¢
++.na
++\f2Entrust\fP @
++.fi
++http://www.entrust.com/¤ò¤Ï¤¸¤á¡¢Â¿¤¯¤Î¸øŪ¤Ê¾ÚÌÀ½ñȯ¹Ô¶É¤¬Â¸ºß¤·¤Þ¤¹¡£Microsoft¤Îǧ¾Ú¥µ¡¼¥Ð¡¼¡¢Entrust¤ÎCAÀ½Éʤʤɤò½ê°ÁÈ¿¥Æâ¤ÇÍøÍѤ¹¤ì¤Ð¡¢Æȼ«¤Î¾ÚÌÀ½ñȯ¹Ô¶É¤ò±¿±Ä¤¹¤ë¤³¤È¤â²Äǽ¤Ç¤¹¡£
++.LP
++\f3keytool\fP¤ò»ÈÍѤ¹¤ë¤È¡¢¾ÚÌÀ½ñ¤Îɽ¼¨¡¢¥¤¥ó¥Ý¡¼¥È¤ª¤è¤Ó¥¨¥¯¥¹¥Ý¡¼¥È¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¤òÀ¸À®¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++¸½ºß¡¢\f3keytool\fP¤ÏX.509¾ÚÌÀ½ñ¤òÂоݤˤ·¤Æ¤¤¤Þ¤¹¡£
++.TP 2
++o
++\f3X.509¾ÚÌÀ½ñ\fP
++.LP
++X.509µ¬³Ê¤Ç¤Ï¡¢¾ÚÌÀ½ñ¤Ë´Þ¤á¤ë¾ðÊó¤¬ÄêµÁ¤µ¤ì¤Æ¤ª¤ê¡¢¤³¤Î¾ðÊó¤ò¾ÚÌÀ½ñ¤Ë½ñ¤­¹þ¤àÊýË¡(¥Ç¡¼¥¿·Á¼°)¤Ë¤Ä¤¤¤Æ¤âµ­½Ò¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¾ÚÌÀ½ñ¤Î¤¹¤Ù¤Æ¤Î¥Ç¡¼¥¿¤Ï¡¢ASN.1/DER¤È¸Æ¤Ð¤ì¤ë2¤Ä¤Î´ØÏ¢µ¬³Ê¤ò»ÈÍѤ·¤ÆÉä¹æ²½¤µ¤ì¤Þ¤¹¡£\f2Abstract Syntax Notation 1\fP¤Ï¥Ç¡¼¥¿¤Ë¤Ä¤¤¤Æµ­½Ò¤·¤Æ¤¤¤Þ¤¹¡£\f2Definite Encoding Rules\fP¤Ï¡¢¥Ç¡¼¥¿¤ÎÊݸ¤ª¤è¤ÓžÁ÷¤ÎÊýË¡¤Ë¤Ä¤¤¤Æµ­½Ò¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++¤¹¤Ù¤Æ¤ÎX.509¾ÚÌÀ½ñ¤Ï¡¢½ð̾¤Î¾¤Ë¼¡¤Î¥Ç¡¼¥¿¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£
++.RS 3
++.TP 3
++¥Ð¡¼¥¸¥ç¥ó
++.LP
++¾ÚÌÀ½ñ¤ËŬÍѤµ¤ì¤ëX.509µ¬³Ê¤Î¥Ð¡¼¥¸¥ç¥ó¤òÆÃÄꤷ¤Þ¤¹¡£¾ÚÌÀ½ñ¤Ë»ØÄê¤Ç¤­¤ë¾ðÊó¤Ï¡¢¥Ð¡¼¥¸¥ç¥ó¤Ë¤è¤Ã¤Æ°Û¤Ê¤ê¤Þ¤¹¡£¤³¤ì¤Þ¤Ç¤Ë¡¢3¤Ä¤Î¥Ð¡¼¥¸¥ç¥ó¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\f3keytool\fP¤Ç¤Ï¡¢v1¡¢v2¤ª¤è¤Óv3¤Î¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È¤È¥¨¥¯¥¹¥Ý¡¼¥È¤¬²Äǽ¤Ç¤¹¡£v3¤Î¾ÚÌÀ½ñ¤òÀ¸À®¤·¤Þ¤¹¡£
++.LP
++\f2X.509 Version 1\fP¤Ï¡¢1988ǯ¤«¤éÍøÍѤµ¤ì¤Æ¹­¤¯ÉáµÚ¤·¤Æ¤ª¤ê¡¢ºÇ¤â°ìÈÌŪ¤Ç¤¹¡£
++.LP
++\f2X.509 Version 2\fP¤Ç¤Ï¡¢Subject¤äȯ¹Ô¼Ô¤Î̾Á°¤ò¤¢¤È¤ÇºÆÍøÍѤǤ­¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ë¡¢Subject¤Èȯ¹Ô¼Ô¤Î°ì°Õ¼±Ê̻ҤγµÇ°¤¬Æ³Æþ¤µ¤ì¤Þ¤·¤¿¡£¤Û¤È¤ó¤É¤Î¾ÚÌÀ½ñ¥×¥í¥Õ¥¡¥¤¥ëʸ½ñ¤Ç¤Ï¡¢Ì¾Á°¤òºÆ»ÈÍѤ·¤Ê¤¤¤³¤È¤È¡¢¾ÚÌÀ½ñ¤Ç°ì°Õ¤Î¼±Ê̻Ҥò»ÈÍѤ·¤Ê¤¤¤³¤È¤¬¡¢¶¯¤¯¿ä¾©¤µ¤ì¤Æ¤¤¤Þ¤¹¡£Version 2¤Î¾ÚÌÀ½ñ¤Ï¡¢¹­¤¯¤Ï»ÈÍѤµ¤ì¤Æ¤¤¤Þ¤»¤ó¡£
++.LP
++\f2X.509 Version 3\fP¤ÏºÇ¤â¿·¤·¤¤(1996ǯ)µ¬³Ê¤Ç¡¢¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Î³µÇ°¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ïï¤Ç¤âÄêµÁ¤¹¤ë¤³¤È¤¬¤Ç¤­¡¢¾ÚÌÀ½ñ¤Ë´Þ¤á¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¸½ºß»ÈÍѤµ¤ì¤Æ¤¤¤ë°ìÈÌŪ¤Ê¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤È¤·¤Æ¤Ï¡¢\f2KeyUsage\fP(¡Ö½ð̾ÀìÍѡפʤɡ¢¸°¤Î»ÈÍѤòÆÃÄê¤ÎÌÜŪ¤ËÀ©¸Â¤¹¤ë)¡¢\f2AlternativeNames\fP(DNS̾¡¢ÅŻҥ᡼¥ë¡¦¥¢¥É¥ì¥¹¡¢IP¥¢¥É¥ì¥¹¤Ê¤É¡¢Â¾¤Î¥¢¥¤¥Ç¥ó¥Æ¥£¥Æ¥£¤ò¸ø³«¸°¤Ë´ØÏ¢ÉÕ¤±¤ë¤³¤È¤¬¤Ç¤­¤ë)¤Ê¤É¤¬¤¢¤ê¤Þ¤¹¡£¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ë¤Ï¡¢\f2critical\fP¤È¤¤¤¦¥Þ¡¼¥¯¤òÉÕ¤±¤Æ¡¢¤½¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Î¥Á¥§¥Ã¥¯¤È»ÈÍѤòµÁ̳¤Å¤±¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢critical¤È¥Þ¡¼¥¯¤µ¤ì¡¢KeyCertSign¤¬ÀßÄꤵ¤ì¤¿KeyUsage¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤¬¾ÚÌÀ½ñ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¤³¤Î¾ÚÌÀ½ñ¤òSSLÄÌ¿®Ãæ¤ËÄ󼨤¹¤ë¤È¡¢¾ÚÌÀ½ñ¤¬µñÈݤµ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢¾ÚÌÀ½ñ¤Î¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤Ë¤è¤Ã¤Æ¡¢´ØÏ¢¤¹¤ëÈëÌ©¸°¤¬¾ÚÌÀ½ñ¤Î½ð̾ÀìÍѤȤ·¤Æ»ØÄꤵ¤ì¤Æ¤ª¤ê¡¢SSL¤Ç¤Ï»ÈÍѤǤ­¤Ê¤¤¤¿¤á¤Ç¤¹¡£
++.TP 3
++¥·¥ê¥¢¥ëÈÖ¹æ
++.LP
++¾ÚÌÀ½ñ¤òºîÀ®¤·¤¿¥¨¥ó¥Æ¥£¥Æ¥£¤Ï¡¢¤½¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤¬È¯¹Ô¤¹¤ë¾¤Î¾ÚÌÀ½ñ¤È¶èÊ̤¹¤ë¤¿¤á¤Ë¡¢¾ÚÌÀ½ñ¤Ë¥·¥ê¥¢¥ëÈÖ¹æ¤ò³ä¤êÅö¤Æ¤Þ¤¹¡£¤³¤Î¾ðÊó¤Ï¡¢ÍÍ¡¹¤ÊÊýË¡¤Ç»ÈÍѤµ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¾ÚÌÀ½ñ¤¬¼è¤ê¾Ã¤µ¤ì¤ë¤È¡¢¥·¥ê¥¢¥ëÈֹ椬¾ÚÌÀ½ñ¤Î¼è¾Ã¤·¥ê¥¹¥È(CRL)¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++½ð̾¥¢¥ë¥´¥ê¥º¥à¼±ÊÌ»Ò
++.LP
++¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤ë¤È¤­¤ËCA¤¬»ÈÍѤ·¤¿¥¢¥ë¥´¥ê¥º¥à¤òÆÃÄꤷ¤Þ¤¹¡£
++.TP 3
++ȯ¹Ô¼Ô̾
++.LP
++¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤¿¥¨¥ó¥Æ¥£¥Æ¥£¤ÎX.500¼±ÊÌ̾¤Ç¤¹¡£¥¨¥ó¥Æ¥£¥Æ¥£¤Ï¡¢Ä̾ï¤ÏCA¤Ç¤¹¡£¤³¤Î¾ÚÌÀ½ñ¤ò»ÈÍѤ¹¤ë¤³¤È¤Ï¡¢¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤¿¥¨¥ó¥Æ¥£¥Æ¥£¤ò¿®Íꤹ¤ë¤³¤È¤ò°ÕÌ£¤·¤Þ¤¹¡£\f2¥ë¡¼¥È¤Ä¤Þ¤ê¥È¥Ã¥×¥ì¥Ù¥ë\fP¤ÎCA¤Î¾ÚÌÀ½ñ¤Ê¤É¡¢¾ì¹ç¤Ë¤è¤Ã¤Æ¤Ïȯ¹Ô¼Ô¤¬¼«¿È¤Î¾ÚÌÀ½ñ¤Ë½ð̾¤òÉÕ¤±¤ë¤³¤È¤¬¤¢¤ëÅÀ¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++Í­¸ú´ü´Ö
++.LP
++³Æ¾ÚÌÀ½ñ¤Ï¡¢¸Â¤é¤ì¤¿´ü´Ö¤Î¤ßÍ­¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î´ü´Ö¤Ï³«»Ï¤ÎÆü»þ¤È½ªÎ»¤ÎÆü»þ¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¡¢¿ôÉäÎû¤¤´ü´Ö¤«¤é100ǯ¤È¤¤¤¦Ä¹´ü¤Ë¤ï¤¿¤ë¤³¤È¤â¤¢¤ê¤Þ¤¹¡£ÁªÂò¤µ¤ì¤ëÍ­¸ú´ü´Ö¤Ï¡¢¾ÚÌÀ½ñ¤Ø¤Î½ð̾¤Ë»ÈÍѤµ¤ì¤ëÈëÌ©¸°¤Î¶¯ÅÙ¤ä¾ÚÌÀ½ñ¤Ë»Ùʧ¤¦¶â³Û¤Ê¤É¡¢ÍÍ¡¹¤ÊÍ×°ø¤Ç°Û¤Ê¤ê¤Þ¤¹¡£Í­¸ú´ü´Ö¤Ï¡¢´ØÏ¢¤¹¤ëÈëÌ©¸°¤¬Â»¤Ê¤ï¤ì¤Ê¤¤¾ì¹ç¤Ë¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤¬¸ø³«¸°¤ò¿®Íê¤Ç¤­¤ë¤È´üÂÔ¤µ¤ì¤ë´ü´Ö¤Ç¤¹¡£
++.TP 3
++Subject̾
++.LP
++¾ÚÌÀ½ñ¤Ç¸ø³«¸°¤¬¼±Ê̤µ¤ì¤Æ¤¤¤ë¥¨¥ó¥Æ¥£¥Æ¥£¤Î̾Á°¤Ç¤¹¡£¤³¤Î̾Á°¤ÏX.500ɸ½à¤ò»ÈÍѤ¹¤ë¤Î¤Ç¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈÁ´ÂΤǰì°Õ¤Ê¤â¤Î¤ÈÁÛÄꤵ¤ì¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤ÎX.500¼±ÊÌ̾(DN)¤Ç¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ CN=Java Duke, OU=Java Software Division, O=Oracle Corporation, C=US
++.fl
++\fP
++.fi
++.LP
++¤³¤ì¤é¤Ï¤½¤ì¤¾¤ì¼çÂΤÎÄ̾Ρ¢ÁÈ¿¥Ã±°Ì¡¢ÁÈ¿¥¡¢¹ñ¤òɽ¤·¤Þ¤¹¡£
++.TP 3
++Subject¤Î¸ø³«¸°¾ðÊó
++.LP
++̾Á°¤òÉÕ¤±¤é¤ì¤¿¥¨¥ó¥Æ¥£¥Æ¥£¤Î¸ø³«¸°¤È¥¢¥ë¥´¥ê¥º¥à¼±Ê̻ҤǤ¹¡£¥¢¥ë¥´¥ê¥º¥à¼±Ê̻ҤǤϡ¢¸ø³«¸°¤ËÂФ·¤Æ»ÈÍѤµ¤ì¤Æ¤¤¤ë¸ø³«¸°°Å¹æ²½¥·¥¹¥Æ¥à¤ª¤è¤Ó´ØÏ¢¤¹¤ë¸°¥Ñ¥é¥á¡¼¥¿¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++.TP 2
++o
++\f3¾ÚÌÀ½ñ¥Á¥§¡¼¥ó\fP
++.LP
++\f3keytool\fP¤Ç¤Ï¡¢ÈëÌ©¸°¤ª¤è¤Ó´ØÏ¢¤¹¤ë¾ÚÌÀ½ñ¡Ö¥Á¥§¡¼¥ó¡×¤ò´Þ¤à¥­¡¼¥¹¥È¥¢¤Î¡Ö¸°¡×¥¨¥ó¥È¥ê¤òºîÀ®¤·¡¢´ÉÍý¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤Î¤è¤¦¤Ê¥¨¥ó¥È¥ê¤Ç¤Ï¡¢ÈëÌ©¸°¤ËÂбþ¤¹¤ë¸ø³«¸°¤Ï¡¢¥Á¥§¡¼¥ó¤ÎºÇ½é¤Î¾ÚÌÀ½ñ¤Ë´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++¸°¤ò½é¤á¤ÆºîÀ®¤¹¤ë¤È(\-genkeypair¥³¥Þ¥ó¥É¤ò»²¾È)¡¢¡Ö\f2¼«¸Ê½ð̾¾ÚÌÀ½ñ\fP¡×¤È¤¤¤¦1¤Ä¤ÎÍ×ÁǤΤߤò´Þ¤à¥Á¥§¡¼¥ó¤¬³«»Ï¤µ¤ì¤Þ¤¹¡£¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ï¡¢È¯¹Ô¼Ô(½ð̾¼Ô)¤¬¼çÂÎ(¾ÚÌÀ½ñ¤Çǧ¾Ú¤µ¤ì¤Æ¤¤¤ë¸ø³«¸°¤Î»ý¤Á¼ç)¤ÈƱ¤¸¤Ç¤¢¤ë¾ÚÌÀ½ñ¤Î¤³¤È¤Ç¤¹¡£\f2\-genkeypair\fP¥³¥Þ¥ó¥É¤ò¸Æ¤Ó½Ð¤·¤Æ¿·¤·¤¤¸ø³«¸°¤ÈÈëÌ©¸°¤Î¥Ú¥¢¤òºîÀ®¤¹¤ë¤È¡¢¸ø³«¸°¤Ï¾ï¤Ë¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ç¥é¥Ã¥×¤µ¤ì¤Þ¤¹¡£
++.LP
++¤³¤Î¸å¡¢¾ÚÌÀ½ñ½ð̾¥ê¥¯¥¨¥¹¥È(CSR)¤¬À¸À®¤µ¤ì¤Æ(\-certreq¥³¥Þ¥ó¥É¤ò»²¾È)¡¢CSR¤¬¾ÚÌÀ½ñȯ¹Ô¶É(CA)¤ËÁ÷¿®¤µ¤ì¤ë¤È¡¢CA¤«¤é¤Î¥ì¥¹¥Ý¥ó¥¹¤¬¥¤¥ó¥Ý¡¼¥È¤µ¤ì(\-importcert¥³¥Þ¥ó¥É¤ò»²¾È)¡¢¸µ¤Î¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ï¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Ë¤è¤Ã¤ÆÃÖ¤­´¹¤¨¤é¤ì¤Þ¤¹¡£¥Á¥§¡¼¥ó¤ÎºÇ¸å¤Ë¤¢¤ë¤Î¤Ï¡¢Subject¤Î¸ø³«¸°¤òǧ¾Ú¤·¤¿CA¤¬È¯¹Ô¤·¤¿¾ÚÌÀ½ñ(±þÅú)¤Ç¤¹¡£¥Á¥§¡¼¥óÆâ¤Î¤½¤ÎÁ°¤Î¾ÚÌÀ½ñ¤Ï¡¢\f2CA\fP¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Ç¤¹¡£
++.LP
++CA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Ï¡¢Â¿¤¯¤Î¾ì¹ç¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ(¤Ä¤Þ¤êCA¤¬¼«¿È¤Î¸ø³«¸°¤òǧ¾Ú¤·¤¿¾ÚÌÀ½ñ)¤Ç¤¢¤ê¡¢¤³¤ì¤Ï¥Á¥§¡¼¥ó¤ÎºÇ½é¤Î¾ÚÌÀ½ñ¤Ë¤Ê¤ê¤Þ¤¹¡£¾ì¹ç¤Ë¤è¤Ã¤Æ¤Ï¡¢CA¤¬¾ÚÌÀ½ñ¤Î¥Á¥§¡¼¥ó¤òÊÖ¤¹¤³¤È¤â¤¢¤ê¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¥Á¥§¡¼¥óÆâ¤ÎºÇ¸å¤Î¾ÚÌÀ½ñ(CA¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¡¢¸°¥¨¥ó¥È¥ê¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ)¤ËÊѤï¤ê¤Ï¤¢¤ê¤Þ¤»¤ó¤¬¡¢¥Á¥§¡¼¥óÆâ¤Î¤½¤ÎÁ°¤Î¾ÚÌÀ½ñ¤Ï¡¢CSR¤ÎÁ÷¿®Àè¤ÎCA¤È¤Ï\f2Ê̤Î\fPCA¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¡¢CSR¤ÎÁ÷¿®Àè¤ÎCA¤Î¸ø³«¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Ë¤Ê¤ê¤Þ¤¹¡£¤µ¤é¤Ë¡¢¥Á¥§¡¼¥óÆâ¤Î¤½¤ÎÁ°¤Î¾ÚÌÀ½ñ¤Ï¡¢¼¡¤ÎCA¤Î¸°¤òǧ¾Ú¤¹¤ë¾ÚÌÀ½ñ¤Ë¤Ê¤ê¤Þ¤¹¡£°Ê²¼Æ±Íͤˡ¢¼«¸Ê½ð̾¤µ¤ì¤¿¡Ö¥ë¡¼¥È¡×¾ÚÌÀ½ñ¤Ë㤹¤ë¤Þ¤Ç¥Á¥§¡¼¥ó¤¬Â³¤­¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥Á¥§¡¼¥óÆâ¤Î(ºÇ½é¤Î¾ÚÌÀ½ñ°Ê¸å¤Î)³Æ¾ÚÌÀ½ñ¤Ç¤Ï¡¢¥Á¥§¡¼¥óÆâ¤Î¼¡¤Î¾ÚÌÀ½ñ¤Î½ð̾¼Ô¤Î¸ø³«¸°¤¬Ç§¾Ú¤µ¤ì¤Æ¤¤¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++¿¤¯¤ÎCA¤Ï¡¢¥Á¥§¡¼¥ó¤ò¥µ¥Ý¡¼¥È¤»¤º¤Ëȯ¹ÔºÑ¤ß¤Î¾ÚÌÀ½ñ¤Î¤ß¤òÊÖ¤·¤Þ¤¹¡£Æäˡ¢Ãæ´Ö¤ÎCA¤¬Â¸ºß¤·¤Ê¤¤¥Õ¥é¥Ã¥È¤Ê³¬Áع½Â¤¤Î¾ì¹ç¤Ï¡¢¤½¤Î·¹¸þ¤¬¸²Ãø¤Ç¤¹¡£¤³¤Î¤è¤¦¤Ê¾ì¹ç¤Ï¡¢¥­¡¼¥¹¥È¥¢¤Ë¤¹¤Ç¤Ë³ÊǼ¤µ¤ì¤Æ¤¤¤ë¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¾ðÊ󤫤顢¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤ò³ÎΩ¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++Ê̤αþÅú·Á¼°(PKCS#7¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë·Á¼°)¤Ç¤â¡¢È¯¹ÔºÑ¤ß¾ÚÌÀ½ñ¤Ë²Ã¤¨¡¢¾ÚÌÀ½ñ¥Á¥§¡¼¥ó¤Î¥µ¥Ý¡¼¥È¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£\f3keytool\fP¤Ç¤Ï¡¢¤É¤Á¤é¤Î±þÅú·Á¼°¤â°·¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++¥È¥Ã¥×¥ì¥Ù¥ë(¥ë¡¼¥È)CA¤Î¾ÚÌÀ½ñ¤Ï¡¢¼«¸Ê½ð̾¾ÚÌÀ½ñ¤Ç¤¹¡£¤¿¤À¤·¡¢¥ë¡¼¥È¤Î¸ø³«¸°¤ËÂФ¹¤ë¿®Íê¤Ï¡¢¥ë¡¼¥È¤Î¾ÚÌÀ½ñ¼«ÂΤ«¤éƳ¤­½Ð¤µ¤ì¤ë¤â¤Î¤Ç¤Ï¤Ê¤¯(¤¿¤È¤¨¤Ð¡¢VeriSign¥ë¡¼¥ÈCA¤Î¤è¤¦¤Êͭ̾¤Ê¼±ÊÌ̾¤ò»ÈÍѤ·¤¿¼«¸Ê½ð̾¾ÚÌÀ½ñ¤òºîÀ®¤¹¤ë¤³¤È¼«ÂΤÏï¤Ç¤â²Äǽ)¡¢¿·Ê¹¤Ê¤É¤Î¾¤Î¾ðÊ󸻤ËͳÍ褹¤ë¤â¤Î¤Ç¤¹¡£¥ë¡¼¥ÈCA¤Î¸ø³«¸°¤Ï¹­¤¯ÃΤé¤ì¤Æ¤¤¤Þ¤¹¡£¥ë¡¼¥ÈCA¤Î¸ø³«¸°¤ò¾ÚÌÀ½ñ¤Ë³ÊǼ¤¹¤ëÍýͳ¤Ï¡¢¾ÚÌÀ½ñ¤È¤¤¤¦·Á¼°¤Ë¤¹¤ë¤³¤È¤Ç¿¤¯¤Î¥Ä¡¼¥ë¤«¤éÍøÍѤǤ­¤ë¤è¤¦¤Ë¤Ê¤ë¤«¤é¤Ë¤¹¤®¤Þ¤»¤ó¡£¤Ä¤Þ¤ê¡¢¾ÚÌÀ½ñ¤Ï¡¢¥ë¡¼¥ÈCA¤Î¸ø³«¸°¤ò±¿¤Ö¡ÖÇÞÂΡפȤ·¤ÆÍøÍѤµ¤ì¤ë¤Î¤ß¤Ç¤¹¡£¥ë¡¼¥ÈCA¤Î¾ÚÌÀ½ñ¤ò¥­¡¼¥¹¥È¥¢¤ËÄɲ乤ë¤È¤­¤Ï¡¢¤½¤ÎÁ°¤Ë¾ÚÌÀ½ñ¤ÎÆâÍƤòɽ¼¨¤·(\f2\-printcert\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍÑ)¡¢É½¼¨¤µ¤ì¤¿¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¡¢¿·Ê¹¤ä¥ë¡¼¥ÈCA¤ÎWeb¥Ú¡¼¥¸¤Ê¤É¤«¤éÆþ¼ê¤·¤¿´ûÃΤΥե£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¤òÈæ³Ó¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 2
++o
++\f3cacerts¾ÚÌÀ½ñ¥Õ¥¡¥¤¥ë\fP
++.LP
++\f3cacerts\fP¤È¤¤¤¦Ì¾Á°¤Î¾ÚÌÀ½ñ¥Õ¥¡¥¤¥ë¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥×¥í¥Ñ¥Æ¥£¡¦¥Ç¥£¥ì¥¯¥È¥ê\f2java.home\fP/lib/security¤ËÃÖ¤«¤ì¤Æ¤¤¤Þ¤¹¡£\f2java.home\fP¤Ï¡¢¼Â¹Ô´Ä¶­¤Î¥Ç¥£¥ì¥¯¥È¥ê(SDK¤Î\f2jre\fP¥Ç¥£¥ì¥¯¥È¥ê¤Þ¤¿¤ÏJava 2 Runtime Environment¤ÎºÇ¾å°Ì¥Ç¥£¥ì¥¯¥È¥ê)¤Ç¤¹¡£
++.LP
++cacerts¥Õ¥¡¥¤¥ë¤Ï¡¢CA¤Î¾ÚÌÀ½ñ¤ò´Þ¤à¡¢¥·¥¹¥Æ¥àÁ´ÂΤΥ­¡¼¥¹¥È¥¢¤Ç¤¹¡£¥·¥¹¥Æ¥à´ÉÍý¼Ô¤Ï¡¢¥­¡¼¥¹¥È¥¢¡¦¥¿¥¤¥×¤Ëjks¤ò»ØÄꤹ¤ë¤³¤È¤Ç¡¢\f3keytool\fP¤ò»ÈÍѤ·¤Æ¤³¤Î¥Õ¥¡¥¤¥ë¤Î¹½À®¤È´ÉÍý¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£cacerts¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥»¥Ã¥È¤ò´Þ¤ó¤À¾õÂ֤ǽв٤µ¤ì¤Æ¤¤¤Þ¤¹¡£¤½¤ì¤é¤Î¾ÚÌÀ½ñ¤ò°ìÍ÷ɽ¼¨¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++keytool \-list \-keystore \fP\f4java.home\fP\f3/lib/security/cacerts
++.fl
++\fP
++.fi
++.LP
++cacerts¥­¡¼¥¹¥È¥¢¡¦¥Õ¥¡¥¤¥ë¤Î½é´ü¥Ñ¥¹¥ï¡¼¥É¤Ï¡¢changeit¤Ç¤¹¡£¥·¥¹¥Æ¥à´ÉÍý¼Ô¤Ï¡¢SDK¤Î¥¤¥ó¥¹¥È¡¼¥ë¸å¡¢¤³¤Î¥Õ¥¡¥¤¥ë¤Î¥Ñ¥¹¥ï¡¼¥É¤È¥Ç¥Õ¥©¥ë¥È¡¦¥¢¥¯¥»¥¹¸¢¤òÊѹ¹¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++\f3½ÅÍ×: \fP\f4cacerts\fP\f3¥Õ¥¡¥¤¥ë¤ò³Îǧ¤·¤Æ¤¯¤À¤µ¤¤\fP: \f2cacerts\fP¥Õ¥¡¥¤¥ëÆâ¤ÎCA¤Ï¡¢½ð̾¤ª¤è¤Ó¾¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ø¤Î¾ÚÌÀ½ñȯ¹Ô¤Î¤¿¤á¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤È¤·¤Æ¿®Íꤵ¤ì¤ë¤¿¤á¡¢\f2cacerts\fP¥Õ¥¡¥¤¥ë¤Î´ÉÍý¤Ï¿µ½Å¤Ë¹Ô¤¦É¬Íפ¬¤¢¤ê¤Þ¤¹¡£\f2cacerts\fP¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¿®Íꤹ¤ëCA¤Î¾ÚÌÀ½ñ¤Î¤ß¤¬´Þ¤Þ¤ì¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤Ï¡¢¼«¿È¤ÎÀÕǤ¤Ë¤ª¤¤¤Æ¡¢\f2cacerts\fP¥Õ¥¡¥¤¥ë¤Ë¥Ð¥ó¥É¥ë¤µ¤ì¤Æ¤¤¤ë¿®Íê¤Ç¤­¤ë¥ë¡¼¥ÈCA¾ÚÌÀ½ñ¤ò¸¡¾Ú¤·¡¢¿®ÍêÀ­¤Ë´Ø¤¹¤ëÆȼ«¤Î·èÄê¤ò¹Ô¤¤¤Þ¤¹¡£¿®Íê¤Ç¤­¤Ê¤¤CA¾ÚÌÀ½ñ¤ò\f2cacerts\fP¥Õ¥¡¥¤¥ë¤«¤éºï½ü¤¹¤ë¤Ë¤Ï¡¢\f2keytool\fP¥³¥Þ¥ó¥É¤Îºï½ü¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£\f2cacerts\fP¥Õ¥¡¥¤¥ë¤ÏJRE¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¢¤ê¤Þ¤¹¡£¤³¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë¥¢¥¯¥»¥¹¸¢¤¬¤Ê¤¤¾ì¹ç¤Ï¡¢¥·¥¹¥Æ¥à´ÉÍý¼Ô¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 2
++o
++\f3¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421¾ÚÌÀ½ñÉä¹æ²½µ¬³Ê\fP
++.LP
++¿¤¯¤Î¾ì¹ç¡¢¾ÚÌÀ½ñ¤Ï¡¢¥Ð¥¤¥Ê¥êÉä¹æ²½¤Ç¤Ï¤Ê¤¯¡¢¥¤¥ó¥¿¡¼¥Í¥Ã¥ÈRFC 1421µ¬³Ê¤ÇÄêµÁ¤µ¤ì¤Æ¤¤¤ë½ÐÎϲÄǽÉä¹æ²½Êý¼°¤ò»ÈÍѤ·¤Æ³ÊǼ¤µ¤ì¤Þ¤¹¡£¡ÖBase 64Éä¹æ²½¡×¤È¤â¸Æ¤Ð¤ì¤ë¤³¤Î¾ÚÌÀ½ñ·Á¼°¤Ç¤Ï¡¢ÅŻҥ᡼¥ë¤ä¤½¤Î¾¤Îµ¡¹½¤òÄ̤¸¤Æ¡¢Â¾¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ë¾ÚÌÀ½ñ¤òÍưפ˥¨¥¯¥¹¥Ý¡¼¥È¤Ç¤­¤Þ¤¹¡£
++.LP
++\f2\-importcert\fP¤È\f2\-printcert\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¤³¤Î·Á¼°¤Î¾ÚÌÀ½ñ¤È¥Ð¥¤¥Ê¥êÉä¹æ²½¤Î¾ÚÌÀ½ñ¤òÆɤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++\f2\-exportcert\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¥Ð¥¤¥Ê¥êÉä¹æ²½¤Î¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£¤¿¤À¤·¡¢\f2\-rfc\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Î¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++\f2\-list\fP¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¾ÚÌÀ½ñ¤ÎSHA1¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£\f2\-v\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢¿Í´Ö¤¬Æɤळ¤È¤Î¤Ç¤­¤ë·Á¼°¤Ç¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£°ìÊý¡¢\f2\-rfc\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢½ÐÎϲÄǽÉä¹æ²½Êý¼°¤Ç¾ÚÌÀ½ñ¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++½ÐÎϲÄǽÉä¹æ²½Êý¼°¤ÇÉä¹æ²½¤µ¤ì¤¿¾ÚÌÀ½ñ¤Ï¡¢¼¡¤Î¹Ô¤Ç»Ï¤Þ¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\-\-\-\-\-BEGIN CERTIFICATE\-\-\-\-\-
++.fl
++\fP
++.fi
++.LP
++ºÇ¸å¤Ï¡¢¼¡¤Î¹Ô¤Ç½ª¤ï¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\-\-\-\-\-END CERTIFICATE\-\-\-\-\-
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SS
++X.500¼±ÊÌ̾
++.LP
++.LP
++X.500¼±ÊÌ̾¤Ï¡¢¥¨¥ó¥Æ¥£¥Æ¥£¤òÆÃÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢X.509¾ÚÌÀ½ñ¤Î\f2subject\fP¥Õ¥£¡¼¥ë¥É¤È\f2issuer\fP(½ð̾¼Ô)¥Õ¥£¡¼¥ë¥É¤Ç»ØÄꤵ¤ì¤ë̾Á°¤Ï¡¢X.500¼±ÊÌ̾¤Ç¤¹¡£\f3keytool\fP¤Ï¡¢¼¡¤Î¥µ¥Ö¥Ñ¡¼¥È¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f2commonName\fP \- ¿Í¤ÎÄ̾Ρ£¡ÖSusan Jones¡×¤Ê¤É
++.TP 2
++o
++\f2organizationUnit\fP \- ¾®¤µ¤ÊÁÈ¿¥(Éô¡¢²Ý¤Ê¤É)¤Î̾¾Î¡£¡ÖPurchasing¡×¤Ê¤É
++.TP 2
++o
++\f2organizationName\fP \- Â礭¤ÊÁÈ¿¥¤Î̾¾Î¡£¡ÖABCSystems,Inc.¡×¤Ê¤É
++.TP 2
++o
++\f2localityName\fP \- ÃÏ°è(ÅÔ»Ô)̾¡£¡ÖPalo Alto¡×¤Ê¤É
++.TP 2
++o
++\f2stateName\fP \- ½£Ì¾¤Þ¤¿¤ÏÃÏÊý̾¡£¡ÖCalifornia¡×¤Ê¤É
++.TP 2
++o
++\f2country\fP \- 2ʸ»ú¤Î¹ñÈֹ档¡ÖCH¡×¤Ê¤É
++.RE
++
++.LP
++.LP
++¼±ÊÌ̾ʸ»úÎó¤ò\f2\-dname\fP¥ª¥×¥·¥ç¥ó¤ÎÃͤȤ·¤Æ»ØÄꤹ¤ë¾ì¹ç¤Ï(\f2\-genkeypair\fP ¥³¥Þ¥ó¥É)¡¢¼¡¤Î·Á¼°¤Ç»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++CN=\fP\f4cName\fP\f3, OU=\fP\f4orgUnit\fP\f3, O=\fP\f4org\fP\f3, L=\fP\f4city\fP\f3, S=\fP\f4state\fP\f3, C=\fP\f4countryCode\fP\f3
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥¤¥¿¥ê¥Ã¥¯ÂΤιàÌܤϡ¢¼ÂºÝ¤Ë»ØÄꤹ¤ëÃͤòɽ¤·¤Þ¤¹¡£Ã»½Ì·Á¤Î¥­¡¼¥ï¡¼¥É¤Î°ÕÌ£¤Ï¡¢¼¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ CN=commonName
++.fl
++ OU=organizationUnit
++.fl
++ O=organizationName
++.fl
++ L=localityName
++.fl
++ S=stateName
++.fl
++ C=country
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Ë¼¨¤¹¤Î¤Ï¡¢¼±ÊÌ̾ʸ»úÎó¤ÎÎã¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++CN=Mark Smith, OU=Java, O=Oracle, L=Cupertino, S=California, C=US
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Ï¡¢¤³¤Îʸ»úÎó¤ò»ÈÍѤ·¤¿¥³¥Þ¥ó¥É¤ÎÎã¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++keytool \-genkeypair \-dname "CN=Mark Smith, OU=Java, O=Oracle, L=Cupertino,
++.fl
++S=California, C=US" \-alias mark
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥­¡¼¥ï¡¼¥É¤Îû½Ì·Á¤Ç¤Ï¡¢Âçʸ»ú¤È¾®Ê¸»ú¤Ï¶èÊ̤µ¤ì¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢CN¡¢cn¤ª¤è¤ÓCn¤Ï¡¢¤É¤ì¤âƱ¤¸¤â¤Î¤È¤·¤Æ°·¤ï¤ì¤Þ¤¹¡£
++.LP
++.LP
++°ìÊý¡¢¥­¡¼¥ï¡¼¥É¤Î»ØÄê½ç½ø¤Ë¤Ï°ÕÌ£¤¬¤¢¤ê¡¢³Æ¥µ¥Ö¥³¥ó¥Ý¡¼¥Í¥ó¥È¤Ï¾å¤Ë¼¨¤·¤¿½ç½ø¤Ç»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤À¤·¡¢¥µ¥Ö¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ò¤¹¤Ù¤Æ»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë°ìÉô¤Î¥µ¥Ö¥³¥ó¥Ý¡¼¥Í¥ó¥È¤Î¤ß¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++CN=Steve Meier, OU=Java, O=Oracle, C=US
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼±ÊÌ̾ʸ»úÎó¤ÎÃͤ˥«¥ó¥Þ¤¬´Þ¤Þ¤ì¤ë¾ì¹ç¤Ë¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Çʸ»úÎó¤ò»ØÄꤹ¤ë¤È¤­¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¥«¥ó¥Þ¤òʸ»ú¡Ö\\¡×¤Ç¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ cn=Peter Schuster, ou=Java\\, Product Development, o=Oracle, c=US
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼±ÊÌ̾ʸ»úÎó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¼±ÊÌ̾¤òɬÍפȤ¹¤ë¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç¼±ÊÌ̾¤ò»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢³Æ¥µ¥Ö¥³¥ó¥Ý¡¼¥Í¥ó¥È¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï¡¢¥«¥ó¥Þ¤ò¡Ö\\¡×¤Ç¥¨¥¹¥±¡¼¥×¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
++.LP
++.SS
++¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥¤¥ó¥Ý¡¼¥È¤Ë´Ø¤¹¤ëÃí°Õ»ö¹à
++.LP
++.LP
++½ÅÍ×: ¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤È¤·¤Æ¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ëÁ°¤Ë¡¢¾ÚÌÀ½ñ¤ÎÆâÍƤò¿µ½Å¤ËÄ´¤Ù¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¤Þ¤º¡¢¾ÚÌÀ½ñ¤ÎÆâÍƤòɽ¼¨¤·(\f2\-printcert\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¤«¡¢¤Þ¤¿¤Ï\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤Ç\f2\-importcert\fP¥³¥Þ¥ó¥É¤ò»ÈÍÑ)¡¢É½¼¨¤µ¤ì¤¿¾ÚÌÀ½ñ¤Î¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤¬¡¢´üÂÔ¤µ¤ì¤ë¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È°ìÃפ¹¤ë¤«¤É¤¦¤«¤ò³Îǧ¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¤¢¤ë¥æ¡¼¥¶¡¼¤«¤é¾ÚÌÀ½ñ¤¬Á÷¤é¤ì¤Æ¤­¤Æ¡¢¤³¤Î¾ÚÌÀ½ñ¤ò\f2/tmp/cert\fP¤È¤¤¤¦Ì¾Á°¤Ç¥Õ¥¡¥¤¥ë¤Ë³ÊǼ¤·¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£¤³¤Î¾ì¹ç¤Ï¡¢¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥ê¥¹¥È¤Ë¤³¤Î¾ÚÌÀ½ñ¤òÄɲ乤ëÁ°¤Ë¡¢\f2\-printcert\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Æ¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤òɽ¼¨¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ keytool \-printcert \-file /tmp/cert
++.fl
++ Owner: CN=ll, OU=ll, O=ll, L=ll, S=ll, C=ll
++.fl
++ Issuer: CN=ll, OU=ll, O=ll, L=ll, S=ll, C=ll
++.fl
++ Serial Number: 59092b34
++.fl
++ Valid from: Thu Sep 25 18:01:13 PDT 1997 until: Wed Dec 24 17:01:13 PST 1997
++.fl
++ Certificate Fingerprints:
++.fl
++ MD5: 11:81:AD:92:C8:E5:0E:A2:01:2E:D4:7A:D7:5F:07:6F
++.fl
++ SHA1: 20:B6:17:FA:EF:E5:55:8A:D0:71:1F:E8:D6:9D:C0:37:13:0E:5E:FE
++.fl
++ SHA256: 90:7B:70:0A:EA:DC:16:79:92:99:41:FF:8A:FE:EB:90:
++.fl
++ 17:75:E0:90:B2:24:4D:3A:2A:16:A6:E4:11:0F:67:A4
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¼¡¤Ë¡¢¾ÚÌÀ½ñ¤òÁ÷¿®¤·¤¿¿Íʪ¤ËÏ¢Íí¤·¡¢¤³¤Î¿Íʪ¤¬Ä󼨤·¤¿¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¡¢¾å¤Î¥³¥Þ¥ó¥É¤Çɽ¼¨¤µ¤ì¤¿¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤È¤òÈæ³Ó¤·¤Þ¤¹¡£¥Õ¥£¥ó¥¬¡¼¥×¥ê¥ó¥È¤¬°ìÃפ¹¤ì¤Ð¡¢Á÷¿®ÅÓÃæ¤Ç¾¤Î²¿¼Ô¤«(¹¶·â¼Ô¤Ê¤É)¤Ë¤è¤ë¾ÚÌÀ½ñ¤Î¤¹¤êÂؤ¨¤¬¹Ô¤ï¤ì¤Æ¤¤¤Ê¤¤¤³¤È¤ò³Îǧ¤Ç¤­¤Þ¤¹¡£Á÷¿®ÅÓÃæ¤Ç¤³¤Î¼ï¤Î¹¶·â¤¬¹Ô¤ï¤ì¤Æ¤¤¤¿¾ì¹ç¡¢¥Á¥§¥Ã¥¯¤ò¹Ô¤ï¤º¤Ë¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ë¤È¡¢¹¶·â¼Ô¤Ë¤è¤Ã¤Æ½ð̾¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¤â¤Î(¹¶·âŪ°Õ¿Þ¤ò»ý¤Ä¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤ÀJAR¥Õ¥¡¥¤¥ë¤Ê¤É)¤ò¿®Íꤹ¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++Ãí°Õ: ¾ÚÌÀ½ñ¤ò¥¤¥ó¥Ý¡¼¥È¤¹¤ëÁ°¤Ë\f2\-printcert\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£¥­¡¼¥¹¥È¥¢Æâ¤Î¿®Íê¤Ç¤­¤ë¾ÚÌÀ½ñ¤Î¥ê¥¹¥È¤Ë¾ÚÌÀ½ñ¤òÄɲ乤ëÁ°¤Ë\f2\-importcert\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤¹¤ë¤È¡¢¾ÚÌÀ½ñ¤Î¾ðÊó¤¬É½¼¨¤µ¤ì¡¢³Îǧ¤òµá¤á¤ë¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£¥¤¥ó¥Ý¡¼¥ÈÁàºî¤Ï¡¢¤³¤Î»þÅÀ¤ÇÃæ»ß¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢³Îǧ¥á¥Ã¥»¡¼¥¸¤¬É½¼¨¤µ¤ì¤ë¤Î¤Ï¡¢\f2\-importcert\fP¥³¥Þ¥ó¥É¤ò\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤻ¤º¤Ë¼Â¹Ô¤·¤¿¾ì¹ç¤Î¤ß¤Ç¤¹¡£¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¡¢\f2\-noprompt\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢¥æ¡¼¥¶¡¼¤È¤ÎÂÐÏäϹԤï¤ì¤Þ¤»¤ó¡£
++.LP
++.SS
++¥Ñ¥¹¥ï¡¼¥É¤Ë´Ø¤¹¤ëÃí°Õ»ö¹à
++.LP
++.LP
++¥­¡¼¥¹¥È¥¢¤ËÂФ¹¤ëÁàºî¤ò¹Ô¤¦¤Û¤È¤ó¤É¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¡¢¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤¬É¬ÍפǤ¹¡£¤Þ¤¿¡¢°ìÉô¤Î¥³¥Þ¥ó¥É¤Ç¤Ï¡¢Èó¸ø³«/ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤¬É¬Íפˤʤ뤳¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥Ñ¥¹¥ï¡¼¥É¤Ï¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄê¤Ç¤­¤Þ¤¹(¥¹¥È¥¢¤Î¥Ñ¥¹¥ï¡¼¥É¤Ë¤Ï\f2\-storepass\fP¥ª¥×¥·¥ç¥ó¡¢ÈëÌ©¸°¤Î¥Ñ¥¹¥ï¡¼¥É¤Ë¤Ï\f2\-keypass\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍÑ)¡£¤¿¤À¤·¡¢¥Æ¥¹¥È¤òÌÜŪ¤È¤¹¤ë¾ì¹ç¡¢¤Þ¤¿¤Ï°ÂÁ´¤Ç¤¢¤ë¤³¤È¤¬¤ï¤«¤Ã¤Æ¤¤¤ë¥·¥¹¥Æ¥à¤Ç¼Â¹Ô¤¹¤ë¾ì¹ç°Ê³°¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤ä¥¹¥¯¥ê¥×¥È¤Ç¥Ñ¥¹¥ï¡¼¥É¤ò»ØÄꤷ¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++ɬÍפʥѥ¹¥ï¡¼¥É¤Î¥ª¥×¥·¥ç¥ó¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç»ØÄꤷ¤Ê¤«¤Ã¤¿¾ì¹ç¤Ï¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++.SS
++¾ÚÌÀ½ñ¤Î½àµò¤Ë´Ø¤¹¤ëÃí°Õ»ö¹à
++.LP
++.LP
++¥¤¥ó¥¿¡¼¥Í¥Ã¥Èɸ½à¤Î
++.na
++\f2RFC 5280\fP @
++.fi
++http://tools.ietf.org/rfc/rfc5280.txt¤Ç¤Ï¡¢X.509¾ÚÌÀ½ñ¤¬½àµò¤¹¤ë¥×¥í¥Õ¥¡¥¤¥ë¤òÄêµÁ¤·¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥×¥í¥Õ¥¡¥¤¥ë¤Ë¤Ï¡¢¾ÚÌÀ½ñ¤Î¥Õ¥£¡¼¥ë¥É¤ä¥¨¥¯¥¹¥Æ¥ó¥·¥ç¥ó¤ÇÍ­¸ú¤ÊÃͤäÃͤÎÁȹ礻¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£\f3keytool\fP¤Ç¤Ï¡¢¤³¤ì¤é¤Î¤¹¤Ù¤Æ¤Îµ¬Â§¤¬Å¬ÍѤµ¤ì¤Æ¤¤¤ë¤ï¤±¤Ç¤Ï¤Ê¤¤¤Î¤Ç¡¢É¸½à¤Ë½àµò¤·¤Ê¤¤¾ÚÌÀ½ñ¤¬À¸À®¤µ¤ì¤ë²ÄǽÀ­¤¬¤¢¤ê¡¢¤½¤Î¤è¤¦¤Ê¾ÚÌÀ½ñ¤ÏJRE¤ä¾¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ÇµñÈݤµ¤ì¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤Ï¡¢\f2\-dname\fP¤ä\f2\-ext\fP¤Ê¤É¤ÇŬÀµ¤Ê¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++jar(1)¥Ä¡¼¥ë¤Î¥É¥­¥å¥á¥ó¥È
++.TP 2
++o
++jarsigner(1)¥Ä¡¼¥ë¤Î¥É¥­¥å¥á¥ó¥È
++.TP 2
++o
++\f3keytool\fP¤Î»ÈÍÑÎã¤Ë¤Ä¤¤¤Æ¤Ï¡¢
++.na
++\f4Java¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/¤Î
++.na
++\f4¥»¥­¥å¥ê¥Æ¥£\fP @
++.fi
++http://docs.oracle.com/javase/tutorial/security/index.html¤ò»²¾È
++.RE
++
++.LP
++.SH "Êѹ¹ÅÀ"
++.LP
++.LP
++Java SE 6¤Çkeytool¤Î¥³¥Þ¥ó¥É¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬Êѹ¹¤µ¤ì¤Þ¤·¤¿¡£
++.LP
++.LP
++\f3keytool\fP¤Ï¡¢¥æ¡¼¥¶¡¼¤¬¥Ñ¥¹¥ï¡¼¥É¤òÆþÎϤ¹¤ëºÝ¤Ë¤½¤ÎÆþÎÏÆâÍƤòɽ¼¨¤·¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿¡£¥æ¡¼¥¶¡¼¤Ï¥Ñ¥¹¥ï¡¼¥ÉÆþÎÏ»þ¤Ë¤½¤ÎÆþÎÏÆâÍƤò³Îǧ¤Ç¤­¤Ê¤¯¤Ê¤Ã¤¿¤¿¤á¡¢½é´ü¥­¡¼¥¹¥È¥¢¡¦¥Ñ¥¹¥ï¡¼¥É¤òÀßÄꤷ¤¿¤ê¸°¥Ñ¥¹¥ï¡¼¥É¤òÊѹ¹¤·¤¿¤ê¤¹¤ë¤Ê¤É¡¢¥Ñ¥¹¥ï¡¼¥É¤ÎÀßÄê¤äÊѹ¹¤ò¹Ô¤¦¤¿¤Ó¤Ë¥Ñ¥¹¥ï¡¼¥É¤ÎºÆÆþÎϤòµá¤á¤é¤ì¤Þ¤¹¡£
++.LP
++.LP
++Êѹ¹¤µ¤ì¤¿¥³¥Þ¥ó¥É¤ÎÃæ¤Ë¤Ï¡¢Ì¾Á°¤Î¤ß¤¬Êѹ¹¤µ¤ì¤¿¤â¤Î¤â¤¢¤ì¤Ð¡¢Çѻߤµ¤ì¤Æ¤³¤Î¥É¥­¥å¥á¥ó¥È¤Ëµ­ºÜ¤µ¤ì¤Ê¤¯¤Ê¤Ã¤¿¤â¤Î¤â¤¢¤ê¤Þ¤¹¡£°ÊÁ°¤Î¤¹¤Ù¤Æ¤Î¥³¥Þ¥ó¥É(̾Á°¤¬Êѹ¹¤µ¤ì¤¿¤â¤Î¤ÈÇѻߤµ¤ì¤¿¤â¤Î¤ÎξÊý)¤Ï¡¢¤³¤Î¥ê¥ê¡¼¥¹¤Ç¤â°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤ª¤ê¡¢º£¸å¤Î¥ê¥ê¡¼¥¹¤Ç¤â¥µ¥Ý¡¼¥È¤µ¤ì¤ëͽÄê¤Ç¤¹¡£keytool¤Î¥³¥Þ¥ó¥É¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë²Ã¤¨¤é¤ì¤¿¤¹¤Ù¤Æ¤ÎÊѹ¹ÅÀ¤Î³µÍפò¡¢¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++̾Á°¤¬Êѹ¹¤µ¤ì¤¿¥³¥Þ¥ó¥É:
++.LP
++.RS 3
++.TP 2
++o
++\f2\-export\fP¤Î̾Á°¤¬\f2\-exportcert\fP¤ËÊѹ¹
++.TP 2
++o
++\f2\-genkey\fP¤Î̾Á°¤¬\f2\-genkeypair\fP¤ËÊѹ¹
++.TP 2
++o
++\f2\-import\fP¤Î̾Á°¤¬\f2\-importcert\fP¤ËÊѹ¹
++.RE
++
++.LP
++.LP
++Çѻߤµ¤ì¤Æ¥É¥­¥å¥á¥ó¥È¤Ëµ­ºÜ¤µ¤ì¤Ê¤¯¤Ê¤Ã¤¿¥³¥Þ¥ó¥É:
++.LP
++.RS 3
++.TP 2
++o
++.na
++\f2\-keyclone\fP @
++.fi
++http://docs.oracle.com/javase/1.5.0/docs/tooldocs/windows/keytool.html#keycloneCmd
++.TP 2
++o
++.na
++\f2\-identitydb\fP @
++.fi
++http://docs.oracle.com/javase/1.5.0/docs/tooldocs/windows/keytool.html#identitydbCmd
++.TP 2
++o
++.na
++\f2\-selfcert\fP @
++.fi
++http://docs.oracle.com/javase/1.5.0/docs/tooldocs/windows/keytool.html#selfcertCmd
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/native2ascii.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/native2ascii.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,54 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH native2ascii 1 "07 May 2011"
++.TH native2ascii 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++native2ascii \- ¥Í¥¤¥Æ¥£¥Ö \- ASCII¥³¥ó¥Ð¡¼¥¿
++.LP
++.LP
++¥µ¥Ý¡¼¥È¤µ¤ì¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Îʸ»ú¤Î¥Õ¥¡¥¤¥ë¤òASCII¤Þ¤¿¤ÏUnicode¥¨¥¹¥±¡¼¥×¤¢¤ë¤¤¤Ï¤½¤ÎξÊý¤Î¥Õ¥¡¥¤¥ë¤ËÊÑ´¹¤·¤Þ¤¹¡£¤½¤ÎµÕ¤ÎÊÑ´¹¤â¹Ô¤¤¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f4native2ascii\fP\f2 [options] [inputfile [outputfile]]\fP
++.fl
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f2native2ascii\fP Java¼Â¹Ô´Ä¶­¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Ë¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¡¢ASCII¤Ç¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ËÊÑ´¹¤·¤Þ¤¹¡£ASCIIʸ»ú¥»¥Ã¥È¤Î°ìÉô¤Ç¤Ê¤¤¤¹¤Ù¤Æ¤Îʸ»ú¤ÇUnicode¥¨¥¹¥±¡¼¥×(¡Ö\\uxxxx¡×¤Îɽµ­)¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥×¥í¥»¥¹¤Ï¡¢ISO\-8859\-1ʸ»ú¥»¥Ã¥È¤Ë´Þ¤Þ¤ì¤Ê¤¤Ê¸»ú¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¥×¥í¥Ñ¥Æ¥£¡¦¥Õ¥¡¥¤¥ë¤ÇɬÍפǤ¹¡£¤³¤Î¥Ä¡¼¥ë¤Ï¡¢¤½¤ÎµÕ¤ÎÊÑ´¹¤ò¼Â¹Ô¤¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2outputfile\fP¤ò¾Êά¤·¤¿¾ì¹ç¡¢É¸½à½ÐÎϤ˽ÐÎϤµ¤ì¤Þ¤¹¡£¤µ¤é¤Ë¡¢\f2inputfile\fP¤ò¾Êά¤·¤¿¾ì¹ç¡¢É¸½àÆþÎϤ«¤éÆþÎϤµ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-reverse
++µÕ¤Î½èÍý¤ò¹Ô¤¤¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢ISO\-8859\-1¤ÇUnicode¥¨¥¹¥±¡¼¥×¤ò»ÈÍѤ·¤Æ¥¨¥ó¥³¡¼¥É¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤ò¡¢Java¼Â¹Ô´Ä¶­¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î¥Õ¥¡¥¤¥ë¤ËÊÑ´¹¤·¤Þ¤¹¡£
++.br
++.br
++.TP 3
++\-encoding encoding_name
++ÊÑ´¹½èÍý¤Ç»ÈÍѤ¹¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬Â¸ºß¤·¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Îʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°(\f2java.nio.charset.Charset.defaultCharset\fP¥á¥½¥Ã¥É¤ÇÄêµÁ¤µ¤ì¤ë)¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£\f2encoding_name\fPʸ»úÎó¤Ï¡¢
++.na
++\f4¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤ëʸ»úÎ󥨥󥳡¼¥Ç¥£¥ó¥°\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/intl/encoding.doc.html¡¦¥É¥­¥å¥á¥ó¥È¤Ë¼¨¤µ¤ì¤Æ¤¤¤ë¡¢Java¼Â¹Ô´Ä¶­¤Ç¥µ¥Ý¡¼¥È¤µ¤ì¤ëʸ»ú¥¨¥ó¥³¡¼¥Ç¥£¥ó¥°¤Î̾Á°¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.br
++.br
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/orbd.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/orbd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,350 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH orbd 1 "07 May 2011"
++.TH orbd 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++orbd \- The Object Request Broker Daemon
++.LP
++.LP
++\f3orbd\fP¤Ï¡¢CORBA´Ä¶­¤Î¥µ¡¼¥Ð¡¼¤Ë¤¢¤ë±Ê³¥ª¥Ö¥¸¥§¥¯¥È¤ò¥¯¥é¥¤¥¢¥ó¥È¤«¤éÆ©²áŪ¤Ë¸¡º÷¤·¤Æ¸Æ¤Ó½Ð¤»¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++\f3´ØÏ¢¹àÌÜ:\fP
++.na
++\f2¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++orbd <\fP\f3options\fP\f3>
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3orbd\fP¥Ä¡¼¥ë¤Ë´Þ¤Þ¤ì¤ë¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤ò»ÈÍѤ¹¤ë¤È¡¢¥¯¥é¥¤¥¢¥ó¥È¤ÏCORBA´Ä¶­¤Ç¥µ¡¼¥Ð¡¼¾å¤Ë¤¢¤ë±Ê³¥ª¥Ö¥¸¥§¥¯¥È¤òÆ©²áŪ¤Ë¸¡º÷¤·¤Æ¸Æ¤Ó½Ð¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£±Ê³¥µ¡¼¥Ð¡¼¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ë±Ê³¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤òȯ¹Ô¤¹¤ëºÝ¡¢¥µ¡¼¥Ð¡¼¤Î¥Ý¡¼¥ÈÈÖ¹æ¤Î¤«¤ï¤ê¤ËORBD¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Ë´Þ¤á¤Þ¤¹¡£±Ê³¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤ËORBD¥Ý¡¼¥ÈÈÖ¹æ¤ò´Þ¤á¤ë¤³¤È¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ÊÍøÅÀ¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ë¤¢¤ë¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤¬¡¢¥µ¡¼¥Ð¡¼¤Î¥é¥¤¥Õ¡¦¥µ¥¤¥¯¥ë¤È̵´Ø·¸¤Ë¤Ê¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Ï¡¢½é¤á¤Æ¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤¿¤È¤­¤Ï¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¥µ¡¼¥Ð¡¼¤Ë¤è¤Ã¤Æ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ëȯ¹Ô¤µ¤ì¤Þ¤¹¤¬¡¢¤½¤Î¸å¤Ï¡¢¥µ¡¼¥Ð¡¼¤Î³«»Ï¤Þ¤¿¤Ï¥·¥ã¥Ã¥È¥À¥¦¥ó¤Î²ó¿ô¤Ë¤«¤«¤ï¤é¤º¡¢¸Æ¤Ó½Ð¤·¤¿¥¯¥é¥¤¥¢¥ó¥È¤ËORBD¤¬¤¤¤Ä¤Ç¤âÀµ¤·¤¤¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤òÊÖ¤·¤Þ¤¹¡£
++.TP 2
++o
++¥¯¥é¥¤¥¢¥ó¥È¤Ï°ìÅ٤Τߥ͡¼¥ß¥ó¥°¡¦¥µ¡¼¥Ó¥¹¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤ò¥ë¥Ã¥¯¥¢¥Ã¥×¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¤¬¡¢¤½¤Î¸å¤Ï¥µ¡¼¥Ð¡¼¤Î¥é¥¤¥Õ¡¦¥µ¥¤¥¯¥ë¤Ë¤è¤ëÊѹ¹¤È¤Ï̵´Ø·¸¤Ë¤³¤Î»²¾È¤òÍøÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++ORBD¤Î¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤Ë¥¢¥¯¥»¥¹¤¹¤ë¤Ë¤Ï¡¢servertool(1)¤ò»ÈÍѤ·¤Æ¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£servertool¤Ï¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¡¢±Ê³¥µ¡¼¥Ð¡¼¤ÎÅÐÏ¿¡¢ÅÐÏ¿²ò½ü¡¢µ¯Æ°¤ª¤è¤Ó¥·¥ã¥Ã¥È¥À¥¦¥ó¤ò¹Ô¤¦¤¿¤á¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç¤¹¡£¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤Î¾ÜºÙ¤Ï¡¢¤³¤Î¥É¥­¥å¥á¥ó¥È¤Î\f2¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã\fP¤È¤¤¤¦¹à¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f2orbd\fP¤òµ¯Æ°¤¹¤ë¤È¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤âµ¯Æ°¤µ¤ì¤Þ¤¹¡£¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.SS
++ɬ¿Ü¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-ORBInitialPort nameserverport
++¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤¹¤ë¥Ý¡¼¥È¤ÎÈÖ¹æ¤ò»ØÄꤷ¤Þ¤¹¡£\f2orbd\fP¤Ï¡¢µ¯Æ°¤µ¤ì¤ë¤È¡¢¤³¤Î¥Ý¡¼¥È¾å¤ÇÃå¿®¥ê¥¯¥¨¥¹¥È¤òÂÔµ¡¤·¤Þ¤¹¡£Solaris¥½¥Õ¥È¥¦¥§¥¢¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢1024¤è¤ê¾®¤µ¤¤¥Ý¡¼¥È¾å¤Ç¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¤Ë¤Ï¡¢root¥æ¡¼¥¶¡¼¤Ë¤Ê¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢1024°Ê¾å¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£(ɬ¿Ü)
++.RE
++
++.LP
++.LP
++
++.LP
++.SS
++¤½¤Î¾¤Î¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-port port
++ORBD¤òµ¯Æ°¤¹¤ë¥Ý¡¼¥È¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥Ý¡¼¥È¤Ç¡¢±Ê³¥ª¥Ö¥¸¥§¥¯¥È¤ËÂФ¹¤ë¥ê¥¯¥¨¥¹¥È¤òORBD¤¬¼õ¤±¼è¤ê¤Þ¤¹¡£¤³¤Î¥Ý¡¼¥È¤Î¥Ç¥Õ¥©¥ë¥ÈÃͤÏ1049¤Ç¤¹¡£¤³¤Î¥Ý¡¼¥ÈÈÖ¹æ¤Ï¡¢±Ê³Interoperable Object References(IOR)¤Î¥Ý¡¼¥È¡¦¥Õ¥£¡¼¥ë¥É¤ËÄɲ䵤ì¤Þ¤¹¡£(¾Êά²Ä)
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-defaultdb directory
++ORBD±Ê³³ÊǼ¥Ç¥£¥ì¥¯¥È¥ê\f2orb.db\fP¤¬ºîÀ®¤µ¤ì¤ë¥Ù¡¼¥¹¡¦¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥ÈÃͤϡÖ./orb.db¡×¤Ë¤Ê¤ê¤Þ¤¹¡£(¾Êά²Ä)
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-serverPollingTime milliseconds
++\f2servertool\fP¤ò»ÈÍѤ·¤ÆÅÐÏ¿¤µ¤ì¤¿±Ê³¥µ¡¼¥Ð¡¼¤¬Àµ¾ï¤ËÆ°ºî¤·¤Æ¤¤¤ë¤³¤È¤òORBD¤¬³Îǧ¤¹¤ë²ó¿ô¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤÏ1,000¥ß¥êÉäǤ¹¡£\f2milliseconds\fP¤Ë»ØÄꤹ¤ëÃͤϡ¢Í­¸ú¤ÊÀµ¤ÎÀ°¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£(¾Êά²Ä)
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-serverStartupDelay milliseconds
++\f2servertool\fP¤ò»ÈÍѤ·¤ÆÅÐÏ¿¤µ¤ì¤¿±Ê³¥µ¡¼¥Ð¡¼¤òºÆµ¯Æ°¤·¤Æ¤«¤é¡¢°ÌÃÖžÁ÷¤ÎÎã³°¤òÁ÷¿®¤¹¤ë¤Þ¤Ç¤ÎORBD¤ÎÂÔµ¡»þ´Ö¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥ÈÃͤÏ1,000¥ß¥êÉäǤ¹¡£\f2milliseconds\fP¤Ë»ØÄꤹ¤ëÃͤϡ¢Í­¸ú¤ÊÀµ¤ÎÀ°¿ô¤Ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£(¾Êά²Ä)
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤ÆÇظå¤Î²¾ÁÛ¥Þ¥·¥ó¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++
++.RE
++
++.LP
++.SH "¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îµ¯Æ°¤ÈÄä»ß"
++.LP
++.LP
++¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢
++.na
++\f2CORBA¥ª¥Ö¥¸¥§¥¯¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#CORBA%20object¤Ë¥Í¡¼¥ß¥ó¥°¤ò²Äǽ¤Ë¤¹¤ëCORBA¥µ¡¼¥Ó¥¹¤Ç¤¹¡£¥Í¡¼¥ß¥ó¥°¤Ï̾Á°¤ò¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Ë¥Ð¥¤¥ó¥É¤¹¤ë¤³¤È¤Ë¤è¤ê²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.na
++\f2¥Í¡¼¥à¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#name%20binding¤ò¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ë³ÊǼ¤¹¤ì¤Ð¡¢¥¯¥é¥¤¥¢¥ó¥È¤¬Ì¾Á°¤ò»ØÄꤷ¤ÆÌÜŪ¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤ò¼èÆÀ¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++ORBD¤Ï¡¢¥¯¥é¥¤¥¢¥ó¥È¤Þ¤¿¤Ï¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤¹¤ëÁ°¤Ëµ¯Æ°¤·¤Þ¤¹¡£ORBD¤Ë¤Ï¡¢±Ê³¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ª¤è¤Ó°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬ÁȤ߹þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤ì¤é¤Ï¤É¤Á¤é¤âCOS¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¼ÂÁõ¤Ç¤¹¡£
++.LP
++.LP
++\f4±Ê³\fP\f3¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP¤Ï¡¢¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤ËÂФ·¤Æ±Ê³À­¤òÄ󶡤·¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤³¤Î¾ðÊó¤Ï¡¢¥µ¡¼¥Ó¥¹¤ÎÄä»ß¤äµ¯Æ°¸å¤Ë¤â°Ý»ý¤µ¤ì¡¢¥µ¡¼¥Ó¥¹¤Ë¾ã³²¤¬È¯À¸¤·¤¿¾ì¹ç¤Ç¤â²óÉü¤Ç¤­¤Þ¤¹¡£ORBD¤òºÆµ¯Æ°¤¹¤ë¤È¡¢±Ê³¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Î¥°¥é¥Õ¤òÉü¸µ¤·¡¢¤¹¤Ù¤Æ¤Î¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤Î̾Á°¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬¤½¤Î¤Þ¤Þ(±Ê³Ū¤Ë)ÊÝ»ý¤µ¤ì¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.LP
++\
++.LP
++.LP
++²¼°Ì¸ß´¹À­¤Î¤¿¤á¡¢µì¥Ð¡¼¥¸¥ç¥ó¤ÎJDK¤ËƱº­¤µ¤ì¤Æ¤¤¤¿\f4°ì»þ\fP\f3¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP\f2tnameserv\fP¤¬¡¢º£²ó¤Î¥ê¥ê¡¼¥¹¤ÎJ2SE¤Ë¤âƱº­¤µ¤ì¤Æ¤¤¤Þ¤¹¡£°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ç¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¼Â¹ÔÃæ¤Ë¤Î¤ß¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤¬ÊÝ»ý¤µ¤ì¤Þ¤¹¡£¥µ¡¼¥Ó¥¹¤¬ÃæÃǤµ¤ì¤ë¤È¡¢¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¡¦¥°¥é¥Õ¤Ï¼º¤ï¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2\-ORBInitialPort\fP°ú¿ô¤Ï¡¢\f2orbd\fP¤Îɬ¿Ü¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤Ç¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬¼Â¹Ô¤µ¤ì¤ë¥Ý¡¼¥È¤ÎÈÖ¹æ¤òÀßÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¼¡¤Î¼ê½ç¤Ç¤Ï¡¢Java\ IDL Object Request Broker DaemonÍѤ˥ݡ¼¥È1050¤ò»ÈÍѤǤ­¤ë¤³¤È¤òÁ°Äó¤È¤·¤Æ¤¤¤Þ¤¹¡£Solaris¥½¥Õ¥È¥¦¥§¥¢¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢1024¤è¤ê¾®¤µ¤¤¥Ý¡¼¥È¾å¤Ç¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¤Ë¤Ï¡¢root¥æ¡¼¥¶¡¼¤Ë¤Ê¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢1024°Ê¾å¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£É¬ÍפǤ¢¤ì¤ÐÊ̤Υݡ¼¥È¤ËÊѹ¹¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++UNIX¥³¥Þ¥ó¥É¡¦¥·¥§¥ë¤Ç\f2orbd\fP¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ orbd \-ORBInitialPort 1050&
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Windows¤ÎMS\-DOS¥·¥¹¥Æ¥à¡¦¥×¥í¥ó¥×¥È¤Ç¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ start orbd \-ORBInitialPort 1050
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ì¤ÇORBD¤¬¼Â¹Ô¤µ¤ì¡¢¥µ¡¼¥Ð¡¼¤È¥¯¥é¥¤¥¢¥ó¥È¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¡¢¼Â¹Ô»þ¤Ë¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¥Ý¡¼¥È¤ÎÈÖ¹æ(ɬÍפʾì¹ç¤Ï¤µ¤é¤Ë¥Þ¥·¥ó̾)¤òǧ¼±¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤ò¼Â¸½¤¹¤ë1¤Ä¤ÎÊýË¡¤Ï¡¢¼¡¤Î¥³¡¼¥É¤ò¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ËÄɲ乤뤳¤È¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ Properties props = new Properties();
++.fl
++ props.put("org.omg.CORBA.ORBInitialPort", "1050");
++.fl
++ props.put("org.omg.CORBA.ORBInitialHost", "MyHost");
++.fl
++ ORB orb = ORB.init(args, props);
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢¥Û¥¹¥ÈMyHost¤Î¥Ý¡¼¥È1050¾å¤Ç¼Â¹Ô¤µ¤ì¤Þ¤¹¡£Ê̤ÎÊýË¡¤È¤·¤Æ¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é¥µ¡¼¥Ð¡¼¤Þ¤¿¤Ï¥¯¥é¥¤¥¢¥ó¥È¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ë¡¢¥Ý¡¼¥ÈÈÖ¹æ¤Þ¤¿¤Ï¥Þ¥·¥ó̾¤¢¤ë¤¤¤Ï¤½¤ÎξÊý¤ò»ØÄꤹ¤ëÊýË¡¤â¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢¡ÖHelloApplication¡×¤òµ¯Æ°¤Ç¤­¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ java HelloApplication \-ORBInitialPort 1050 \-ORBInitialHost MyHost
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òÄä»ß¤¹¤ë¤Ë¤Ï¡¢Å¬Àڤʥª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¡¦¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢Solaris¾å¤Ç\f2pkill orbd\fP¤ò¼Â¹Ô¤·¤¿¤ê¡¢\f2orbd\fP¤¬Æ°ºîÃæ¤ÎDOS¥¦¥£¥ó¥É¥¦¤Ç\f2[Ctrl]+[C]\fP¥­¡¼¤ò²¡¤·¤Þ¤¹¡£°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¾ì¹ç¤Ï¡¢¥µ¡¼¥Ó¥¹¤¬½ªÎ»¤µ¤ì¤ë¤È¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ËÅÐÏ¿¤µ¤ì¤¿Ì¾Á°¤¬¾Ãµî¤µ¤ì¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£Java IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢ÌÀ¼¨Åª¤ËÄä»ß¤µ¤ì¤ë¤Þ¤Ç¼Â¹Ô¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++ORBD¤Ë´Þ¤Þ¤ì¤ë¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã"
++.LP
++.LP
++ORBD¤Î¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤Ë¥¢¥¯¥»¥¹¤·¤Æ¡¢±Ê³¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢servertool(1)¤ò»ÈÍѤ·¤Æ¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£servertool¤Ï¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¡¢±Ê³¥µ¡¼¥Ð¡¼¤ÎÅÐÏ¿¡¢ÅÐÏ¿²ò½ü¡¢µ¯Æ°¤ª¤è¤Ó¥·¥ã¥Ã¥È¥À¥¦¥ó¤ò¹Ô¤¦¤¿¤á¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ç¤¹¡£\f2servertool\fP¤ò»ÈÍѤ·¤Æ¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤¹¤ë¾ì¹ç¤Ï¡¢\f2orbd\fP¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì½ê¤ÈƱ¤¸¥Ý¡¼¥È¤È¥Û¥¹¥È¤Çµ¯Æ°¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤ò°Û¤Ê¤ë¥Ý¡¼¥È¤Ç¼Â¹Ô¤¹¤ë¤È¡¢¥í¡¼¥«¥ë¡¦¥³¥ó¥Æ¥­¥¹¥ÈÍѤ˥ǡ¼¥¿¥Ù¡¼¥¹¤ËÊݸ¤µ¤ì¤Æ¤¤¤ë¾ðÊó¤¬Ìµ¸ú¤Ë¤Ê¤ê¡¢¥µ¡¼¥Ó¥¹¤¬Àµ¤·¤¯Æ°ºî¤·¤Þ¤»¤ó¡£
++.LP
++.SS
++¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã: Îã
++.LP
++.LP
++¥Ç¥âÍѤÎ
++.na
++\f2¥µ¥ó¥×¥ë¡¦¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlExample.html¤ò»ÈÍѤ·¡¢¥Á¥å¡¼¥È¥ê¥¢¥ë¤Î¼ê½ç¤Ë½¾¤Ã¤Æ¡¢\f2idlj\fP¥³¥ó¥Ñ¥¤¥é¤È\f2javac\fP¥³¥ó¥Ñ¥¤¥é¤ò¼Â¹Ô¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¼ê½ç¤Ë½¾¤Ã¤Æ¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2orbd\fP¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++UNIX¥³¥Þ¥ó¥É¡¦¥·¥§¥ë¤Ç\f2orbd\fP¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\
++.LP
++.nf
++\f3
++.fl
++ orbd \-ORBInitialPort 1050
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Windows¤ÎMS\-DOS¥·¥¹¥Æ¥à¡¦¥×¥í¥ó¥×¥È¤Ç¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ start orbd \-ORBInitialPort 1050
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f21050\fP¤Ï¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤¹¤ë¥Ý¡¼¥È¤Ç¤¹¡£\f2\-ORBInitialPort\fP¤ÏɬÍפʥ³¥Þ¥ó¥É¥é¥¤¥ó¤Î°ú¿ô¤Ç¤¹¡£Solaris¥½¥Õ¥È¥¦¥§¥¢¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢1024¤è¤ê¾®¤µ¤¤¥Ý¡¼¥È¾å¤Ç¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¤Ë¤Ï¡¢root¥æ¡¼¥¶¡¼¤Ë¤Ê¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢1024°Ê¾å¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2servertool\fP¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++Hello¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ servertool \-ORBInitialPort 1050
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Á°²ó¤Î¼ê½ç¤È¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼(\f2orbd\fP)¤Î¥Ý¡¼¥È¤¬Æ±¤¸¤Ç¤¢¤ë¤³¤È¤ò³Îǧ¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð\f2\-ORBInitialPort 1050\fP¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£\f2servertool\fP¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤ÈƱ¤¸¥Ý¡¼¥È¾å¤Çµ¯Æ°¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2servertool\fP¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++
++.LP
++.LP
++\f2servertool\fP¥×¥í¥ó¥×¥È¤«¤éHello¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ servertool > register \-server HelloServer \-classpath . \-applicationName
++.fl
++ HelloServerApName
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2servertool\fP¤Ë¤è¤Ã¤Æ¥µ¡¼¥Ð¡¼¤¬ÅÐÏ¿¤µ¤ì¤Æ¡¢¡ÖHelloServerApName¡×¤È¤¤¤¦Ì¾Á°¤¬¥µ¡¼¥Ð¡¼¤Ë³ä¤êÅö¤Æ¤é¤ì¡¢ÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥µ¡¼¥Ð¡¼°ìÍ÷¤È¤È¤â¤Ë¥µ¡¼¥Ð¡¼ID¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++
++.LP
++.LP
++Ê̤ÎüËö¥¦¥£¥ó¥É¥¦¤Þ¤¿¤Ï¥×¥í¥ó¥×¥È¤«¤é¥¯¥é¥¤¥¢¥ó¥È¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.LP
++\
++.LP
++.nf
++\f3
++.fl
++ java HelloClient \-ORBInitialPort 1050 \-ORBInitialHost localhost
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤ÎÎã¤Î\f2\-ORBInitialHost localhost\fP¤Ï¾Êά¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤¬Hello¥¯¥é¥¤¥¢¥ó¥È¤È¤·¤ÆƱ°ì¥Û¥¹¥È¾å¤ÇÆ°ºî¤·¤Æ¤¤¤ë¤«¤é¤Ç¤¹¡£¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤¬Ê̤Υۥ¹¥È¤ÇÆ°ºî¤·¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤¬Æ°ºî¤·¤Æ¤¤¤ë¥Û¥¹¥È¤ò\f2\-ORBInitialHost\fP \f2nameserverhost\fP¤Ç»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++Á°²ó¤Î¼ê½ç¤ÈƱÍͤ˥͡¼¥à¡¦¥µ¡¼¥Ð¡¼(\f2orbd\fP)¤Î¥Ý¡¼¥È¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð\f2\-ORBInitialPort 1050\fP¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++\
++.LP
++.LP
++\
++.LP
++.LP
++¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤ÎÁàºî¤¬½ªÎ»¤·¤¿¤é¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼(\f2orbd\fP)¤È\f2servertool\fP¤òÄä»ß¤¹¤ë¤«½ªÎ»¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++DOS¥×¥í¥ó¥×¥È¤Ç\f2orbd\fP¤ò¥·¥ã¥Ã¥È¥À¥¦¥ó¤¹¤ë¤Ë¤Ï¡¢¥µ¡¼¥Ð¡¼¤ò¼Â¹Ô¤·¤Æ¤¤¤ë¥¦¥£¥ó¥É¥¦¤òÁªÂò¤·¤Æ\f2[Ctrl]+[C]\fP¥­¡¼¤ò²¡¤·¤Þ¤¹¡£UNIX¥·¥§¥ë¤Ç\f2orbd\fP¤ò¥·¥ã¥Ã¥È¥À¥¦¥ó¤¹¤ë¤Ë¤Ï¡¢¥×¥í¥»¥¹¤ò¸¡½Ð¤·¤Æ½ªÎ»(kill)¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤òÌÀ¼¨Åª¤ËÄä»ß¤¹¤ë¤Þ¤Ç¤Ï¡¢¸Æ½Ð¤·ÂÔµ¡¾õÂÖ¤¬Â³¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2servertool\fP¤ò¥·¥ã¥Ã¥È¥À¥¦¥ó¤¹¤ë¤Ë¤Ï¡¢\f2quit\fP¤ÈÆþÎϤ·¤Æ¥­¡¼¥Ü¡¼¥É¤Î\f2[Enter]\fP¥­¡¼¤ò²¡¤·¤Þ¤¹¡£
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++.na
++\f2¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
++.br
++.TP 2
++o
++servertool(1)
++.RE
++
++.LP
++.br
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/pack200.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/pack200.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,344 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH pack200 1 "07 May 2011"
++.TH pack200 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++pack200 \- JAR¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++½ªÎ»¥¹¥Æ¡¼¥¿¥¹
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.TP 2
++o
++Ãí°Õ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++\f4pack200\fP\f2 [ \fP\f2options\fP ] \f2output\-file\fP \f2JAR\-file\fP
++.LP
++.LP
++¥ª¥×¥·¥ç¥ó¤Î»ØÄê½ç½ø¤Ë·è¤Þ¤ê¤Ï¤¢¤ê¤Þ¤»¤ó¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Þ¤¿¤Ïproperties¥Õ¥¡¥¤¥ë¤Ë»ØÄꤵ¤ì¤¿ºÇ¸å¤Î¥ª¥×¥·¥ç¥ó¤¬¡¢¤½¤ì°ÊÁ°¤Ë»ØÄꤵ¤ì¤¿¤¹¤Ù¤Æ¤Î¥ª¥×¥·¥ç¥ó¤è¤êÍ¥À褵¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++options
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡£
++.TP 3
++output\-file
++½ÐÎÏ¥Õ¥¡¥¤¥ë¤Î̾Á°¡£
++.TP 3
++JAR\-file
++ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î̾Á°¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f2pack200\fP¥Ä¡¼¥ë¤Ï¡¢Java \f2gzip\fP°µ½Ì¥×¥í¥°¥é¥à¤ò»ÈÍѤ·¤ÆJAR¥Õ¥¡¥¤¥ë¤ò\f2pack200\fP°µ½Ì¥Õ¥¡¥¤¥ë¤ËÊÑ´¹¤¹¤ëJava¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ç¤¹¡£\f2pack200\fP¥Õ¥¡¥¤¥ë¤Ï¹â°µ½Ì¤Î¥Õ¥¡¥¤¥ë¤Ç¡¢ÂÓ°èÉý¤ÎÀáÌó¤ä¥À¥¦¥ó¥í¡¼¥É»þ´Ö¤Îû½Ì¤äľÀÜ¥Ç¥×¥í¥¤¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2pack200\fP¥Ä¡¼¥ë¤Ë¤Ï¡¢°µ½Ì¥¨¥ó¥¸¥ó¤ÎÀßÄê¤äÈùÄ´À°¤ò¹Ô¤¦¥ª¥×¥·¥ç¥ó¤¬ÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.SS
++°ìÈÌŪ¤Ê»ÈÍÑÊýË¡:
++.LP
++.LP
++\f2% pack200 myarchive.pack.gz myarchive.jar\fP
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î\f2pack200\fPÀßÄê¤ò»ÈÍѤ·¤Æ\f2myarchive.pack.gz\fP¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f4\-r \-\-repack\fP
++.LP
++.LP
++¥Õ¥¡¥¤¥ë\f2myarchive.jar\fP¤ò¥Ñ¥Ã¥¯¤·¤¿¸å¥¢¥ó¥Ñ¥Ã¥¯¤¹¤ë¤³¤È¤Ç¡¢JAR¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£À¸À®¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ï\f2jarsigner(1)\fP¥Ä¡¼¥ë¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤È¤·¤Æ»ÈÍѤǤ­¤Þ¤¹¡£
++.LP
++.LP
++\f2% pack200 \-\-repack myarchive\-packer.jar myarchive.jar\fP
++.LP
++.LP
++\f2% pack200 \-\-repack myarchive.jar\fP
++.LP
++.LP
++\f4\-g \-\-no\-gzip\fP
++.LP
++.LP
++\f2pack200\fP¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¤­¤Ï¡¢Å¬Àڤʰµ½Ì¥Ä¡¼¥ë¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢¥¿¡¼¥²¥Ã¥È¡¦¥·¥¹¥Æ¥à¤Ç¤Ï¡¢Âбþ¤¹¤ë°µ½Ì²ò½ü¥Ä¡¼¥ë¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2% pack200 \-\-no\-gzip myarchive.pack myarchive.jar\fP
++.LP
++.LP
++\f4\-G \-\-strip\-debug\fP
++.LP
++.LP
++½ÐÎϤ«¤é¥Ç¥Ð¥Ã¥°ÍѤΰÀ­¤òºï½ü¤·¤Þ¤¹¡£¤³¤ì¤Ë¤Ï¡¢\f2SourceFile\fP¡¢\f2LineNumberTable\fP¡¢\f2LocalVariableTable\fP¡¢\f2LocalVariableTypeTable\fP¤¬´Þ¤Þ¤ì¤Þ¤¹¡£¤³¤ì¤é¤Î°À­¤òºï½ü¤¹¤ì¤Ð¡¢¥À¥¦¥ó¥í¡¼¥É¤È¥¤¥ó¥¹¥È¡¼¥ë¤Î¥µ¥¤¥º¤Ï¾®¤µ¤¯¤Ê¤ê¤Þ¤¹¤¬¡¢¥Ç¥Ð¥Ã¥¬¤Îµ¡Ç½¤ÏÀ©¸Â¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-\-keep\-file\-order\fP
++.LP
++.LP
++ÆþÎÏ¥Õ¥¡¥¤¥ëÆâ¤Î¥Õ¥¡¥¤¥ë¤Î½ç½ø¤ò°Ý»ý¤·¤Þ¤¹¡£¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤Ç¤¹¡£
++.LP
++.LP
++\f4\-O \-\-no\-keep\-file\-order\fP
++.LP
++.LP
++¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ï¡¢¤¹¤Ù¤Æ¤ÎÍ×ÁǤòʤÙÂؤ¨¤ÆžÁ÷¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢JAR¥Ç¥£¥ì¥¯¥È¥ê̾¤¬ºï½ü¤µ¤ì¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢¥À¥¦¥ó¥í¡¼¥É¤Î¥µ¥¤¥º¤Ï¾®¤µ¤¯¤Ê¤ê¤Þ¤¹¤¬¡¢¥¤¥ó¥Ç¥Ã¥¯¥¹¤ò¤Ï¤¸¤á¤È¤¹¤ëJAR¥Õ¥¡¥¤¥ë¤ÎºÇŬ²½µ¡Ç½¤ÏÀµ¾ï¤ËÆ°ºî¤·¤Ê¤¯¤Ê¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f4\-Svalue \-\-segment\-limit=\fP\f2value\fP
++.LP
++.LP
++¤³¤ÎÃͤϡ¢³Æ¥¢¡¼¥«¥¤¥Ö¡¦¥»¥°¥á¥ó¥È¤ÎͽÁÛ¥¿¡¼¥²¥Ã¥È¡¦¥µ¥¤¥ºN(¥Ð¥¤¥Èñ°Ì)¤Ç¤¹¡£Ã±°ì¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤ÎɬÍ×¥µ¥¤¥º¤¬
++.br
++N¥Ð¥¤¥È¤òĶ¤¨¤ë¤È¡¢¤½¤Î¥Õ¥¡¥¤¥ë¤Ë¤ÏÆÈΩ¤·¤¿¥¢¡¼¥«¥¤¥Ö¡¦¥»¥°¥á¥ó¥È¤¬³ä¤êÅö¤Æ¤é¤ì¤Þ¤¹¡£Æüì¤Ê¥±¡¼¥¹¤È¤·¤Æ¡¢Ãͤ¬\f2\-1\fP¤Î¾ì¹ç¤Ï¡¢¤¹¤Ù¤Æ¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤ò´Þ¤àÂ礭¤Êñ°ì¤Î¥»¥°¥á¥ó¥È¤¬À¸À®¤µ¤ì¡¢Ãͤ¬\f20\fP¤Î¾ì¹ç¤Ï¡¢¥¯¥é¥¹¤´¤È¤Ë¥»¥°¥á¥ó¥È¤¬1¤Ä¤º¤ÄÀ¸À®¤µ¤ì¤Þ¤¹¡£¥¢¡¼¥«¥¤¥Ö¡¦¥»¥°¥á¥ó¥È¤¬Â礭¤¯¤Ê¤ë¤È¡¢ÃÇÊÒ²½¤¬¾¯¤Ê¤¯¤Ê¤ê°µ½ÌΨ¤¬¹â¤¯¤Ê¤ê¤Þ¤¹¤¬¡¢¤½¤Î½èÍý¤Ë¤Ï¿¤¯¤Î¥á¥â¥ê¡¼¤¬É¬ÍפǤ¹¡£
++.LP
++.LP
++³Æ¥»¥°¥á¥ó¥È¤Î¥µ¥¤¥º¤Ï¡¢¥»¥°¥á¥ó¥È¤ËÊÑ´¹¤µ¤ì¤ë¤½¤ì¤¾¤ì¤ÎÆþÎÏ¥Õ¥¡¥¤¥ë¤Î¥µ¥¤¥º¤Î¤Û¤«¡¢¤½¤Î̾Á°¤È¾¤ÎÁ÷¿®¤µ¤ì¤ë¥×¥í¥Ñ¥Æ¥£¤Î¥µ¥¤¥º¤ò·×»»¤·¤Æ¿ä¬¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ï \-1¤Ç¤¹¡£¤Ä¤Þ¤ê¡¢¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ï¾ï¤Ëñ°ì¤Î¥»¥°¥á¥ó¥È½ÐÎÏ¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£¶Ëü¤ËÂ礭¤Ê½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤ë¾ì¹ç¤Ë¤Ï¡¢ÆþÎÏ¥Õ¥¡¥¤¥ë¤ò¥»¥°¥á¥ó¥È²½(ʬ³ä)¤·¤Æ¤è¤ê¾®¤µ¤ÊJAR¤Ë¤¹¤ë¤³¤È¤ò¶¯¤¯¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.LP
++.LP
++¤³¤ÎÀ©¸Â¤¬²Ý¤µ¤ì¤Æ¤¤¤Ê¤¤10MB¤ÎJAR¥Ñ¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë¤ÏÄ̾Ìó10%¾®¤µ¤¯¥Ñ¥Ã¥¯¤µ¤ì¤Þ¤¹¡£¤·¤«¤·¡¢¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ç¤è¤êÂ礭¤ÊJava¥Ò¡¼¥×(¥»¥°¥á¥ó¥È¤ÎÀ©¸Â¤ÎÌó10ÇÜ)¤òɬÍפȤ¹¤ë¾ì¹ç¤â¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f4\-Evalue \-\-effort=\fP\f2value\fP
++.LP
++.LP
++ñ°ì¤Î10¿Ê¿ôÃͤò»ØÄꤷ¤¿¾ì¹ç¡¢¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ï¡¢»ØÄꤵ¤ì¤¿°µ½ÌΨ¤Ç¥¢¡¼¥«¥¤¥Ö¤ò°µ½Ì¤·¤Þ¤¹¡£¥ì¥Ù¥ë\f21\fP¤Î¾ì¹ç¤Ï¡¢Èæ³ÓŪû¤¤°µ½Ì»þ´Ö¤Ç¤ä¤äÂ礭¤á¤Î¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¤¬¡¢¥ì¥Ù¥ë\f29\fP¤Î¾ì¹ç¤Ï¡¢Èó¾ï¤ËŤ¤»þ´Ö¤¬¤«¤«¤ë¤â¤Î¤Î¡¢¤è¤ê°µ½ÌΨ¤Î¹â¤¤¥Õ¥¡¥¤¥ë¤¬À¸À®¤µ¤ì¤Þ¤¹¡£Æüì¤ÊÃÍ\f20\fP¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢¸µ¤ÎJAR¥Õ¥¡¥¤¥ë¤ò°µ½Ì¤Ê¤·¤ÇľÀÜ¥³¥Ô¡¼¤·¤Þ¤¹¡£JSR 200ɸ½à¤Ç¤Ï¡¢¤¹¤Ù¤Æ¤Î²òÅà¥×¥í¥°¥é¥à¤¬¡¢¤³¤ÎÆÃÊ̤ʾì¹ç¤ò¥¢¡¼¥«¥¤¥ÖÁ´ÂΤΥѥ¹¥¹¥ë¡¼¤È²ò¼á¤¹¤ë¤è¤¦¤Ëµ¬Äꤷ¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ï\f25\fP¤Ç¤¹¡£¤³¤Î¾ì¹ç¡¢É¸½àŪ¤Ê»þ´Ö¤ÇŬÀڤʰµ½Ì¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-Hvalue \-\-deflate\-hint=\fP\f2value\fP
++.LP
++.LP
++ÆþÎϾðÊó¤òÊݸ¤¹¤ë¤È¤¤¤¦¥Ç¥Õ¥©¥ë¥ÈÃͤò¾å½ñ¤­¤·¤Þ¤¹¡£Å¾Á÷¤µ¤ì¤ë¥¢¡¼¥«¥¤¥Ö¤Î¥µ¥¤¥º¤ÏÂ礭¤¯¤Ê¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¼¡¤ÎÃͤò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++true
++.TP 3
++false
++¤É¤Á¤é¤Î¾ì¹ç¤Ç¤â¡¢»ØÄê¤Ë½¾¤Ã¤Æ¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤¬¥Ç¥Õ¥ì¡¼¥·¥ç¥ó¡¦¥Ò¥ó¥È¤ò½ÐÎÏ¥¢¡¼¥«¥¤¥Ö¤ËÀßÄꤷ¤Þ¤¹¡£¥¢¡¼¥«¥¤¥ÖÍ×ÁǤθġ¹¤Î¥Ç¥Õ¥ì¡¼¥·¥ç¥ó¡¦¥Ò¥ó¥È¤ÏžÁ÷¤µ¤ì¤Þ¤»¤ó¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++keep
++ÆþÎÏJAR.Æâ¤Ç¸«¤Ä¤«¤Ã¤¿¥Ç¥Õ¥ì¡¼¥·¥ç¥ó¡¦¥Ò¥ó¥È¤ò°Ý»ý¤·¤Þ¤¹¡£(¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¹¡£)
++.RE
++
++.LP
++.LP
++\f4\-mvalue \-\-modification\-time=\fP\f2value\fP
++.LP
++.LP
++¼¡¤ÎÃͤò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++latest
++¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ï¡¢¸µ¤Î¥¢¡¼¥«¥¤¥Ö¤Î»ÈÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤Î¤¦¤Á¤ÎºÇ½ª¹¹¿·»þ¹ï¤«¡¢¤½¤Î¥»¥°¥á¥ó¥È¤Î»ÈÍѲÄǽ¤Ê¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤ÎºÇ½ª¹¹¿·»þ¹ï¤òÆÃÄꤷ¤è¤¦¤È¤·¤Þ¤¹¡£¤³¤Îñ°ì¤ÎÃͤϥ»¥°¥á¥ó¥È¤Î°ìÉô¤È¤·¤ÆžÁ÷¤µ¤ì¡¢³Æ¥»¥°¥á¥ó¥È¤ÎÁ´¥¨¥ó¥È¥ê¤ËŬÍѤµ¤ì¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢¤¹¤Ù¤Æ¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¦¥Õ¥¡¥¤¥ë¤Ëñ°ì¤ÎÆüÉÕ¤¬ÀßÄꤵ¤ì¤ë¤È¤¤¤¦ÌäÂê¤Ï¤¢¤ê¤Þ¤¹¤¬¡¢¥¢¡¼¥«¥¤¥Ö¤ÎžÁ÷¥µ¥¤¥º¤ò¾¯¤·¾®¤µ¤¯¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.TP 3
++keep
++ÆþÎÏJARÆâ¤Ç¸«¤Ä¤«¤Ã¤¿Êѹ¹»þ¹ï¤ò°Ý»ý¤·¤Þ¤¹¡£(¤³¤ì¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¹¡£)
++.RE
++
++.LP
++.LP
++\f4\-Pfile \-\-pass\-file=\fP\f2file\fP
++.LP
++.LP
++¥Õ¥¡¥¤¥ë¤ò°µ½Ì¤»¤º¡¢¥Ð¥¤¥Èñ°Ì¤ÇžÁ÷¤¹¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò·«ÊÖ¤·»ÈÍѤ·¤Æ¡¢Ê£¿ô¤Î¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¥·¥¹¥Æ¥à¡¦¥Õ¥¡¥¤¥ë¡¦¥»¥Ñ¥ì¡¼¥¿¤¬JAR¥Õ¥¡¥¤¥ë¥»¥Ñ¥ì¡¼¥¿¡Ö\f2/\fP¡×¤ËÃÖ¤­´¹¤¨¤é¤ì¤ëÅÀ¤ò½ü¤­¡¢¥Ñ¥¹Ì¾¤ÎÊÑ´¹¤Ï¹Ô¤ï¤ì¤Þ¤»¤ó¡£·ë²Ì¤È¤·¤ÆÆÀ¤é¤ì¤ë¥Õ¥¡¥¤¥ë̾¤Ï¡¢Ê¸»úÎó¤È¤·¤ÆÀµ³Î¤ËJAR¥Õ¥¡¥¤¥ë¤Ç¤Î½Ð¸½¤È°ìÃפ·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£file¤Ë¥Ç¥£¥ì¥¯¥È¥ê̾¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤¬Å¾Á÷¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-Uaction \-\-unknown\-attribute=\fP\f2action\fP
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤ò̵¸ú¤Ë¤·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢ÉÔÌÀ¤Ê°À­¤ò´Þ¤à¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤¿¥¢¥¯¥·¥ç¥ó¤ÇžÁ÷¤·¤Þ¤¹¡£¥¢¥¯¥·¥ç¥ó¤È¤·¤Æ»ØÄê²Äǽ¤ÊÃͤϼ¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 3
++error
++\f2pack200\fP¤ÎÁàºîÁ´ÂΤ˼ºÇÔ¤·¡¢Å¬ÀڤʲòÀ⤬ɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++strip
++°À­¤¬¥É¥í¥Ã¥×¤µ¤ì¤Þ¤¹¡£Ãí°Õ: VMɬ¿Ü°À­¤òºï½ü¤¹¤ë¤È¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Î¾ã³²¤¬È¯À¸¤¹¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++pass
++¤³¤Î°À­¤¬¸¡½Ð¤µ¤ì¤¿¾ì¹ç¡¢¥¯¥é¥¹Á´ÂΤ¬1¤Ä¤Î¥ê¥½¡¼¥¹¤È¤·¤ÆžÁ÷¤µ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++\f4\-Cattribute\-name=\fP\f2layout\fP \f3\-\-class\-attribute=\fP\f2attribute\-name=action\fP
++.br
++\f4\-Fattribute\-name=\fP\f2layout\fP \f3\-\-field\-attribute=\fP\f2attribute\-name=action\fP
++.br
++\f4\-Mattribute\-name=\fP\f2layout\fP \f3\-\-method\-attribute=\fP\f2attribute\-name=action\fP
++.br
++\f4\-Dattribute\-name=\fP\f2layout\fP \f3\-\-code\-attribute=\fP\f2attribute\-name=action\fP
++.LP
++.LP
++¤³¤ì¤é4¤Ä¤Î¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢¥¯¥é¥¹¡¦¥¨¥ó¥Æ¥£¥Æ¥£¤ËClass°À­¡¢Field°À­¡¢Method°À­¡¢Code°À­¤Ê¤É¤Î°À­¤Î¥ì¥¤¥¢¥¦¥È¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£attribute\-name¤Ë¤Ï¡¢¤³¤ì¤«¤é¥ì¥¤¥¢¥¦¥È¤Þ¤¿¤Ï¥¢¥¯¥·¥ç¥ó¤òÄêµÁ¤¹¤ë°À­¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£¥¢¥¯¥·¥ç¥ó¤È¤·¤Æ»ØÄê²Äǽ¤ÊÃͤϼ¡¤Î¤È¤ª¤ê¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 3
++some\-layout\-string
++¥ì¥¤¥¢¥¦¥È¸À¸ì¤Ï¡¢JSR 200»ÅÍͤËÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++Îã: \f2\-\-class\-attribute=SourceFile=RUH\fP
++.TP 3
++error
++¤³¤Î°À­¤¬¸¡½Ð¤µ¤ì¤¿¾ì¹ç¡¢pack200¤ÎÁàºî¤Ë¼ºÇÔ¤·¡¢Å¬ÀڤʲòÀ⤬ɽ¼¨¤µ¤ì¤Þ¤¹¡£
++.TP 3
++strip
++¤³¤Î°À­¤¬¸¡½Ð¤µ¤ì¤¿¾ì¹ç¡¢Â°À­¤Ï½ÐÎϤ«¤éºï½ü¤µ¤ì¤Þ¤¹¡£Ãí°Õ: VMɬ¿Ü°À­¤òºï½ü¤¹¤ë¤È¥¯¥é¥¹¡¦¥í¡¼¥À¡¼¤Î¾ã³²¤¬È¯À¸¤¹¤ë¤³¤È¤¬¤¢¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.LP
++Îã: \f2\-\-class\-attribute=CompilationID=pass\fP¤È¤¤¤¦¤³¤Î°À­¤ò´Þ¤à¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤òžÁ÷¤·¤Þ¤¹¡£¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤Ï¡¢¤½¤Î¾¤Î¥¢¥¯¥·¥ç¥ó¤ò¹Ô¤¤¤Þ¤»¤ó¡£
++.LP
++.LP
++\f4\-f\fP\f2 \fP\f2pack.properties\fP \f3\-\-config\-file=\fP\f2pack.properties\fP
++.LP
++.LP
++¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¡¢¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë¤ò½é´ü²½¤¹¤ë¤¿¤á¤ÎJava¥×¥í¥Ñ¥Æ¥£¤¬´Þ¤Þ¤ì¤Æ¤¤¤ë¹½À®¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2% pack200 \-f pack.properties myarchive.pack.gz myarchive.jar\fP
++.br
++\f2% more pack.properties\fP
++.br
++\f2# Generic properties for the packer.\fP
++.br
++\f2modification.time=latest\fP
++.br
++\f2deflate.hint=false\fP
++.br
++\f2keep.file.order=false\fP
++.br
++\f2# This option will cause the files bearing new attributes to\fP
++.br
++\f2# be reported as an error rather than passed uncompressed.\fP
++.br
++\f2unknown.attribute=error\fP
++.br
++\f2# Change the segment limit to be unlimited.\fP
++.br
++\f2segment.limit=\-1\fP
++.LP
++.LP
++\f4\-v \-\-verbose\fP
++.LP
++.LP
++ºÇ¾®¸Â¤Î¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤òÊ£¿ô»ØÄꤹ¤ë¤È¡¢¤è¤êŤ¤¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-q \-\-quiet\fP
++.LP
++.LP
++¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤»¤º¤ËÆ°ºî¤¹¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f4\-lfilename \-\-log\-file=\fP\f2filename\fP
++.LP
++.LP
++½ÐÎÏ¥á¥Ã¥»¡¼¥¸¤Î¥í¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f4\-? \-h \-\-help\fP
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ë´Ø¤¹¤ë¥Ø¥ë¥×¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\f4\-V \-\-version\fP
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ë´Ø¤¹¤ë¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\f4\-J\fP\f2option\fP
++.LP
++.LP
++\f2option\fP¤ò¡¢\f2pack200\fP¤«¤é¸Æ¤Ó½Ð¤µ¤ì¤¿Javaµ¯Æ°¥Ä¡¼¥ë¤ËÅϤ·¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤¬48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï\f2\-X\fP¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Þ¤»¤ó¤¬¡¢\f2pack200\fP¤Îɸ½à¥ª¥×¥·¥ç¥ó¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£\f2\-J\fP¤ò»ÈÍѤ·¤Æ¡¢Java¤Çµ­½Ò¤µ¤ì¤¿¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ëÇظå¤ÎVM¤Ë¥ª¥×¥·¥ç¥óÅϤ¹¤³¤È¤Ï¡¢¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.SH "½ªÎ»¥¹¥Æ¡¼¥¿¥¹"
++.LP
++.LP
++¼¡¤Î½ªÎ»Ãͤ¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2\ 0\fPÀµ¾ï½ªÎ»¤·¤¿¾ì¹ç
++.LP
++.LP
++\f2>0\fP¥¨¥é¡¼¤¬È¯À¸¤·¤¿¾ì¹ç
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++unpack200(1)
++.TP 2
++o
++.na
++\f2Java SE¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/index.html
++.TP 2
++o
++.na
++\f2Java¥Ç¥×¥í¥¤¥á¥ó¥È¡¦¥¬¥¤¥É \- Pack200\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
++.TP 2
++o
++jar(1) \- Java Archive¥Ä¡¼¥ë
++.TP 2
++o
++jarsigner(1) \- JAR½ð̾¥Ä¡¼¥ë
++.TP 2
++o
++\f2attributes(5)\fP¤Î¥Þ¥Ë¥å¥¢¥ë¡¦¥Ú¡¼¥¸
++.RE
++
++.LP
++.SH "Ãí°Õ"
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤È\f2pack(1)\fP¤òº®Æ±¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤ì¤é¤ÏÊÌÀ½ÉʤǤ¹¡£
++.LP
++.LP
++JDK¤ËÉÕ°¤¹¤ëJava SE API»ÅÍͤȤÎÁê°ã¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¤Ë¤Ï¡¢»ÅÍͤòÍ¥À褷¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++
+--- jdk/src/bsd/doc/man/ja/policytool.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/policytool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,102 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH policytool 1 "07 May 2011"
++.TH policytool 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++policytool \- PolicyTool´ÉÍýGUI¥æ¡¼¥Æ¥£¥ê¥Æ¥£
++.LP
++\f3policytool\fP¤Ï¡¢¥æ¡¼¥Æ¥£¥ê¥Æ¥£GUI·Ðͳ¤Ç¼èÆÀ¤·¤¿¥æ¡¼¥¶¡¼ÆþÎϤ˴ð¤Å¤¤¤Æ¡¢¥×¥ì¡¼¥ó¡¦¥Æ¥­¥¹¥È¤Î¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤òÆɤ߽ñ¤­¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++policytool´ÉÍý¼Ô¥æ¡¼¥Æ¥£¥ê¥Æ¥£¤ò¼Â¹Ô¤·¤Þ¤¹
++.LP
++.LP
++\f4policytool\fP
++.LP
++.LP
++policytool¤ò¼Â¹Ô¤·¡¢»ØÄꤵ¤ì¤¿¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤ß¤Þ¤¹
++.LP
++.LP
++\f4policytool\fP\f2[\-file\ \fP\f2filename\fP\f2]\fP
++.LP
++.LP
++ÀâÌÀ
++.LP
++.RS 3
++.TP 3
++file
++¥í¡¼¥«¥ë¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤à¤è¤¦¤Ë\f2policytool\fP¤Ë»Ø¼¨¤·¤Þ¤¹
++.TP 3
++filename
++¥Õ¥¡¥¤¥ë̾
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3policytool\fP¤Ï¡¢¥æ¡¼¥¶¡¼¤¬¥í¡¼¥«¥ë¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ÎÆâÍƤò´ÉÍý¤¹¤ë¤³¤È¤ò²Äǽ¤Ë¤¹¤ëGUI¤Ç¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ëºîÀ®¤ª¤è¤Ó´ÉÍý¥Ä¡¼¥ë\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++file
++\f2filename\fP¤òÆɤ߹þ¤ß¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.na
++\f2¥Ç¥Õ¥©¥ë¥È¤Î¥Ý¥ê¥·¡¼¼ÂÁõ¤ª¤è¤Ó¹½Ê¸\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html
++.br
++
++.LP
++.na
++\f2¥Ý¥ê¥·¡¼¡¦¥Ä¡¼¥ë¡¦¥æ¡¼¥¶¡¼¥º¡¦¥¬¥¤¥É\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html
++.br
++
++.LP
++.na
++\f2¥»¥­¥å¥ê¥Æ¥£¸¢¸Â\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/permissions.html
++.br
++
++.LP
++.na
++\f2¥»¥­¥å¥ê¥Æ¥£¤Î³µÍ×\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/overview/jsoverview.html
++.br
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/rmic.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/rmic.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,209 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmic 1 "07 May 2011"
++.TH rmic 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++rmic \- Java RMI¥³¥ó¥Ñ¥¤¥é
++.LP
++.LP
++\f3rmic\fP¤Ë¤è¤Ã¤Æ¡¢JRMP¤Þ¤¿¤ÏIIOP¥×¥í¥È¥³¥ë¤ò»ÈÍѤ¹¤ë¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¥¹¥¿¥Ö¡¢¥¹¥±¥ë¥È¥ó¡¢¤ª¤è¤ÓTie¥¯¥é¥¹¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¤Þ¤¿¡¢OMG IDL¤âÀ¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++rmic [ \fP\f3options\fP\f3 ] \fP\f4package\-qualified\-class\-name(s)\fP\f3
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3rmic\fP¥³¥ó¥Ñ¥¤¥é¤Ë¤è¤Ã¤Æ¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¡¢¥¹¥¿¥Ö¡¢¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë(JRMP¥×¥í¥È¥³¥ë)¡¢¤ª¤è¤Ó¥¹¥¿¥Ö¤ÈTie¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤ÎÁȹ礻(IIOP¥×¥í¥È¥³¥ë)¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¼ÂÁõ¥¯¥é¥¹¤Ç¤¢¤ë¤³¤ì¤é¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ï¡¢Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Î¥¯¥é¥¹¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤¿¤È¤­¤ËÀ¸À®¤µ¤ì¤Þ¤¹¡£¥ê¥â¡¼¥È¼ÂÁõ¥¯¥é¥¹¤Ï¡¢\f2java.rmi.Remote\fP¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ò¼ÂÁõ¤¹¤ë¥¯¥é¥¹¤Ç¤¹¡£\f3rmic\fP¥³¥Þ¥ó¥É¤Ç¤Î¥¯¥é¥¹Ì¾¤Ï¡¢¤½¤Î¥¯¥é¥¹¤¬\f3javac\fP¥³¥Þ¥ó¥É¤Ç¥³¥ó¥Ñ¥¤¥ë¤¬À®¸ù¤·¤Æ¤¤¤Æ¡¢¤«¤Ä´°Á´½¤¾þ¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ç¤¢¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë̾\f2HelloImpl\fP¤Ç\f3rmic\fP¤ò¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++rmic hello.HelloImpl
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f2HelloImpl_Stub.class\fP¥Õ¥¡¥¤¥ë¤¬¡¢¥¯¥é¥¹¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¤¬ÉÕ¤¤¤¿\f2hello\fP¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ËºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î\f2¥¹¥±¥ë¥È¥ó\fP¤ÏJRMP¥×¥í¥È¥³¥ë¡¦¥µ¡¼¥Ð¡¼Â¦¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ç¡¢¼ÂºÝ¤Î¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¼ÂÁõ¤ò¸Æ¤Ó½Ð¤¹¥á¥½¥Ã¥É¤ò´Þ¤ß¤Þ¤¹¡£
++.LP
++.LP
++¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î\f2Tie\fP¤Ï¡¢¥¹¥±¥ë¥È¥ó¤ÈƱÍͤ˥µ¡¼¥Ð¡¼Â¦¤Î¥¨¥ó¥Æ¥£¥Æ¥£¤Ç¤¹¤¬¡¢IIOP¥×¥í¥È¥³¥ë¤ò»ÈÍѤ·¤Æ¥¯¥é¥¤¥¢¥ó¥È¤ÈÄÌ¿®¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2¥¹¥¿¥Ö\fP¤È¤Ï¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¥¯¥é¥¤¥¢¥ó¥È¦¤Ç¤ÎÂåÍý¤Ç¤¹¡£¥¹¥¿¥Ö¤Ï¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¥á¥½¥Ã¥É¸Æ½Ð¤·¤ò¡¢¼Âʪ¤Î¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤¬¾ïÃ󤹤륵¡¼¥Ð¡¼¤ÈÄÌ¿®¤¹¤ëÌò³ä¤ò»ý¤Á¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥¯¥é¥¤¥¢¥ó¥È¤Î¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Ø¤Î»²¾È¤Ï¡¢¼ÂºÝ¤Ï¥í¡¼¥«¥ë¡¦¥¹¥¿¥Ö¤Ø¤Î»²¾È¤È¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Ç\f3rmic\fP¤Ç¤Ï¡¢1.2 JRMP¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤Î¤ß¤ò»ÈÍѤ¹¤ë¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤ì¤Ï¡¢\f2\-v1.2\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤¿¾ì¹ç¤ÈƱ¤¸Æ°ºî¤Ç¤¹¡£(5.0°ÊÁ°¤Ç¤Ï\f2\-vcompat\fP¥ª¥×¥·¥ç¥ó¤¬¥Ç¥Õ¥©¥ë¥È¤Ç¤¢¤Ã¤¿¤³¤È¤ËÃí°Õ¡£)IIOP¥×¥í¥È¥³¥ëÍѤΥ¹¥¿¥Ö¤ª¤è¤ÓTie¥¯¥é¥¹¤òÀ¸À®¤¹¤ë¤Ë¤Ï\f2\-iiop\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++¥¹¥¿¥Ö¤Ï¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Î¤ß¤ò¼ÂÁõ¤·¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤¬¼ÂÁõ¤¹¤ë¥í¡¼¥«¥ë¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ï¼ÂÁõ¤·¤Æ¤¤¤Þ¤»¤ó¡£JRMP¥¹¥¿¥Ö¤Ï¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¼«ÂΤ¬¼ÂÁõ¤¹¤ë¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤ÈƱ¤¸¤â¤Î¤ò¼ÂÁõ¤·¤Æ¤¤¤ë¤Î¤Ç¡¢¥¯¥é¥¤¥¢¥ó¥È¤Ï¡¢¥­¥ã¥¹¥È¤ä·¿¥Á¥§¥Ã¥¯¤ËJava¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤ËÁȤ߹þ¤Þ¤ì¤¿±é»»»Ò¤ò»ÈÍѤ¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£IIOP¤Î¾ì¹ç¤Ï¡¢\f2PortableRemoteObject.narrow\fP¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-bootclasspath path
++¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-classpath path
++\f3rmic\fP¤¬¥¯¥é¥¹¤òõ¤¹¤¿¤á¤Î¥Ñ¥¹¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤äCLASSPATH´Ä¶­ÊÑ¿ôÀßÄê¤ò¾å½ñ¤­¤·¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥³¥í¥ó¤Çʬ³ä¤·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢\f2path\fP¤Î°ìÈÌ·Á¼°¤Ï¼¡¤Î¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.nf
++\f3
++.fl
++.:<your_path>
++.fl
++\fP
++.fi
++¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++.:/usr/local/java/classes
++.fl
++\fP
++.fi
++.TP 3
++\-d directory
++À¸À®¤µ¤ì¤¿¥¯¥é¥¹³¬ÁؤνÐÎÏÀè¥Ç¥£¥ì¥¯¥È¥ê¤Î¥ë¡¼¥È¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥¹¥¿¥Ö¡¢¥¹¥±¥ë¥È¥ó¡¢¤ª¤è¤ÓTie¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë»ÈÍѤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++% rmic \-d /java/classes foo.MyClass
++.fl
++\fP
++.fi
++\f2MyClass\fP¤«¤é¼èÆÀ¤·¤¿¥¹¥¿¥Ö¤È¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤ò\f2/java/classes/foo\fP¥Ç¥£¥ì¥¯¥È¥ê¤ËÃÖ¤­¤Þ¤¹¡£\f2\-d\fP¥ª¥×¥·¥ç¥ó¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢\f2¡Ö\-d\ .¡×\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤ë¤È¸«¤Ê¤µ¤ì¤Þ¤¹¡£¥¿¡¼¥²¥Ã¥È¡¦¥¯¥é¥¹¤Î¥Ñ¥Ã¥±¡¼¥¸³¬Áؤ¬¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËºîÀ®¤µ¤ì¡¢¥¹¥¿¥Ö¡¢Tie¡¢¤ª¤è¤Ó¥¹¥±¥ë¥È¥ó¡¦¥Õ¥¡¥¤¥ë¤¬¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£(°ÊÁ°¤Î¥Ð¡¼¥¸¥ç¥ó¤Î\f3rmic\fP¤Ç¤Ï¡¢\f2\-d\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ñ¥Ã¥±¡¼¥¸³¬ÁؤϺîÀ®\f2¤µ¤ì¤º\fP¡¢½ÐÎÏ¥Õ¥¡¥¤¥ë¤Ï¤¹¤Ù¤Æ¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËľÀܳÊǼ¤µ¤ì¤Æ¤¤¤¿¡£)
++.br
++\
++.TP 3
++\-extdirs path
++¥¤¥ó¥¹¥È¡¼¥ë·¿³ÈÄ¥µ¡Ç½¤Î°ÌÃÖ¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Þ¤¹¡£
++.TP 3
++\-g
++¥í¡¼¥«¥ëÊÑ¿ô¤ò´Þ¤à¤¹¤Ù¤Æ¤Î¥Ç¥Ð¥Ã¥°¾ðÊó¤òÀ¸À®¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¹ÔÈÖ¹æ¾ðÊó¤Î¤ßÀ¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-idl
++\f2rmic\fP¤Ë¤è¤Ã¤Æ¡¢»ØÄꤷ¤¿¥¯¥é¥¹¤ª¤è¤Ó»²¾È¤µ¤ì¤¿¥¯¥é¥¹¤ÎOMG IDL¤¬À¸À®¤µ¤ì¤Þ¤¹¡£IDL¤Ç¤Ï¡¢¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Ë°Í¸¤»¤º¤Ë¡¢Àë¸À¤¹¤ë¤À¤±¤Ç¥ª¥Ö¥¸¥§¥¯¥È¤ÎAPI¤ò»ØÄꤹ¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£IDL¤Ï¡¢¥á¥½¥Ã¥É¤ª¤è¤Ó¥Ç¡¼¥¿¤Î»ÅÍͤȤ·¤Æ»ÈÍѤ·¤Þ¤¹¡£CORBA¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÄ󶡤¹¤ëǤ°Õ¤Î¸À¸ì¤Ç¡¢¥á¥½¥Ã¥É¤ª¤è¤Ó¥Ç¡¼¥¿¤ÎºîÀ®¤ª¤è¤Ó¸Æ½Ð¤·¤ò¹Ô¤¦¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤³¤ì¤é¤Î¸À¸ì¤Ë¤Ï¡¢Java¤ª¤è¤ÓC++¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2Java ¸À¸ì¤ÈIDL¤Î¥Þ¥Ã¥Ô¥ó¥°\fP @
++.fi
++http://www.omg.org/technology/documents/formal/java_language_mapping_to_omg_idl.htm(OMG)¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.br
++\f2\-idl\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¤­¤Ë¤Ï¡¢Â¾¤Î¥ª¥×¥·¥ç¥ó¤â»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 3
++\-always¤Þ¤¿¤Ï\-alwaysgenerate
++´û¸¤Î¥¹¥¿¥Ö¡¢Tie¡¢¤ª¤è¤ÓIDL¤¬ÆþÎÏ¥¯¥é¥¹¤è¤ê¿·¤·¤¤¤È¤­¤Ç¤â¡¢¶¯À©Åª¤ËÀ¸À®¤·Ä¾¤·¤Þ¤¹¡£
++.TP 3
++\-factory
++À¸À®¤µ¤ì¤¿IDL¤Çfactory¥­¡¼¥ï¡¼¥É¤ò»ÈÍѤ·¤Þ¤¹¡£
++.TP 3
++\-idlModule\ fromJavaPackage[.class]\ toIDLModule
++IDLEntity¥Ñ¥Ã¥±¡¼¥¸¤Î¥Þ¥Ã¥×¤ò»ØÄꤷ¤Þ¤¹¡£Îã¤ò¼¨¤·¤Þ¤¹¡£\ \f2\-idlModule foo.bar my::real::idlmod\fP
++.TP 3
++\-idlFile\ fromJavaPackage[.class]\ toIDLFile
++IDLEntity¥Õ¥¡¥¤¥ë¤Î¥Þ¥Ã¥×¤ò»ØÄꤷ¤Þ¤¹¡£Îã¤ò¼¨¤·¤Þ¤¹¡£\ \f2\-idlFile test.pkg.X TEST16.idl\fP\
++.RE
++.TP 3
++\-iiop
++\f2rmic\fP¤Ë¤è¤Ã¤Æ¡¢JRMP¤Î¥¹¥¿¥Ö¤È¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤Î¤«¤ï¤ê¤Ë¡¢IIOP¤Î¥¹¥¿¥Ö¤ÈTie¥¯¥é¥¹¤¬À¸À®¤µ¤ì¤Þ¤¹¡£¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤Ï¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¥í¡¼¥«¥ë¡¦¥×¥í¥­¥·¤Ç¡¢¥¯¥é¥¤¥¢¥ó¥È¤«¤é¥µ¡¼¥Ð¡¼¤Ë¸Æ½Ð¤·¤òÁ÷¿®¤¹¤ë¤È¤­¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£³Æ¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤Ë¤Ï¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤¬É¬ÍפǤ¹¡£¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤Ë¤è¤Ã¤Æ¥ê¥â¡¼¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤¬¼ÂÁõ¤µ¤ì¤Þ¤¹¡£¥¯¥é¥¤¥¢¥ó¥È¤Ç¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ò»²¾È¤¹¤ë¤È¤­¤Ï¡¢¼ÂºÝ¤Ë¤Ï¥¹¥¿¥Ö¤ò»²¾È¤¹¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤¹¡£¥¿¥¤¡¦¥¯¥é¥¹¤Ï¡¢¥µ¡¼¥Ð¡¼Â¦¤ÇÃå¸Æ¤ò½èÍý¤·¡¢¤½¤Î¸Æ½Ð¤·¤òŬÀڤʼÂÁõ¥¯¥é¥¹¤Ë¥Ç¥£¥¹¥Ñ¥Ã¥Á¤¹¤ë¤È¤­¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£³Æ¼ÂÁõ¥¯¥é¥¹¤Ë¤Ï¡¢¥¿¥¤¡¦¥¯¥é¥¹¤¬É¬ÍפǤ¹¡£
++.br
++.br
++\f2\-iiop\fP¤ò»ÈÍѤ·¤Æ\f2rmic\fP¤ò¸Æ¤Ó½Ð¤¹¤È¡¢¼¡¤Î̿̾µ¬Ìó¤Ë½àµò¤·¤¿¥¹¥¿¥Ö¤ÈTie¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++_<implementationName>_stub.class
++.fl
++_<interfaceName>_tie.class
++.fl
++\fP
++.fi
++\f2\-iiop\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¤­¤Ë¤Ï¡¢Â¾¤Î¥ª¥×¥·¥ç¥ó¤â»ØÄê¤Ç¤­¤Þ¤¹¡£
++.RS 3
++.TP 3
++\-always¤Þ¤¿¤Ï\-alwaysgenerate
++´û¸¤Î¥¹¥¿¥Ö¡¢Tie¡¢¤ª¤è¤ÓIDL¤¬ÆþÎÏ¥¯¥é¥¹¤è¤ê¿·¤·¤¤¤È¤­¤Ç¤â¡¢¶¯À©Åª¤ËÀ¸À®¤·Ä¾¤·¤Þ¤¹¡£
++.TP 3
++\-nolocalstubs
++Ʊ¤¸¥×¥í¥»¥¹¤Î¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤ËÂФ·¤ÆºÇŬ²½¤µ¤ì¤¿¥¹¥¿¥Ö¤òºîÀ®¤·¤Þ¤»¤ó¡£
++.TP 3
++\-noValueMethods
++¤³¤ì¤Ï\f2\-idl\fP¥ª¥×¥·¥ç¥ó¤È¤È¤â¤Ë»ÈÍѤ¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£È¯¹Ô¤µ¤ì¤¿IDL¤Ë¡¢\f2valuetype\fP¥á¥½¥Ã¥É¤ª¤è¤Ó½é´ü²½»Ò¤òÄɲä·¤Þ¤»¤ó¡£¤³¤Î¥á¥½¥Ã¥É¤ª¤è¤Ó½é´ü²½»Ò¤Ï¡¢\f2valuetype\fP¤Î¾ì¹ç¤Ï¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£\f2\-idl\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¤­¤Ë¡¢\f2\-noValueMethods\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¸Â¤êÀ¸À®¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-poa
++·Ñ¾µ¤¬\f2org.omg.CORBA_2_3.portable.ObjectImpl\fP¤«¤é\f2org.omg.PortableServer.Servant\fP¤ËÊѤï¤ê¤Þ¤¹¡£
++.na
++\f2Portable Object Adapter\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/POA.html(POA)¤Î\f2PortableServer\fP¥â¥¸¥å¡¼¥ë¤Ï¡¢¥Í¥¤¥Æ¥£¥Ö¤Î\f2Servant\fP·¿¤òÄêµÁ¤·¤Þ¤¹¡£Java¥×¥í¥°¥é¥ß¥ó¥°¸À¸ì¤Ç¤Ï¡¢\f2Servant\fP·¿¤ÏJava¤Î\f2org.omg.PortableServer.Servant\fP¥¯¥é¥¹¤Ë¥Þ¥Ã¥×¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¯¥é¥¹¤Ï¡¢¤¹¤Ù¤Æ¤ÎPOA¥µ¡¼¥Ð¥ó¥È¼ÂÁõ¤Î¥Ù¡¼¥¹¡¦¥¯¥é¥¹¤È¤·¤Æµ¡Ç½¤·¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¸Æ¤Ó½Ð¤¹¤³¤È¤Î¤Ç¤­¤ë¤¤¤¯¤Ä¤«¤Î¥á¥½¥Ã¥É¤Î¾¤Ë¡¢POA¤½¤Î¤â¤Î¤Ë¤è¤Ã¤Æ¸Æ¤Ó½Ð¤µ¤ì¡¢¥µ¡¼¥Ð¥ó¥È¤ÎÆ°ºî¤òÀ©¸æ¤¹¤ë¤¿¤á¤Ë¥æ¡¼¥¶¡¼¤¬¥ª¡¼¥Ð¡¼¥é¥¤¥É¤Ç¤­¤ë¥á¥½¥Ã¥É¤âÄ󶡤·¤Þ¤¹¡£OMG IDL to Java Language Mapping Specification¡¢CORBA V 2.3.1 ptc/00\-01\-08.pdf¤Ë½àµò¤·¤Æ¤¤¤Þ¤¹¡£
++.RE
++.TP 3
++\-J
++\f2\-J\fP¤Î¸å¤í¤Ë³¤¯¥ª¥×¥·¥ç¥ó¤ò\f2java\fP¥¤¥ó¥¿¥×¥ê¥¿¤Ë°ú¤­ÅϤ·¤Þ¤¹¡£\f2java\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹(\-J¤Èjava¥ª¥×¥·¥ç¥ó¤Î´Ö¤Ë¥¹¥Ú¡¼¥¹¤ÏÆþ¤ì¤Ê¤¤)¡£
++.TP 3
++\-keep¤Þ¤¿¤Ï\-keepgenerated
++¥¹¥¿¥Ö¡¢¥¹¥±¥ë¥È¥ó¡¢¤Þ¤¿¤ÏTie¥¯¥é¥¹¤Î¤¿¤á¤Î\f2.java\fP¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò\f2.class\fP¥Õ¥¡¥¤¥ë¤ÈƱ¤¸¥Ç¥£¥ì¥¯¥È¥ê¤Ë»Ä¤·¤Þ¤¹¡£
++.TP 3
++\-nowarn
++·Ù¹ð¤ò¥ª¥Õ¤Ë¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢¥³¥ó¥Ñ¥¤¥é¤Ï·Ù¹ð¤òɽ¼¨¤·¤Þ¤»¤ó¡£
++.TP 3
++\-nowrite
++¥³¥ó¥Ñ¥¤¥ë¤·¤¿¥¯¥é¥¹¤ò¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤Ë½ñ¤­¹þ¤ß¤Þ¤»¤ó¡£
++.TP 3
++\-vcompat
++1.1¤È1.2¤ÎξÊý¤ÎJRMP¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤È¸ß´¹À­¤Î¤¢¤ë¥¹¥¿¥Ö¤ª¤è¤Ó¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤òºîÀ®¤·¤Þ¤¹¡£(5.0°ÊÁ°¤Î¥ê¥ê¡¼¥¹¤Ç¤Ï¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¥Ç¥Õ¥©¥ë¥È¡£)À¸À®¤µ¤ì¤¿¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤Ï¡¢JDK 1.1²¾ÁÛ¥Þ¥·¥ó¤Ë¥í¡¼¥É¤µ¤ì¤ë¤È1.1¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤ò»ÈÍѤ·¡¢JDK 1.2°Ê¹ß¤Î²¾ÁÛ¥Þ¥·¥ó¤Ë¥í¡¼¥É¤µ¤ì¤ë¤È1.2¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤ò»ÈÍѤ·¤Þ¤¹¡£À¸À®¤µ¤ì¤¿¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤Ç¤Ï¡¢1.1¤È1.2¤ÎξÊý¤Î¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤ò¥µ¥Ý¡¼¥È¤·¤Þ¤¹¡£À¸À®¤µ¤ì¤¿¥¯¥é¥¹¤ÏξÊý¤ÎÁàºî¥â¡¼¥É¤ò¥µ¥Ý¡¼¥È¤¹¤ë¤¿¤á¤Ë¡¢¥µ¥¤¥º¤¬Â礭¤¯¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-verbose
++¥³¥ó¥Ñ¥¤¥é¤ä¥ê¥ó¥«¡¼¤¬¡¢¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¤ä¥í¡¼¥É¤µ¤ì¤Æ¤¤¤ë¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤Æ¤Î¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤¹¤ë¤è¤¦¤Ë¤·¤Þ¤¹¡£
++.TP 3
++\-v1.1
++1.1 JRMP¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤Î¤ß¤Î¥¹¥¿¥Ö¤ª¤è¤Ó¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤¬»ÈÍѤǤ­¤ë¤Î¤Ï¡¢JDK 1.1¤«¤é\f3rmic\fP¥Ä¡¼¥ë¤ÇÀ¸À®¤µ¤ì¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¤Ç¤­¤Ê¤¤(¤µ¤é¤Ë¥À¥¤¥Ê¥ß¥Ã¥¯¡¦¥¯¥é¥¹¡¦¥í¡¼¥Ç¥£¥ó¥°¤ò»ÈÍѤ·¤Æ¤¤¤Ê¤¤)¡¢´û¸¤ÎÀÅŪ¥Ç¥×¥í¥¤¤µ¤ì¤¿¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤ËÂФ·¡¢Ä¾Î󲽸ߴ¹À­¤Î¤¢¤ë¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤òÀ¸À®¤¹¤ë¾ì¹ç¤Î¤ß¤Ç¤¹¡£
++.TP 3
++\-v1.2
++(¥Ç¥Õ¥©¥ë¥È)1.2 JRMP¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤Î¤ß¤Î¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤òÀ¸À®¤·¤Þ¤¹¡£¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤Ï1.2¥¹¥¿¥Ö¡¦¥×¥í¥È¥³¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¤Ç»ÈÍѤǤ­¤Ê¤¤¤¿¤á¡¢¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç¤Ï¥¹¥±¥ë¥È¥ó¡¦¥¯¥é¥¹¤ÏÀ¸À®¤µ¤ì¤Þ¤»¤ó¡£À¸À®¤µ¤ì¤¿¥¹¥¿¥Ö¡¦¥¯¥é¥¹¤Ï¡¢JDK 1.1²¾ÁÛ¥Þ¥·¥ó¤Ë¥í¡¼¥É¤µ¤ì¤Æ¤âÆ°ºî¤·¤Þ¤»¤ó¡£
++.RE
++
++.LP
++.SH "´Ä¶­ÊÑ¿ô"
++.LP
++.RS 3
++.TP 3
++CLASSPATH
++¥æ¡¼¥¶¡¼ÄêµÁ¥¯¥é¥¹¤Ø¤Î¥Ñ¥¹¤ò¥·¥¹¥Æ¥à¤Ë»ØÄꤷ¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥³¥í¥ó¤Çʬ³ä¤·¤Þ¤¹¡£¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++.:/usr/local/java/classes
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++java(1)¡¢javac(1)¡¢
++.na
++\f2CLASSPATH\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath
++.LP
++
+--- jdk/src/bsd/doc/man/ja/rmid.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/rmid.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,310 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmid 1 "07 May 2011"
++.TH rmid 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++rmid \- Java RMIµ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó
++.LP
++.LP
++\f3rmid\fP¤Ç¥¢¥¯¥Æ¥£¥Ö²½¤¹¤ë¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤ò³«»Ï¤¹¤ë¤È¡¢¥ª¥Ö¥¸¥§¥¯¥È¤ò²¾ÁÛ¥Þ¥·¥ó(VM)¤ËÅÐÏ¿¤·¤Æ¥¢¥¯¥Æ¥£¥Ö²½¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++rmid [options]
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3rmid\fP¥Ä¡¼¥ë¤Ï¡¢µ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤ò³«»Ï¤·¤Þ¤¹¡£¥¢¥¯¥Æ¥£¥Ö²½¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤ò³«»Ï¤·¤Æ¤«¤é¤Ç¤Ê¤¤¤È¡¢¥¢¥¯¥Æ¥£¥Ö²½²Äǽ¥ª¥Ö¥¸¥§¥¯¥È¤ò¥¢¥¯¥Æ¥£¥Ö²½¥·¥¹¥Æ¥à¤ËÅÐÏ¿¤·¤¿¤ê¡¢VMÆâ¤Ç¥¢¥¯¥Æ¥£¥Ö²½¤·¤¿¤ê¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤»¤ó¡£µ¯Æ°²Äǽ¤Ê¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ò»ÈÍѤ·¤¿¥×¥í¥°¥é¥à¤ÎºîÀ®ÊýË¡¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2Java RMI»ÅÍÍ\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/platform/rmi/spec/rmiTOC.html¤ª¤è¤Ó
++.na
++\f2µ¯Æ°¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/rmi/activation/overview.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¥Ç¡¼¥â¥ó¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢¼¡¤Î¤è¤¦¤Ë¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ\f2rmid\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ rmid \-J\-Djava.security.policy=rmid.policy
++.fl
++\fP
++.fi
++
++.LP
++.LP
++\f3Ãí°Õ:\fP \f2rmid\fP¤ÎSun¤Î¼ÂÁõ¤ò¼Â¹Ô¤¹¤ë¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤ì¤Ï¡¢\f2rmid\fP¤¬µ¯Æ°¥°¥ë¡¼¥×ÍѤËVM¤òµ¯Æ°¤¹¤ë¤¿¤á¤Ë³Æ\f2ActivationGroupDesc\fPÆâ¤Î¾ðÊó¤ò»ÈÍѤǤ­¤ë¤«¤É¤¦¤«¤ò¸¡¾Ú¤Ç¤­¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ç¤¹¡£Æäˡ¢\f2ActivationGroupDesc\fP¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¤ËÅϤµ¤ì¤ë\f2CommandEnvironment\fP¤äǤ°Õ¤Î\f2Properties\fP¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤ë¥³¥Þ¥ó¥É¤ª¤è¤Ó¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2rmid\fP¤Î¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ÎÃæ¤ÇÌÀ¼¨Åª¤Ëµö²Ä¤¹¤ë¤³¤È¤¬É¬Íפˤʤê¤Þ¤·¤¿¡£\f2sun.rmi.activation.execPolicy\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤϡ¢µ¯Æ°¥°¥ë¡¼¥×ÍѤËVM¤òµ¯Æ°¤¹¤ë¤¿¤á¤Ë\f2ActivationGroupDesc\fPÆâ¤Î¾ðÊó¤ò»ÈÍѤǤ­¤ë¤«¤É¤¦¤«¤òȽÃǤ¹¤ë¤È¤­¤Ë\f2rmid\fP¤¬»ÈÍѤ¹¤ë¥Ý¥ê¥·¡¼¤ò·èÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f2rmid\fP¤ò¥Ç¥Õ¥©¥ë¥ÈÀßÄê¤Ç¼Â¹Ô¤¹¤ë¤È¡¢¼¡¤Î¤è¤¦¤Ê½èÍý¤¬¹Ô¤ï¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¥¢¥¯¥Æ¥£¥Ù¡¼¥¿¤òµ¯Æ°¤·¡¢¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È1098¤ÇÆâÉô¥ì¥¸¥¹¥È¥ê¤òµ¯Æ°¤¹¤ë
++.TP 2
++o
++¤³¤ÎÆâÉô¥ì¥¸¥¹¥È¥ê¤ÎÃæ¤Ç¡¢\f2ActivationSystem\fP¤ò\f2java.rmi.activation.ActivationSystem¤È¤¤¤¦Ì¾Á°¤Ë\fP¥Ð¥¤¥ó¥É¤¹¤ë
++.RE
++
++.LP
++.LP
++¥ì¥¸¥¹¥È¥ê¤Ë¾¤Î¥Ý¡¼¥È¤ò»ØÄꤹ¤ë¤Ë¤Ï¡¢\f2rmid\fP¤Îµ¯Æ°»þ¤Ë\f2\-port\fP¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ rmid \-J\-Djava.security.policy=rmid.policy \-port 1099
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ï¡¢µ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤ò³«»Ï¤·¡¢¥ì¥¸¥¹¥È¥ê¤Î¥Ç¥Õ¥©¥ë¥È¡¦¥Ý¡¼¥È1099¤Ç¥ì¥¸¥¹¥È¥ê¤ò³«»Ï¤·¤Þ¤¹¡£
++.LP
++.SS
++rmid¤òinetd/xinetd¤«¤é³«»Ï¤¹¤ë
++.LP
++.LP
++\f2rmid\fP¤ò¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤é³«»Ï¤¹¤ë¤Ë¤Ï¡¢\f2inetd\fP(Solaris¤Î¾ì¹ç)¡¢¤Þ¤¿¤Ï\f2xinetd\fP(Linux¤Î¾ì¹ç)¤ò¹½À®¤·¤Æ\f2rmid\fP¤òɬÍפ˱þ¤¸¤Æ³«»Ï¤¹¤ëÊýË¡¤â¤¢¤ê¤Þ¤¹¡£
++.LP
++.LP
++\f2rmid\fP¤ò³«»Ï¤¹¤ë¤È¡¢\f2System.inheritedChannel\fP¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤·¤Æ¡¢·Ñ¾µ¤µ¤ì¤¿¥Á¥ã¥ó¥Í¥ë(\f2inetd\fP/\f2xinetd\fP¤«¤é·Ñ¾µ)¤ò¼èÆÀ¤·¤è¤¦¤È¤·¤Þ¤¹¡£·Ñ¾µ¤µ¤ì¤¿¥Á¥ã¥ó¥Í¥ë¤¬\f2null\fP¤Ç¤¢¤ë¤«¡¢\f2java.nio.channels.ServerSocketChannel\fP¤Î¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤Ê¤«¤Ã¤¿¾ì¹ç¡¢\f2rmid\fP¤Ï¤½¤Î¥Á¥ã¥ó¥Í¥ë¤Ï\f2inetd\fP/\f2xinetd\fP¤Ë¤è¤Ã¤Æµ¯Æ°¤µ¤ì¤¿¤â¤Î¤Ç¤Ï¤Ê¤¤¤ÈȽÃǤ·¡¢Á°½Ò¤Î¤è¤¦¤Ëµ¯Æ°¤·¤Þ¤¹¡£
++.LP
++.LP
++·Ñ¾µ¤µ¤ì¤¿¥Á¥ã¥ó¥Í¥ë¤¬\f2ServerSocketChannel\fP¥¤¥ó¥¹¥¿¥ó¥¹¤Ç¤¢¤ë¾ì¹ç¤Ï¡¢\f2rmid\fP¤Ï¥¨¥¯¥¹¥Ý¡¼¥È¤¹¤ë¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¢¤Ä¤Þ¤ê\f2java.rmi.activation.ActivationSystem\fP¤¬¥Ð¥¤¥ó¥É¤µ¤ì¤Æ¤¤¤ë¥ì¥¸¥¹¥È¥ê¤È\f2java.rmi.activation.Activator\fP¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ËÂФ¹¤ë¥ê¥¯¥¨¥¹¥È¤ò¼õ¿®¤¹¤ë¥µ¡¼¥Ð¡¼¡¦¥½¥±¥Ã¥È¤È¤·¤Æ¡¢\f2ServerSocketChannel\fP¤«¤é¼èÆÀ¤·¤¿\f2java.net.ServerSocket\fP¤ò»ÈÍѤ·¤Þ¤¹¡£¤³¤Î¥â¡¼¥É¤Ç¤Ï¡¢\f2rmid\fP¤ÎÆ°ºî¤Ï¡¢\f2¼¡¤Î¤³¤È¤ò½ü¤¤¤Æ\fP¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤«¤éµ¯Æ°¤·¤¿¾ì¹ç¤ÈƱ¤¸¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f2System.err\fP¤ËÂФ¹¤ë½ÐÎϤϡ¢¥Õ¥¡¥¤¥ë¤Ë¥ê¥À¥¤¥ì¥¯¥È¤µ¤ì¤ë¡£¤³¤Î¥Õ¥¡¥¤¥ë¤Ï\f2java.io.tmpdir\fP¥·¥¹¥Æ¥à¡¦¥×¥í¥Ñ¥Æ¥£¤Ç»ØÄꤵ¤ì¤ë¥Ç¥£¥ì¥¯¥È¥ê(Ä̾ï¤Ï\f2/var/tmp\fP¤Þ¤¿¤Ï\f2/tmp\fP)¤Ë¤¢¤ë¡£¥Õ¥¡¥¤¥ë̾¤ÎÀÜƬ¼­¤Ï\f2"rmid\-err"\fP¤Ç¡¢ÀÜÈø¼­¤Ï\f2"tmp"\fP¤Ç¤¢¤ë¡£
++.TP 2
++o
++\f2\-port\fP¥ª¥×¥·¥ç¥ó¤ÏµñÈݤµ¤ì¤ë¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤹ¤ë¤È¡¢\f2rmid\fP¤Ï¥¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤ò½Ð¤·¤Æ½ªÎ»¤¹¤ë¡£
++.TP 2
++o
++\f2\-log\fP¥ª¥×¥·¥ç¥ó¤Ïɬ¿Ü¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¤È¡¢\f2rmid\fP¤Ï¥¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤ò½Ð¤·¤Æ½ªÎ»¤¹¤ë¡£
++.RE
++
++.LP
++.LP
++ɬÍפ˱þ¤¸¤Æ¥µ¡¼¥Ó¥¹¤ò³«»Ï¤¹¤ë¤è¤¦¤Ë¹½À®¤¹¤ëÊýË¡¤Î¾ÜºÙ¤Ï¡¢\f2inetd\fP(Solaris¤Î¾ì¹ç)¡¢¤Þ¤¿¤Ï\f2xinetd\fP(Linux)¤Î¥Þ¥Ë¥å¥¢¥ë¡¦¥Ú¡¼¥¸¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-C<someCommandLineOption>
++\f2rmid\fP¤Î»Ò¥×¥í¥»¥¹(µ¯Æ°¥°¥ë¡¼¥×)¤¬ºîÀ®¤µ¤ì¤¿¤È¤­¤Ë¡¢¤½¤ì¤¾¤ì¤Î»Ò¥×¥í¥»¥¹¤Ë¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤È¤·¤ÆÅϤµ¤ì¤ë¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ë»ØÄꤹ¤ë¤È¡¢µ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤Ë¤è¤Ã¤ÆÀ¸À®¤µ¤ì¤ë³Æ²¾ÁÛ¥Þ¥·¥ó¤Ë¥×¥í¥Ñ¥Æ¥£¤òÅϤ¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ rmid \-C\-Dsome.property=value
++.fl
++\fP
++.fi
++¥³¥Þ¥ó¥É¥é¥¤¥ó°ú¿ô¤ò»Ò¥×¥í¥»¥¹¤ËÅϤ¹µ¡Ç½¤Ï¡¢¥Ç¥Ð¥Ã¥°¤ò¹Ô¤¦¾ì¹ç¤ËÊØÍø¤Ç¤¹¡£¤¿¤È¤¨¤Ð¡¢¼¡¤Î¤è¤¦¤Ê¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ rmid \-C\-Djava.rmi.server.logCalls=true
++.fl
++\fP
++.fi
++¤³¤Î¥³¥Þ¥ó¥É¤Ë¤è¤ê¡¢¤¹¤Ù¤Æ¤Î»ÒVM¤Ç¥µ¡¼¥Ð¡¼¸Æ½Ð¤·¤Î¥í¥°¤¬ºîÀ®¤µ¤ì¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++.TP 3
++\-J<someCommandLineOption>
++\f2rmid\fP¤ò¼Â¹Ô¤·¤Æ¤¤¤ë\f2java\fP¥¤¥ó¥¿¥×¥ê¥¿¤ËÅϤ¹¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f2rmid\fP¤¬\f2rmid.policy\fP¤È¤¤¤¦Ì¾Á°¤Î¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ¹¤ë¤è¤¦¤Ë»ØÄꤹ¤ë¤Ë¤Ï¡¢\f2rmid\fP¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2\-J\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢\f2java.security.policy\fP¥×¥í¥Ñ¥Æ¥£¤òÄêµÁ¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ rmid \-J\-Djava.security.policy=rmid.policy
++.fl
++\fP
++.fi
++.TP 3
++\-J\-Dsun.rmi.activation.execPolicy=<policy>
++µ¯Æ°¥°¥ë¡¼¥×¤¬¼Â¹Ô¤µ¤ì¤ë¤³¤È¤Ë¤Ê¤ëVM¤Îµ¯Æ°¤Ë»ÈÍѤ¹¤ë¥³¥Þ¥ó¥É¤ª¤è¤Ó¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò¥Á¥§¥Ã¥¯¤¹¤ë¤¿¤á¤Ë¡¢\f2rmid\fP¤¬ºÎÍѤ¹¤ë¥Ý¥ê¥·¡¼¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢Java RMIµ¯Æ°¥Ç¡¼¥â¥ó¤ÎSun¤Î¼ÂÁõ¤Î¤ß¤Ë¸ºß¤¹¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¤³¤Î¥×¥í¥Ñ¥Æ¥£¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢·ë²Ì¤Ï\f2\-J\-Dsun.rmi.activation.execPolicy=default\fP¤ò»ØÄꤷ¤¿¾ì¹ç¤ÈƱ¤¸¤Ë¤Ê¤ê¤Þ¤¹¡£\f2<policy>\fP¤Ë»ØÄê²Äǽ¤ÊÃͤϡ¢\f2default\fP¡¢\f2<policyClassName>\fP¡¢¤Þ¤¿¤Ï\f2none\fP¤Ç¤¹¡£
++.RS 3
++.TP 2
++o
++\f3default(¤Þ¤¿¤Ï¡¢¤³¤Î¥×¥í¥Ñ¥Æ¥£¤¬\fP\f4»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤\fP\f3¾ì¹ç)\fP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤Î\f2execPolicy\fP¤Î¾ì¹ç¡¢\f2rmid\fP¤¬¼Â¹Ô¤Ç¤­¤ë¤Î¤Ï¡¢\f2rmid\fP¤¬»ÈÍѤ¹¤ë¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ÎÃæ¤Ç¡¢¼Â¹Ô¤¹¤ë¸¢¸Â¤¬\f2rmid\fP¤ËÍ¿¤¨¤é¤ì¤Æ¤¤¤ë¥³¥Þ¥ó¥É¤ª¤è¤Ó¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Î¤ß¤Ç¤¹¡£\f2¥Ç¥Õ¥©¥ë¥È\fP¤Î¼Â¹Ô¥Ý¥ê¥·¡¼¤Ç»ÈÍѤǤ­¤ë¤Î¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Îµ¯Æ°¥°¥ë¡¼¥×¼ÂÁõ¤Î¤ß¤Ç¤¹¡£
++.LP
++\f2rmid\fP¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×ÍѤÎVM¤òµ¯Æ°¤¹¤ë¤È¤­¤Ë¡¢¤½¤Î¥°¥ë¡¼¥×¤Ë¤Ä¤¤¤ÆÅÐÏ¿¤µ¤ì¤¿µ¯Æ°¥°¥ë¡¼¥×µ­½Ò»Ò¤Ç¤¢¤ë\f2ActivationGroupDesc\fPÆâ¤Î¾ðÊó¤ò»ÈÍѤ·¤Þ¤¹¡£¥°¥ë¡¼¥×µ­½Ò»Ò¤Ï¡¢\f2ActivationGroupDesc.CommandEnvironment\fP¤ò»ØÄꤷ¤Þ¤¹(¾Êά²Äǽ)¡£¤³¤ì¤Ë¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë\f2¥³¥Þ¥ó¥É\fP¤È¡¢¤½¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤ËÄɲäǤ­¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦\f2¥ª¥×¥·¥ç¥ó\fP¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢\f2rmid\fP¤Ï\f2java.home\fP¤Ë¤¢¤ë\f2java\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£¥°¥ë¡¼¥×µ­½Ò»Ò¤Ë¤Ï¡¢¥ª¥×¥·¥ç¥ó¤È¤·¤Æ¥³¥Þ¥ó¥É¥é¥¤¥ó¤ËÄɲ䵤ì¤ë\f2¥×¥í¥Ñ¥Æ¥£\fP¡¦¥ª¡¼¥Ð¡¼¥é¥¤¥É¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£¤³¤Î¥×¥í¥Ñ¥Æ¥£¤Ï¡¢¼¡¤Î¤è¤¦¤ËÄêµÁ¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ \-D\fP\f4<property>\fP\f3=\fP\f4<value>\fP\f3
++.fl
++\fP
++.fi
++.LP
++¥¢¥¯¥»¥¹¸¢\f2com.sun.rmi.rmid.ExecPermission\fP¤ò»ÈÍѤ¹¤ë¤È¡¢\f2rmid\fP¤ËÂФ·¤Æ¡¢¥°¥ë¡¼¥×µ­½Ò»Ò¤Î\f2CommandEnvironment\fP¤Ç»ØÄꤵ¤ì¤¿¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Æµ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¸¢¸Â¤òµö²Ä¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥¢¥¯¥»¥¹¸¢\f2com.sun.rmi.rmid.ExecOptionPermission\fP¤ò»ÈÍѤ¹¤ë¤È¡¢¥°¥ë¡¼¥×µ­½Ò»Ò¤Ç¥×¥í¥Ñ¥Æ¥£¡¦¥ª¡¼¥Ð¡¼¥é¥¤¥É¤È¤·¤Æ»ØÄꤵ¤ì¤¿¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¡¢¤Þ¤¿¤Ï\f2CommandEnvironment\fP¤Ç¥ª¥×¥·¥ç¥ó¤È¤·¤Æ»ØÄꤵ¤ì¤¿¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò¡¢µ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¤È¤­¤Ë\f2rmid\fP¤¬»ÈÍѤǤ­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.LP
++\f2rmid¤Ë\fPÍÍ¡¹¤Ê¥³¥Þ¥ó¥É¤ª¤è¤Ó¥ª¥×¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ë¸¢¸Â¤òµö²Ä¤¹¤ë¾ì¹ç¤Ï¡¢¥¢¥¯¥»¥¹¸¢\f2ExecPermission\fP¤ª¤è¤Ó\f2ExecOptionPermission\fP¤òÈÆÍÑŪ¤Ëµö²Ä¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤¹¤Ù¤Æ¤Î¥³¡¼¥É¡¦¥½¡¼¥¹¤ËÂФ·¤Æµö²Ä¤·¤Þ¤¹¡£
++.RS 3
++.TP 3
++ExecPermission
++\f2ExecPermission\fP¥¯¥é¥¹¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¤¿¤á¤Ë\f2rmid¤¬\fPÆÃÄê¤Î\f2¥³¥Þ¥ó¥É\fP¤ò¼Â¹Ô¤¹¤ë¸¢¸Â¤òɽ¤·¤Þ¤¹¡£
++.LP
++\f3¹½Ê¸\fP
++.br
++\f2ExecPermission\fP¤Î\f2̾Á°\fP¤Ï¡¢\f2rmid\fP¤Ë¼Â¹Ô¤òµö²Ä¤¹¤ë¥³¥Þ¥ó¥É¤Î¥Ñ¥¹Ì¾¤Ç¤¹¡£¡Ö/*¡×(¡Ö/¡×¤Ï¥Õ¥¡¥¤¥ë¶èÀÚ¤êʸ»ú\f2File.separatorChar\fP)¤Ç½ª¤ï¤ë¥Ñ¥¹Ì¾¤Ï¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë´Þ¤Þ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤ò¼¨¤·¤Þ¤¹¡£¡Ö/\-¡×¤Ç½ª¤ï¤ë¥Ñ¥¹Ì¾¤Ï¡¢¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë´Þ¤Þ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê(ºÆµ¢Åª¤Ë)¤ò¼¨¤·¤Þ¤¹¡£¥Ñ¥¹Ì¾¤ËÆÃÊ̤ʥȡ¼¥¯¥ó¡Ö<<ALL FILES>>¡×¤ò»ØÄꤷ¤¿¾ì¹ç¤Ï¡¢\f3Ǥ°Õ¤Î\fP¥Õ¥¡¥¤¥ë¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++\f3Ãí°Õ:\fP ¡Ö*¡×¤ò1¤Ä¤Î¤ß»ØÄꤷ¤¿¥Ñ¥¹Ì¾¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤òɽ¤·¤Þ¤¹¡£¤Þ¤¿¡¢¡Ö\-¡×¤ò1¤Ä¤Î¤ß»ØÄꤷ¤¿¥Ñ¥¹Ì¾¤Ï¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¡¢¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ë´Þ¤Þ¤ì¤ë¤¹¤Ù¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê(ºÆµ¢Åª¤Ë)¤òɽ¤·¤Þ¤¹¡£
++.TP 3
++ExecOptionPermission
++\f2ExecOptionPermission\fP¥¯¥é¥¹¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¤È¤­¤Ë\f2rmid\fP¤ÇÆÃÄê¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦\f2¥ª¥×¥·¥ç¥ó\fP¤ò»ÈÍѤǤ­¤ë¸¢¸Â¤òɽ¤·¤Þ¤¹¡£\f2ExecOptionPermission\fP¤Î\f2̾Á°\fP¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ÎÃͤǤ¹¡£
++.LP
++\f3¹½Ê¸\fP
++.br
++¥ª¥×¥·¥ç¥ó¤Ç¤Ï¡¢¥ï¥¤¥ë¥É¥«¡¼¥É¤¬¸ÂÄêŪ¤Ë¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¡¢¥ï¥¤¥ë¥É¥«¡¼¥É¡¦¥Þ¥Ã¥Á¤òɽ¤·¤Þ¤¹¡£¥¢¥¹¥¿¥ê¥¹¥¯¤Ï¡¢¥ª¥×¥·¥ç¥ó̾¤½¤Î¤â¤Î¤È¤·¤Æ»ÈÍѤǤ­¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢Ç¤°Õ¤Î¥ª¥×¥·¥ç¥ó¤òɽ¤¹¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢¥ª¥×¥·¥ç¥ó̾¤ÎËöÈø¤Ë»ÈÍѤ¹¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£¤¿¤À¤·¡¢¡Ö.¡×¤«¡Ö=¡×¤Îľ¸å¤Ë¥¢¥¹¥¿¥ê¥¹¥¯¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.LP
++Îã¤ò¼¨¤·¤Þ¤¹¡£¡Ö*¡×¡¢¡Ö\-Dfoo.*¡×¡¢¡Ö\-Da.b.c=*¡×¤ÏÍ­¸ú¤Ç¤¹¤¬¡¢¡Ö*foo¡×¡¢¡Ö\-Da*b¡×¡¢¡Öab*¡×¤Ï̵¸ú¤Ç¤¹¡£
++.TP 3
++rmid¤Î¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë
++\f2rmid¤Ë\fPÍÍ¡¹¤Ê¥³¥Þ¥ó¥É¤ª¤è¤Ó¥ª¥×¥·¥ç¥ó¤ò¼Â¹Ô¤¹¤ë¸¢¸Â¤òµö²Ä¤¹¤ë¾ì¹ç¤Ï¡¢¥¢¥¯¥»¥¹¸¢\f2ExecPermission\fP¤ª¤è¤Ó\f2ExecOptionPermission\fP¤òÈÆÍÑŪ¤Ëµö²Ä¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤Ä¤Þ¤ê¡¢¤¹¤Ù¤Æ¤Î¥³¡¼¥É¡¦¥½¡¼¥¹¤ËÂФ·¤Æµö²Ä¤·¤Þ¤¹¡£¤³¤ì¤é¤Î¥¢¥¯¥»¥¹¸¢¤ò¥Á¥§¥Ã¥¯¤¹¤ë¤Î¤Ï\f2rmid\fP¤Î¤ß¤Ê¤Î¤Ç¡¢¤³¤ì¤é¤Î¥¢¥¯¥»¥¹¸¢¤òÈÆÍÑŪ¤Ëµö²Ä¤·¤Æ¤â°ÂÁ´¤Ç¤¹¡£
++.LP
++\f2rmid\fP¤Ë³Æ¼ï¤Î¼Â¹Ô¸¢¸Â¤òµö²Ä¤¹¤ë¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ÎÎã¤ò¡¢¼¡¤Ë¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++grant {
++.fl
++ permission com.sun.rmi.rmid.ExecPermission
++.fl
++ "/files/apps/java/jdk1.7.0/solaris/bin/java";
++.fl
++
++.fl
++ permission com.sun.rmi.rmid.ExecPermission
++.fl
++ "/files/apps/rmidcmds/*";
++.fl
++
++.fl
++ permission com.sun.rmi.rmid.ExecOptionPermission
++.fl
++ "\-Djava.security.policy=/files/policies/group.policy";
++.fl
++
++.fl
++ permission com.sun.rmi.rmid.ExecOptionPermission
++.fl
++ "\-Djava.security.debug=*";
++.fl
++
++.fl
++ permission com.sun.rmi.rmid.ExecOptionPermission
++.fl
++ "\-Dsun.rmi.*";
++.fl
++};
++.fl
++\fP
++.fi
++ºÇ½é¤ËÉÕÍ¿¤µ¤ì¤Æ¤¤¤ë¥¢¥¯¥»¥¹¸¢¤Ï¡¢\f2rmid\fP¤ËÂФ·¡¢¥Ñ¥¹Ì¾¤Ë¤è¤êÌÀ¼¨Åª¤Ë»ØÄꤵ¤ì¤ë\f2java\fP¥³¥Þ¥ó¥É¤Î1.7.0¥Ð¡¼¥¸¥ç¥ó¤Î¼Â¹Ô¤òµö²Ä¤·¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢\f2java.home\fP¤Ë¤¢¤ë¥Ð¡¼¥¸¥ç¥ó¤Î\f2java\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¤Þ¤¹¡£\f2rmid\fP¤¬»ÈÍѤ¹¤ë¤Î¤ÈƱ¤¸¥Ð¡¼¥¸¥ç¥ó¤¬»ÈÍѤµ¤ì¤ë¤¿¤á¡¢¤½¤Î¥³¥Þ¥ó¥É¤Ï¡¢¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤Ç»ØÄꤹ¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£2ÈÖÌܤΥ¢¥¯¥»¥¹¸¢¤Ï¡¢\f2rmid\fP¤ËÂФ·¤Æ¡¢¥Ç¥£¥ì¥¯¥È¥ê\f2/files/apps/rmidcmds\fPÆâ¤ÎǤ°Õ¤Î¥³¥Þ¥ó¥É¤Î¼Â¹Ô¸¢¸Â¤òµö²Ä¤·¤Þ¤¹¡£
++.LP
++3ÈÖÌܤËÉÕÍ¿¤µ¤ì¤Æ¤¤¤ë¥¢¥¯¥»¥¹¸¢\f2ExecOptionPermission\fP¤Ï¡¢\f2rmid\fP¤ËÂФ·¤Æ¡¢¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò\f2/files/policies/group.policy\fP¤È¤·¤ÆÄêµÁ¤·¤Æ¤¤¤ëµ¯Æ°¥°¥ë¡¼¥×¤Î³«»Ï¤òµö²Ä¤·¤Þ¤¹¡£¼¡¤Î¥¢¥¯¥»¥¹¸¢¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤¬\f2java.security.debug\fP¥×¥í¥Ñ¥Æ¥£¤ò»ÈÍѤ¹¤ë¤³¤È¤òµö²Ä¤·¤Æ¤¤¤Þ¤¹¡£ºÇ¸å¤Î¥¢¥¯¥»¥¹¸¢¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤¬\f2sun.rmi\fP¤È¤¤¤¦¥×¥í¥Ñ¥Æ¥£Ì¾¤Î³¬ÁØÆâ¤ÎǤ°Õ¤Î¥×¥í¥Ñ¥Æ¥£¤ò»ÈÍѤ¹¤ë¤³¤È¤òµö²Ä¤·¤Æ¤¤¤Þ¤¹¡£
++.LP
++¥Ý¥ê¥·¡¼¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Æ\f2rmid\fP¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢\f2rmid\fP¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ç\f2java.security.policy\fP¥×¥í¥Ñ¥Æ¥£¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++\f2rmid \-J\-Djava.security.policy=rmid.policy\fP
++.RE
++.TP 2
++o
++\f4<policyClassName>\fP
++.LP
++¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤Ç¤Ï½½Ê¬¤Ê½ÀÆðÀ­¤¬ÆÀ¤é¤ì¤Ê¤¤¾ì¹ç¡¢´ÉÍý¼Ô¤Ï¡¢\f2rmid\fP¤Îµ¯Æ°»þ¤Ë¡¢\f2checkExecCommand\fP¥á¥½¥Ã¥É¤¬½ê°¤¹¤ë¥¯¥é¥¹¤Î̾Á°¤ò»ØÄꤷ¤Æ¡¢rmid¤¬¼Â¹Ô¤¹¤ë¥³¥Þ¥ó¥É¤ò¥Á¥§¥Ã¥¯¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£
++.LP
++\f2policyClassName\fP¤Ë¤Ï¡¢°ú¿ô¤Ê¤·¤Î¥³¥ó¥¹¥È¥é¥¯¥¿¤ò»ý¤Á¡¢¼¡¤Î¤è¤¦¤Ê\f2checkExecCommand\fP¥á¥½¥Ã¥É¤ò¼ÂÁõ¤·¤Æ¤¤¤ëpublic¥¯¥é¥¹¤ò»ØÄꤷ¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ public void checkExecCommand(ActivationGroupDesc desc,
++.fl
++ String[] command)
++.fl
++ throws SecurityException;
++.fl
++\fP
++.fi
++¥¢¥¯¥Æ¥£¥Ö²½¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ëÁ°¤Ë¡¢\f2rmid\fP¤Ï¡¢¥Ý¥ê¥·¡¼¤Î\f2checkExecCommand\fP¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤·¤Þ¤¹¡£¤³¤Î¤È¤­¡¢¥¢¥¯¥Æ¥£¥Ö²½¥°¥ë¡¼¥×¤Îµ­½Ò»Ò¤È¡¢¥¢¥¯¥Æ¥£¥Ö²½¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¤¿¤á¤Î´°Á´¤Ê¥³¥Þ¥ó¥É¤ò´Þ¤àÇÛÎó¤ò¤½¤Î¥á¥½¥Ã¥É¤ËÅϤ·¤Þ¤¹¡£\f2checkExecCommand\fP¤¬\f2SecurityException\fP¤ò¥¹¥í¡¼¤¹¤ë¤È¡¢\f2rmid\fP¤Ï¤½¤Î¥¢¥¯¥Æ¥£¥Ö²½¥°¥ë¡¼¥×¤ò³«»Ï¤»¤º¡¢¥ª¥Ö¥¸¥§¥¯¥È¤Î¥¢¥¯¥Æ¥£¥Ö²½¤ò»î¹Ô¤·¤Æ¤¤¤ë¸Æ½Ð¤·Â¦¤Ë¤Ï\f2ActivationException\fP¤¬¥¹¥í¡¼¤µ¤ì¤Þ¤¹¡£
++.TP 2
++o
++\f3none\fP
++.LP
++\f2sun.rmi.activation.execPolicy\fP¥×¥í¥Ñ¥Æ¥£¤ÎÃͤ¬¡Önone¡×¤Î¾ì¹ç¡¢\f2rmid\fP¤Ï¡¢µ¯Æ°¥°¥ë¡¼¥×¤ò³«»Ï¤¹¤ë¥³¥Þ¥ó¥É¤ò¤Þ¤Ã¤¿¤¯¸¡¾Ú¤·¤Þ¤»¤ó¡£
++.RE
++.LP
++.TP 3
++\-log dir
++µ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤¬¥Ç¡¼¥¿¥Ù¡¼¥¹¤ª¤è¤Ó´ØÏ¢¾ðÊó¤ò½ñ¤­¹þ¤à¤Î¤Ë»ÈÍѤ¹¤ë¥Ç¥£¥ì¥¯¥È¥ê¤Î̾Á°¤ò»ØÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢\f2rmid\fP¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Ë¡¢\f2log\fP¤È¤¤¤¦¥í¥°¡¦¥Ç¥£¥ì¥¯¥È¥ê¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++.TP 3
++\-port port
++\f2rmid\fP¤Î¥ì¥¸¥¹¥È¥ê¤¬»ÈÍѤ¹¤ë¥Ý¡¼¥È¤ò»ØÄꤷ¤Þ¤¹¡£µ¯Æ°¥·¥¹¥Æ¥à¡¦¥Ç¡¼¥â¥ó¤Ï¡¢¤³¤Î¥ì¥¸¥¹¥È¥ê¤ÎÃæ¤Ç¡¢\f2java.rmi.activation.ActivationSystem\fP¤È¤¤¤¦Ì¾Á°¤Ç\f2ActivationSystem\fP¤ò¥Ð¥¤¥ó¥É¤·¤Þ¤¹¡£¤·¤¿¤¬¤Ã¤Æ¡¢¥í¡¼¥«¥ë¡¦¥Þ¥·¥ó¾å¤Î\f2ActivationSystem\fP¤Ï¡¢¼¡¤Î¤è¤¦¤Ë\f2Naming.lookup\fP¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤¹¤³¤È¤Ë¤è¤Ã¤Æ¼èÆÀ¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ import java.rmi.*;
++.fl
++ import java.rmi.activation.*;
++.fl
++
++.fl
++ ActivationSystem system; system = (ActivationSystem)
++.fl
++ Naming.lookup("//:\fP\f4port\fP/java.rmi.activation.ActivationSystem");
++.fl
++.fi
++.TP 3
++\-stop
++\f2\-port\fP¥ª¥×¥·¥ç¥ó¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤¿¥Ý¡¼¥È¤Î¡¢¸½ºß¤Î\f2rmid\fP¸Æ½Ð¤·¤òÄä»ß¤·¤Þ¤¹¡£¥Ý¡¼¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ý¡¼¥È1098¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë\f2rmid\fP¤òÄä»ß¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´Ä¶­ÊÑ¿ô"
++.LP
++.RS 3
++.TP 3
++CLASSPATH
++¥æ¡¼¥¶¡¼ÄêµÁ¥¯¥é¥¹¤Ø¤Î¥Ñ¥¹¤ò¥·¥¹¥Æ¥à¤Ë»ØÄꤷ¤Þ¤¹¡£¥Ç¥£¥ì¥¯¥È¥ê¤Ï¥³¥í¥ó¤Çʬ³ä¤·¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ .:/usr/local/java/classes
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++rmic(1)¡¢
++.na
++\f2CLASSPATH\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath¡¢java(1)
++.LP
++
+--- jdk/src/bsd/doc/man/ja/rmiregistry.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/rmiregistry.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,65 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmiregistry 1 "07 May 2011"
++.TH rmiregistry 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++rmiregistry \- Java¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê
++.LP
++.RS 3
++\f3rmiregistry\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥Û¥¹¥È¤Î»ØÄꤷ¤¿¥Ý¡¼¥È¾å¤Ë¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê¤ò³«»Ï¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++rmiregistry [\fP\f4port\fP\f3]
++.fl
++\fP
++.fi
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3rmiregistry\fP¥³¥Þ¥ó¥É¤Ï¡¢¸½ºß¤Î¥Û¥¹¥È¤Î»ØÄê\f2port\fP¾å¤Ë¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê¤òºîÀ®¤·¡¢³«»Ï¤·¤Þ¤¹¡£\f2port\fP¤Î»ØÄê¤ò¾Êά¤·¤¿¾ì¹ç¡¢¥ì¥¸¥¹¥È¥ê¤Ï¥Ý¡¼¥È1099¤Ç³«»Ï¤·¤Þ¤¹¡£\f3rmiregistry\fP¥³¥Þ¥ó¥É¤Ë¡¢½ÐÎϵ¡Ç½¤Ï¤¢¤ê¤Þ¤»¤ó¡£Ä̾¤³¤ì¤Ï¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤Ç¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2rmiregistry &\fP
++.LP
++.LP
++¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¡¦¥ì¥¸¥¹¥È¥ê¤Ï¡¢¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¤Î¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ç¤¹¡£Æ±°ì¥Û¥¹¥È¤ÎRMI¥µ¡¼¥Ð¡¼¤¬¡¢¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ò̾Á°¤Ë¥Ð¥¤¥ó¥É¤¹¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¼¡¤Ë¡¢¥í¡¼¥«¥ë¤ª¤è¤Ó¥ê¥â¡¼¥È¡¦¥Û¥¹¥È¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ò¸¡º÷¤·¡¢¥ê¥â¡¼¥È¡¦¥á¥½¥Ã¥É¤Î¸Æ½Ð¤·¤ò¹Ô¤¤¤Þ¤¹¡£
++.LP
++.LP
++¥ì¥¸¥¹¥È¥ê¤Ï¡¢°ìÈÌŪ¤Ë¡¢ºÇ½é¤Î¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î°ÌÃÖ¤ò»ØÄꤷ¤Þ¤¹¡£¤½¤³¤Ç¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ï¥á¥½¥Ã¥É¤ò¸Æ¤Ó½Ð¤¹É¬Íפ¬¤¢¤ê¤Þ¤¹¡£¤«¤ï¤Ã¤Æ¡¢¤½¤Î¥ª¥Ö¥¸¥§¥¯¥È¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó»ØÄê¤Î¥µ¥Ý¡¼¥È¤òÄ󶡤·¡¢Â¾¤Î¥ª¥Ö¥¸¥§¥¯¥È¤òõ¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2java.rmi.registry.LocateRegistry\fP¥¯¥é¥¹¤Î¥á¥½¥Ã¥É¤Ï¡¢¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¡¢¤Þ¤¿¤Ï¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¤È¥Ý¡¼¥È¤ÇÆ°ºî¤¹¤ë¥ì¥¸¥¹¥È¥ê¤ò¼èÆÀ¤¹¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2java.rmi.Naming\fP¥¯¥é¥¹¤ÎURL¥Ù¡¼¥¹¤Î¥á¥½¥Ã¥É¤Ï¡¢¥ì¥¸¥¹¥È¥ê¤ÇÆ°ºî¤·¡¢Ç¤°Õ¤Î¥Û¥¹¥È¤ª¤è¤Ó¥í¡¼¥«¥ë¡¦¥Û¥¹¥È¾å¤Î¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Î¸¡º÷¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤Ëñ½ã¤Ê(ʸ»úÎó)̾Á°¤ò¥Ð¥¤¥ó¥É¤·¤¿¤ê¡¢¿·¤·¤¤Ì¾Á°¤ò¥ê¥Ð¥¤¥ó¥É(¸Å¤¤¥Ð¥¤¥ó¥É¤Ë¥ª¡¼¥Ð¡¼¥é¥¤¥É)¤·¤Þ¤¹¡£¤Þ¤¿¥ê¥â¡¼¥È¡¦¥ª¥Ö¥¸¥§¥¯¥È¤ò¥¢¥ó¥Ð¥¤¥ó¥É¤·¤¿¤ê¡¢¥ì¥¸¥¹¥È¥ê¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤¿URL¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-J
++\f2\-J\fP¤Î¸å¤í¤Ë³¤¯¥ª¥×¥·¥ç¥ó¤ò\f2java\fP¥¤¥ó¥¿¥×¥ê¥¿¤Ë°ú¤­ÅϤ·¤Þ¤¹¡£\f2java\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹(\-J¤Èjava¥ª¥×¥·¥ç¥ó¤Î´Ö¤Ë¥¹¥Ú¡¼¥¹¤ÏÆþ¤ì¤Ê¤¤)¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++java(1)¡¢
++.na
++\f2java.rmi.registry.LocateRegistry\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/rmi/registry/LocateRegistry.html¤ª¤è¤Ó
++.na
++\f2java.rmi.Naming\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/rmi/Naming.html
+--- jdk/src/bsd/doc/man/ja/schemagen.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/schemagen.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,109 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH schemagen 1 "07 May 2011"
++.TH schemagen 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++schemagen \- XML¥Ð¥¤¥ó¥É¤Î¤¿¤á¤ÎJava(tm)¥¢¡¼¥­¥Æ¥¯¥Á¥ã¡¦¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿
++.LP
++.LP
++\f3»ÅÍͥС¼¥¸¥ç¥ó:\fP 2.1
++.br
++\f3¼ÂÁõ¥Ð¡¼¥¸¥ç¥ó:\fP 2.1.3
++.LP
++.SH "schemagen¤Îµ¯Æ°"
++.LP
++.LP
++¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢¥æ¡¼¥¶¡¼¤Î¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Î\f2bin\fP¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë¤¢¤ëŬÀÚ¤Ê\f2schemagen\fP¥·¥§¥ë¡¦¥¹¥¯¥ê¥×¥È¤ò»ÈÍѤ·¤Þ¤¹¡£
++.LP
++.LP
++¸½ºß¤Î¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤Ï¡¢Java¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤È¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¤¤¤º¤ì¤â½èÍý¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++¤Þ¤¿¡¢¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤ÎAnt¥¿¥¹¥¯¤âÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.na
++\f2schemagen¤òAnt¤È¤È¤â¤Ë»ÈÍѤ¹¤ë\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagenTask.html¤¿¤á¤Î¼ê½ç¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.nf
++\f3
++.fl
++% schemagen.sh Foo.java Bar.java ...
++.fl
++Note: Writing schema1.xsd
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥æ¡¼¥¶¡¼¤ÎJava¥½¡¼¥¹/¥¯¥é¥¹¤¬Â¾¤Î¥¯¥é¥¹¤ò»²¾È¤·¤Æ¤¤¤ë¾ì¹ç¡¢¥·¥¹¥Æ¥à¤ÎCLASSPATH´Ä¶­ÊÑ¿ô¤Ç¤½¤ì¤é¤Î¥¯¥é¥¹¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤Ã¤Æ¤¤¤ë¤«¡¢\f2\-classpath\fP/\f2\-cp\fP¤ò»ÈÍѤ·¤Æ¤½¤ì¤é¤Î¥¯¥é¥¹¤ò¥Ä¡¼¥ë¤Ë»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤¦¤·¤Ê¤¤¤È¡¢¥¹¥­¡¼¥Þ¤ÎÀ¸À®»þ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤¹¡£
++.LP
++.SS
++¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó
++.LP
++.nf
++\f3
++.fl
++Usage: schemagen [\-options ...] <java files>
++.fl
++
++.fl
++Options:
++.fl
++ \-d <path> : specify where to place processor and javac generated class files
++.fl
++ \-cp <path> : specify where to find user specified files
++.fl
++ \-classpath <path> : specify where to find user specified files
++.fl
++ \-encoding <encoding> : specify encoding to be used for apt/javac invocation
++.fl
++
++.fl
++ \-episode <file> : generate episode file for separate compilation
++.fl
++ \-version : display version information
++.fl
++ \-help : display this usage message
++.fl
++\fP
++.fi
++
++.LP
++.SH "À¸À®¤µ¤ì¤ë¥ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë"
++.LP
++.LP
++¸½ºß¤Î¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤Ïñ½ã¤Ë¡¢Java¥¯¥é¥¹Æâ¤Ç»²¾È¤µ¤ì¤Æ¤¤¤ë̾Á°¶õ´Ö¤´¤È¤Ë1¤Ä¤Î¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤òºîÀ®¤·¤Þ¤¹¡£À¸À®¤µ¤ì¤ë¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÀ©¸æ¤¹¤ëÊýË¡¤Ï¡¢¸½»þÅÀ¤Ç¤Ï¸ºß¤·¤Þ¤»¤ó¡£¤½¤¦¤·¤¿ÌÜŪ¤Ë¤Ï¡¢
++.na
++\f2¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤Îant¥¿¥¹¥¯\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagenTask.html¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "̾Á°"
++´ØÏ¢¹àÌÜ
++.LP
++.RS 3
++.TP 2
++o
++¥¹¥­¡¼¥Þ¡¦¥¸¥§¥Í¥ì¡¼¥¿¤Î¼Â¹Ô(schemagen): [
++.na
++\f2¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎÌ¿Îá\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagen.html¡¢
++.na
++\f2SchemaGen¤ÎAnt¥¿¥¹¥¯¤Î»ÈÍÑ\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagenTask.html]
++.TP 2
++o
++.na
++\f2XML¥Ð¥¤¥ó¥É¤Î¤¿¤á¤ÎJava¥¢¡¼¥­¥Æ¥¯¥Á¥ã(JAXB)\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/serialver.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/serialver.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,79 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH serialver 1 "07 May 2011"
++.TH serialver 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++serialver \- ¥·¥ê¥¢¥ë¡¦¥Ð¡¼¥¸¥ç¥ó¡¦¥³¥Þ¥ó¥É
++.LP
++.LP
++\f3serialver\fP¥³¥Þ¥ó¥É¤Ï\f2serialVersionUID\fP¤òÊÖ¤·¤Þ¤¹¡£
++.LP
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++\fP\f3serialver\fP [ options ] [ classnames ]
++.fl
++.fi
++
++.LP
++.RS 3
++.TP 3
++options
++¤³¤Î¥É¥­¥å¥á¥ó¥È¤ÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ç¤¹¡£
++.TP 3
++classnames
++1¤Ä°Ê¾å¤Î¥¯¥é¥¹Ì¾¤Ç¤¹¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f3serialver\fP¤Ï¡¢1¤Ä°Ê¾å¤Î¥¯¥é¥¹¤Î\f2serialVersionUID\fP¤ò¡¢Å¸³«¤·¤Æ¤¤¤ë¥¯¥é¥¹¤Ø¥³¥Ô¡¼¤¹¤ë¤Î¤ËŬ¤·¤¿·Á¼°¤ÇÊÖ¤·¤Þ¤¹¡£°ú¿ô¤ò»ØÄꤷ¤Ê¤¤¤Ç¸Æ¤Ó½Ð¤¹¤È¡¢»ÈÍÑÊýË¡¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-classpath<: ¤Ç¶èÀÚ¤é¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Èzip¤äjar¥Õ¥¡¥¤¥ë>
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¤ª¤è¤Ó¥ê¥½¡¼¥¹¤Î¸¡º÷¥Ñ¥¹¤òÀßÄꤷ¤Þ¤¹¡£
++.RE
++
++.LP
++.RS 3
++.TP 3
++\-show
++´Êñ¤Ê¥æ¡¼¥¶¡¼¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òɽ¼¨¤·¤Þ¤¹¡£´°Á´»ØÄê¤Î¥¯¥é¥¹Ì¾¤òÆþÎϤ·¤Æ¡¢Enter¥­¡¼¤«¡ÖShow¡×¥Ü¥¿¥ó¤ò²¡¤·¡¢¥·¥ê¥¢¥ë¡¦¥Ð¡¼¥¸¥ç¥óUID¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "Ãí°Õ"
++.LP
++.LP
++\f3serialver\fP¥³¥Þ¥ó¥É¤Ï¡¢»ØÄꤵ¤ì¤¿¥¯¥é¥¹¤ò¤½¤Î²¾ÁÛ¥Þ¥·¥óÆâ¤ËÆɤ߹þ¤ó¤Ç½é´ü²½¤·¤Þ¤¹¤¬¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¥»¥­¥å¥ê¥Æ¥£¡¦¥Þ¥Í¡¼¥¸¥ã¤ÎÀßÄê¤Ï¹Ô¤¤¤Þ¤»¤ó¡£¿®Íê¤Ç¤­¤Ê¤¤¥¯¥é¥¹¤È¤È¤â¤Ë\f3serialver\fP¤ò¼Â¹Ô¤¹¤ë¾ì¹ç¤Ë¤Ï¡¢¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥»¥­¥å¥ê¥Æ¥£¡¦¥Þ¥Í¡¼¥¸¥ã¤òÀßÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2\-J\-Djava.security.manager\fP
++.LP
++.LP
++¤Þ¤¿¡¢É¬ÍפǤ¢¤ì¤Ð¡¢¼¡¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¥»¥­¥å¥ê¥Æ¥£¡¦¥Ý¥ê¥·¡¼¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£
++.LP
++.LP
++\f2\-J\-Djava.security.policy=<policy file>\fP
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.LP
++.na
++\f2java.io.ObjectStreamClass\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/api/java/io/ObjectStreamClass.html
++.LP
++
+--- jdk/src/bsd/doc/man/ja/servertool.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/servertool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,95 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH servertool 1 "07 May 2011"
++.TH servertool 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++servertool \- Java(tm)IDL¥µ¡¼¥Ð¡¼¡¦¥Ä¡¼¥ë
++.LP
++\f3servertool\fP¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¡¢±Ê³¥µ¡¼¥Ð¡¼¤ÎÅÐÏ¿¡¢ÅÐÏ¿²ò½ü¡¢µ¯Æ°¤ª¤è¤ÓÄä»ß¤ò¹Ô¤¦¤¿¤á¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ󶡤·¤Þ¤¹¡£
++.SH "·Á¼°"
++.LP
++.nf
++\f3
++.fl
++servertool \-ORBInitialPort \fP\f4nameserverport\fP\f3 \fP\f3options\fP\f3 [ \fP\f3commands\fP\f3 ]
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Ê¤¤¤Ç\f2servertool\fP¤òµ¯Æ°¤¹¤ë¤È¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥Ä¡¼¥ë¤È¤·¤Æ\f2servertool >\fP¥×¥í¥ó¥×¥È¤¬É½¼¨¤µ¤ì¤Þ¤¹¡£\f2servertool >\fP¥×¥í¥ó¥×¥È¤Ë¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++¥³¥Þ¥ó¥É¤òÆþÎϤ·¤Æ\f2servertool\fP¤òµ¯Æ°¤¹¤ë¤È¡¢Java IDL¥µ¡¼¥Ð¡¼¡¦¥Ä¡¼¥ë¤¬µ¯Æ°¤·¡¢¥³¥Þ¥ó¥É¤ò¼Â¹Ô¤·¤Æ½ªÎ»¤·¤Þ¤¹¡£
++.LP
++.LP
++\f2\-ORBInitialPort\fP \f2nameserverport\fP¥ª¥×¥·¥ç¥ó¤Ï\f3ɬ¿Ü\fP¤Ç¤¹¡£\f2nameserverport\fP¤ÎÃͤˤϡ¢\f2orbd\fP¤¬¼Â¹Ô¤µ¤ì¡¢Ãå¿®¥ê¥¯¥¨¥¹¥È¤òÂÔµ¡¤·¤Æ¤¤¤ë¥Ý¡¼¥È¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£Solaris¥½¥Õ¥È¥¦¥§¥¢¤ò»ÈÍѤ¹¤ë¾ì¹ç¡¢1024¤è¤ê¾®¤µ¤¤¥Ý¡¼¥È¾å¤Ç¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¤Ë¤Ï¡¢root¥æ¡¼¥¶¡¼¤Ë¤Ê¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢\f2nameserverport\fP¤È¤·¤Æ1024°Ê¾å¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f2servertool\fP¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¡¦¥×¥í¥°¥é¥Þ¤¬¡¢±Ê³¥µ¡¼¥Ð¡¼¤ÎÅÐÏ¿¡¢ÅÐÏ¿²ò½ü¡¢µ¯Æ°¤ª¤è¤ÓÄä»ß¤ò¹Ô¤¦¤¿¤á¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹¤òÄ󶡤·¤Þ¤¹¡£¤½¤Î¾¤Ë¡¢¥µ¡¼¥Ð¡¼¤Ë´Ø¤¹¤ëÍÍ¡¹¤ÊÅý·×¾ðÊó¤ò¼èÆÀ¤¹¤ë¤¿¤á¤Î¥³¥Þ¥ó¥É¤âÄ󶡤·¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-ORBInitialHost nameserverhost
++¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤¬¡¢¼Â¹Ô¤µ¤ì¡¢Ãå¿®¥ê¥¯¥¨¥¹¥È¤òÂÔµ¡¤·¤Æ¤¤¤ë¥Û¥¹¥È¡¦¥Þ¥·¥ó¤ò»ØÄꤷ¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢\f2nameserverhost\fP¤Ï¥Ç¥Õ¥©¥ë¥È¤Ç\f2localhost\fP¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f2orbd\fP¤È\f2servertool\fP¤¬°Û¤Ê¤ë¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢\f2orbd\fP¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¥Û¥¹¥È¤Î̾Á°¤ÈIP¥¢¥É¥ì¥¹¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤ÆÇظå¤Î²¾ÁÛ¥Þ¥·¥ó¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "¥³¥Þ¥ó¥É"
++.LP
++.RS 3
++.TP 3
++register \-server\ <server\ class\ name> \ \-classpath\ <classpath\ to\ server> [\ \-applicationName\ <application\ name> \-args\ <args\ to\ server> \-vmargs\ <flags\ to\ be\ passed\ to\ Java\ VM> \ ]
++Object Request Broker Daemon(ORBD)¤Ë¿·µ¬±Ê³¥µ¡¼¥Ð¡¼¤òÅÐÏ¿¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤¬Ì¤ÅÐÏ¿¤Î¾ì¹ç¡¢ÅÐÏ¿¤·¤Æ¥¢¥¯¥Æ¥£¥Ö²½¤·¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ë¤è¤Ã¤Æ¡¢\f2\-server\fP¥ª¥×¥·¥ç¥ó¤Ç¼±Ê̤µ¤ì¤ë¥µ¡¼¥Ð¡¼¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹Æâ¤Ç¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤¬¸Æ¤Ó½Ð¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤Ï¡¢\f2public static void install(org.omg.CORBA.ORB)\fP¤Ë¤Ê¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤Ï¡¢¥ª¥×¥·¥ç¥ó¤Ç¤¢¤ê¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹¡¦¥¹¥­¡¼¥Þ¤ÎºîÀ®¤Ê¤É¤ÎÆȼ«¤Î¥µ¡¼¥Ð¡¼¡¦¥¤¥ó¥¹¥È¡¼¥ëÆ°ºî¤ò³«È¯¼Ô¤¬»ØÄê¤Ç¤­¤Þ¤¹¡£
++.TP 3
++unregister \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++¥µ¡¼¥Ð¡¼ID¤Þ¤¿¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó̾¤ò»ÈÍѤ·¤Æ¡¢ORBD¤Î¥µ¡¼¥Ð¡¼¤ÎÅÐÏ¿¤ò²ò½ü¤·¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ë¤è¤Ã¤Æ¡¢\f2\-server\fP¥ª¥×¥·¥ç¥ó¤Ç¼±Ê̤µ¤ì¤ë¥µ¡¼¥Ð¡¼¤Î¥á¥¤¥ó¡¦¥¯¥é¥¹Æâ¤Ç¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤¬¸Æ¤Ó½Ð¤µ¤ì¤Þ¤¹¡£¤³¤Î¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤Ï¡¢\f2public static void uninstall(org.omg.CORBA.ORB)\fP¤Ë¤Ê¤Ã¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤Ï¡¢¥ª¥×¥·¥ç¥ó¤Ç¤¢¤ê¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¦¥á¥½¥Ã¥É¤ÎÆ°ºî¤Î¼è¤ê¾Ã¤·¤Ê¤É¤ÎÆȼ«¤Î¥µ¡¼¥Ð¡¼¡¦¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ëÆ°ºî¤ò³«È¯¼Ô¤¬»ØÄê¤Ç¤­¤Þ¤¹¡£
++.TP 3
++getserverid \-applicationName\ <application\ name>
++¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤Æ¤¤¤ë¥µ¡¼¥Ð¡¼ID¤òÊÖ¤·¤Þ¤¹¡£
++.TP 3
++list
++ORBD¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î±Ê³¥µ¡¼¥Ð¡¼¤Ë´Ø¤¹¤ë¾ðÊó¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++listappnames
++¸½ºßORBD¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î¥µ¡¼¥Ð¡¼¤Î¥¢¥×¥ê¥±¡¼¥·¥ç¥ó̾¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++listactive
++ORBD¤Ë¤è¤Ã¤Æµ¯Æ°¤µ¤ì¡¢¸½ºß¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤¹¤Ù¤Æ¤Î±Ê³¥µ¡¼¥Ð¡¼¤Ë´Ø¤¹¤ë¾ðÊó¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++locate \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-endpointType\ <endpointType>\ ]
++ÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¡¼¤ÇºîÀ®¤·¤¿¤¹¤Ù¤Æ¤ÎORB¤ÎÆÃÄê¤Î¥¿¥¤¥×¤Ë¤Ä¤¤¤Æ¥¨¥ó¥É¥Ý¥¤¥ó¥È(¥Ý¡¼¥È)¤ò¸¡½Ð¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥¢¥¯¥Æ¥£¥Ö²½¤µ¤ì¤Þ¤¹¡£¥¨¥ó¥É¥Ý¥¤¥ó¥È¡¦¥¿¥¤¥×¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥µ¡¼¥Ð¡¼¤ÎORB¤´¤È¤Ë´ØÏ¢ÉÕ¤±¤é¤ì¤Æ¤¤¤ëplain¥¿¥¤¥×¤Þ¤¿¤Ïnon\-protected¥¿¥¤¥×¤Î¥¨¥ó¥É¥Ý¥¤¥ó¥È¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++locateperorb \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-orbid\ <ORB\ name>\ ]
++ÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¡¼¤ÎÆÃÄê¤ÎORB¤ÇÅÐÏ¿¤µ¤ì¤¿¥¨¥ó¥É¥Ý¥¤¥ó¥È(¥Ý¡¼¥È)¤ò¸¡½Ð¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥¢¥¯¥Æ¥£¥Ö²½¤µ¤ì¤Þ¤¹¡£\f2orbid\fP¤¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥ÈÃͤΡÖ""¡×¤¬\f2orbid\fP¤Ë³ä¤êÅö¤Æ¤é¤ì¤Þ¤¹¡£ORB¤¬¶õʸ»úÎó¤Î\f2orbid\fP¤ÇºîÀ®¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¡¢ÅÐÏ¿¤·¤¿¥Ý¡¼¥È¤¬¤¹¤Ù¤ÆÊÖ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++orblist \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++¥µ¡¼¥Ð¡¼¾å¤ËÄêµÁ¤µ¤ì¤¿ORB¤ÎORBId¤ò°ìÍ÷ɽ¼¨¤·¤Þ¤¹¡£ORBId¤Ï¥µ¡¼¥Ð¡¼¤ÇºîÀ®¤µ¤ì¤¿ORB¤Îʸ»úÎó̾¤Ç¤¹¡£¥µ¡¼¥Ð¡¼¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¡¢¥¢¥¯¥Æ¥£¥Ö²½¤µ¤ì¤Þ¤¹¡£
++.TP 3
++shutdown \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++ORBD¤ËÅÐÏ¿¤µ¤ì¤¿¥¢¥¯¥Æ¥£¥Ö¤Ê¥µ¡¼¥Ð¡¼¤òÄä»ß¤·¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Î¼Â¹ÔÃæ¤Ë¡¢\f2\-serverid\fP¥Ñ¥é¥á¡¼¥¿¤Þ¤¿¤Ï\f2\-applicationName\fP¥Ñ¥é¥á¡¼¥¿¤Ç»ØÄꤵ¤ì¤¿¥¯¥é¥¹Æâ¤ËÄêµÁ¤µ¤ì¤¿\f2shutdown()\fP¥á¥½¥Ã¥É¤â¸Æ¤Ó½Ð¤µ¤ì¤Æ¥µ¡¼¥Ð¡¼¡¦¥×¥í¥»¥¹¤òÀµ¤·¤¯Ää»ß¤·¤Þ¤¹¡£
++.TP 3
++startup \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++ORBD¤ËÅÐÏ¿¤µ¤ì¤¿¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¤³¤Î¥³¥Þ¥ó¥É¤Ç¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤·¤Þ¤¹¡£¥µ¡¼¥Ð¡¼¤¬¤¹¤Ç¤Ë¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢¥æ¡¼¥¶¡¼¤Ë¥¨¥é¡¼¡¦¥á¥Ã¥»¡¼¥¸¤¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.TP 3
++help
++¥µ¡¼¥Ð¡¼¤¬¥µ¡¼¥Ð¡¼¡¦¥Ä¡¼¥ë¤Ç»ÈÍѤǤ­¤ë¤¹¤Ù¤Æ¤Î¥³¥Þ¥ó¥É¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++quit
++¥µ¡¼¥Ð¡¼¡¦¥Ä¡¼¥ë¤ò½ªÎ»¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++orbd(1)
+--- jdk/src/bsd/doc/man/ja/tnameserv.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/tnameserv.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,476 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH tnameserv 1 "07 May 2011"
++.TH tnameserv 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++Java IDL: °ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹ \- \f2tnameserv\fP
++.LP
++.LP
++¤³¤Î¥É¥­¥å¥á¥ó¥È¤Ç¤Ï¡¢Java IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\f2tnameserv\fP¤Î»ÈÍÑÊýË¡¤Ë¤Ä¤¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£Java IDL¤Ë¤Ï¡¢Object Request Broker Daemon(ORBD)¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£ORBD¤Ï¡¢¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥µ¡¼¥Ó¥¹¡¢°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¡¢\f3±Ê³\fP¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ª¤è¤Ó¥µ¡¼¥Ð¡¼¡¦¥Þ¥Í¡¼¥¸¥ã¤ò´Þ¤à¥Ç¡¼¥â¥ó¡¦¥×¥í¥»¥¹¤Ç¤¹¡£Java IDL¤Î¤¹¤Ù¤Æ¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë¤Ç¤ÏORBD¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹¤¬¡¢°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ò»ÈÍѤ¹¤ëÎã¤Ç¤Ï¡¢\f2orbd\fP¤Î¤«¤ï¤ê¤Ë\f2tnameserv\fP¤ò»ÈÍѤǤ­¤Þ¤¹¡£\f2orbd\fP¥Ä¡¼¥ë¤Î¾ÜºÙ¤Ï¡¢orbd¤Îorbd(1)¤Þ¤¿¤Ï
++.na
++\f2ORBD¤Ë´Þ¤Þ¤ì¤ëJava IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html¤Ë´Ø¤¹¤ë¥È¥Ô¥Ã¥¯¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++¤³¤³¤Ç¤Ï¡¢°Ê²¼¤Î¹àÌܤˤĤ¤¤ÆÀâÌÀ¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++Java\ IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹
++.TP 2
++o
++Java\ IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îµ¯Æ°
++.TP 2
++o
++Java\ IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ÎÄä»ß
++.TP 2
++o
++¥µ¥ó¥×¥ë¡¦¥¯¥é¥¤¥¢¥ó¥È: ̾Á°¶õ´Ö¤Ø¤Î¥ª¥Ö¥¸¥§¥¯¥È¤ÎÄɲÃ
++.TP 2
++o
++¥µ¥ó¥×¥ë¡¦¥¯¥é¥¤¥¢¥ó¥È: ̾Á°¶õ´Ö¤Î¥Ö¥é¥¦¥º
++.RE
++
++.LP
++.SH "Java IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹"
++.LP
++.LP
++CORBA¤ÎCOS(Common Object Services)¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤¬¥Õ¥¡¥¤¥ë¤ËÂФ·¤Æ¥Ç¥£¥ì¥¯¥È¥ê¹½Â¤¤òÄ󶡤·¤Æ¤¤¤ë¤Î¤ÈƱ¤¸¤è¤¦¤Ë¡¢¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤ËÂФ·¤Æ¥Ä¥ê¡¼¹½Â¤¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òÄ󶡤·¤Þ¤¹¡£Java IDL¤Î°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ç¤¢¤ë\f2tnameserv\fP¤Ï¡¢COS¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Î»ÅÍͤòñ½ã¤Ê·Á¤Ç¼ÂÁõ¤·¤¿¤â¤Î¤Ç¤¹¡£
++.LP
++.LP
++¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Ï̾Á°¶õ´Ö¤Ë̾Á°¤Ç³ÊǼ¤µ¤ì¡¢¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤È̾Á°¤Î¥Ú¥¢¤Ï¡¢¤½¤ì¤¾¤ì¥Í¡¼¥à¡¦\f2¥Ð¥¤¥ó¥Ç¥£¥ó¥°\fP¤È¸Æ¤Ð¤ì¤Þ¤¹¡£¥Í¡¼¥à¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ï\f2¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È\fP¤ËÁȤ߹þ¤à¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Ï¤½¤ì¼«ÂΤ¬¥Í¡¼¥à¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ç¤¢¤ê¡¢¥Õ¥¡¥¤¥ë¡¦¥·¥¹¥Æ¥à¤Î¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê¤ÈƱ¤¸ÊÔÀ®µ¡Ç½¤ò»ý¤Á¤Þ¤¹¡£¤¹¤Ù¤Æ¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ï\f2½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È\fP¤Ë³ÊǼ¤µ¤ì¤Þ¤¹¡£Ì¾Á°¶õ´Ö¤Ë¤ª¤¤¤Æ¡¢½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤ÏÍ£°ì¤Î±Ê³Ū¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ç¤¹¡£¤½¤ì°Ê³°¤Î¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Ï¡¢Java IDL¤Î¥Í¡¼¥ß¥ó¥°¡¦¥µ¡¼¥Ó¥¹¡¦¥×¥í¥»¥¹¤¬Ää»ß¤·¡¢ºÆµ¯Æ°¤µ¤ì¤ë¤È¼º¤ï¤ì¤Þ¤¹¡£
++.LP
++.LP
++¥¢¥×¥ì¥Ã¥È¤Þ¤¿¤Ï¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤«¤éCOS¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ò»ÈÍѤ¹¤ë¤¿¤á¤Ë¤Ï¡¢¤½¤ÎORB¤¬¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬Æ°ºî¤·¤Æ¤¤¤ë¥Û¥¹¥È¤Î¥Ý¡¼¥È¤òÃΤäƤ¤¤ë¤«¡¢¤½¤Î¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îʸ»úÎ󲽤µ¤ì¤¿½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢Java IDL¤Î¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ç¤â¤½¤Î¾¤ÎCOS½àµò¤Î¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ç¤â¤«¤Þ¤¤¤Þ¤»¤ó¡£
++.LP
++.SH "Java IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îµ¯Æ°"
++.LP
++.LP
++Java IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ò»ÈÍѤ¹¤ë¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Þ¤¿¤Ï¥¢¥×¥ì¥Ã¥È¤è¤êÁ°¤Ëµ¯Æ°¤·¤Æ¤ª¤¯É¬Íפ¬¤¢¤ê¤Þ¤¹¡£Java\ IDLÀ½Éʤò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¡¢Java\ IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òµ¯Æ°¤¹¤ë¥¹¥¯¥ê¥×¥È(Solaris: \f2tnameserv\fP)¤Þ¤¿¤Ï¼Â¹Ô²Äǽ¥Õ¥¡¥¤¥ë(Windows NT: \f2tnameserv.exe\fP)¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤ÇÆ°ºî¤¹¤ë¤è¤¦¤Ë¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òµ¯Æ°¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++Æä˻ØÄꤷ¤Ê¤¤¾ì¹ç¡¢Java IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Ï¡¢ORB¤Î\f2resolve_initial_references()\fP¥á¥½¥Ã¥É¤È\f2list_initial_references()\fP¥á¥½¥Ã¥É¤Î¼ÂÁõ¤Ë»ÈÍѤ¹¤ë¥Ö¡¼¥È¥¹¥È¥é¥Ã¥×¡¦¥×¥í¥È¥³¥ë¤ËÂФ·¤Æ¥Ý¡¼¥È900¤ÇÂÔµ¡¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ tnameserv \-ORBInitialPort \fP\f4nameserverport\fP\f3&
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¡¦¥Ý¡¼¥È¤ò»ØÄꤷ¤Ê¤¤¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤Ç¥Ý¡¼¥È900¤¬»ÈÍѤµ¤ì¤Þ¤¹¡£Solaris¥½¥Õ¥È¥¦¥§¥¢¤Î¼Â¹Ô»þ¤Ï¡¢1024¤è¤ê¾®¤µ¤¤¥Ý¡¼¥È¤Ç¥×¥í¥»¥¹¤ò³«»Ï¤¹¤ë¾ì¹ç¡¢root¥æ¡¼¥¶¡¼¤Ë¤Ê¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤Î¤¿¤á¡¢1024°Ê¾å¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò»ÈÍѤ¹¤ë¤³¤È¤ò¤ªÁ¦¤á¤·¤Þ¤¹¡£1050¤Î¤è¤¦¤ËÊ̤Υݡ¼¥È¤ò»ØÄꤷ¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ò¥Ð¥Ã¥¯¥°¥é¥¦¥ó¥É¤Ç¼Â¹Ô¤¹¤ë¤Ë¤Ï¡¢UNIX¥³¥Þ¥ó¥É¡¦¥·¥§¥ë¤Ç¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ tnameserv \-ORBInitialPort 1050&
++.fl
++\fP
++.fi
++
++.LP
++.LP
++Windows¤ÎMS\-DOS¥·¥¹¥Æ¥à¡¦¥×¥í¥ó¥×¥È¤Ç¤Ï¡¢¼¡¤Î¤è¤¦¤ËÆþÎϤ·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++ start tnameserv \-ORBInitialPort 1050
++.fl
++\fP
++.fi
++
++.LP
++.LP
++¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ë¤Ï¡¢¿·¤·¤¤¥Ý¡¼¥ÈÈÖ¹æ¤òÃΤ餻¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤³¤ì¤ò¹Ô¤¦¤Ë¤Ï¡¢ORB¥ª¥Ö¥¸¥§¥¯¥È¤ÎºîÀ®»þ¤Ë\f2org.omg.CORBA.ORBInitialPort\fP¥×¥í¥Ñ¥Æ¥£¤Ë¿·¤·¤¤¥Ý¡¼¥ÈÈÖ¹æ¤òÀßÄꤷ¤Þ¤¹¡£
++.LP
++.SS
++°Û¤Ê¤ë¥Þ¥·¥ó¾å¤Ç¤Î¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤Î¼Â¹Ô
++.LP
++.LP
++Java IDL¤ÈRMI\-IIOP¤Î¤Û¤È¤ó¤É¤Î¥Á¥å¡¼¥È¥ê¥¢¥ë¤Ç¤Ï¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¡¢¥µ¡¼¥Ð¡¼¤ª¤è¤Ó¥¯¥é¥¤¥¢¥ó¥È¤Ï¤¹¤Ù¤Æ³«È¯ÍѤΥޥ·¥ó¾å¤Ç¼Â¹Ô¤µ¤ì¤Þ¤¹¡£¼ÂºÝ¤Ë¥Ç¥×¥í¥¤¥á¥ó¥È¤¹¤ë¾ì¹ç¤Ë¤Ï¡¢¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤ò¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤È¤Ï°Û¤Ê¤ë¥Û¥¹¥È¾å¤Ç¼Â¹Ô¤¹¤ë¤³¤È¤¬Â¿¤¯¤Ê¤ê¤Þ¤¹¡£
++.LP
++.LP
++¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤¬¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ò¸«¤Ä¤±¤ë¤Ë¤Ï¡¢¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤¬¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¥Ý¡¼¥È¤ÎÈÖ¹æ¤È¥Û¥¹¥È¤òǧ¼±¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¤½¤Î¤¿¤á¤Ë¤Ï¡¢¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤Î¥Õ¥¡¥¤¥ëÆâ¤Î\f2org.omg.CORBA.ORBInitialPort\fP¥×¥í¥Ñ¥Æ¥£¤È\f2org.omg.CORBA.ORBInitialHost\fP¥×¥í¥Ñ¥Æ¥£¤ò¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤¬¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¥Ý¡¼¥È¤ÎÈÖ¹æ¤È¥Þ¥·¥ó¤Î̾Á°¤ËÀßÄꤷ¤Þ¤¹¡£¤³¤ÎÎã¤Ï¡¢
++.na
++\f2RMI\-IIOP¤ò»ÈÍѤ·¤¿Hello World¤ÎÎã\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/rmi\-iiop/rmiiiopexample.html¤Ë¼¨¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó\f2\-ORBInitialPort\fP \f2nameserverport#\fP¤È\f2\-ORBInitialHost\fP \f2nameserverhostname\fP¤ò»ÈÍѤ·¤Æ¡¢¥¯¥é¥¤¥¢¥ó¥È¤È¥µ¡¼¥Ð¡¼¤ËÂФ·¤Æ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òõ¤¹¾ì½ê¤ò»ØÄꤹ¤ë¤³¤È¤â¤Ç¤­¤Þ¤¹¡£
++.na
++\f2Java IDL: 2Âæ¤Î¥Þ¥·¥ó¾å¤Ç¼Â¹Ô¤¹¤ëHello World¥×¥í¥°¥é¥à\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/tutorial/jidl2machines.html¤Ë¤Ï¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ»ØÄꤹ¤ëÊýË¡¤¬¼¨¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.LP
++.LP
++¤¿¤È¤¨¤Ð¡¢°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹\f2tnameserv\fP¤¬¡¢¥Û¥¹¥È\f2nameserverhost\fP¤Î¥Ý¡¼¥È1050¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£¤µ¤é¤Ë¡¢¥¯¥é¥¤¥¢¥ó¥È¤¬¥Û¥¹¥È\f2clienthost\fP¾å¤Ç¼Â¹Ô¤µ¤ì¡¢¥µ¡¼¥Ð¡¼¤Ï¥Û¥¹¥È\f2serverhost\fP¾å¤Ç¼Â¹Ô¤µ¤ì¤Æ¤¤¤ë¤È¤·¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++¼¡¤Î¤è¤¦¤Ë¡¢¥Û¥¹¥È\f2nameserverhost\fP¾å¤Ç\f2tnameserv\fP¤òµ¯Æ°¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ tnameserv \-ORBInitialPort 1050
++.fl
++
++.fl
++\fP
++.fi
++.TP 2
++o
++¼¡¤Î¤è¤¦¤Ë¡¢\f2serverhost\fP¾å¤Ç¥µ¡¼¥Ð¡¼¤òµ¯Æ°¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ java Server \-ORBInitialPort 1050 \-ORBInitialHost nameserverhost
++.fl
++\fP
++.fi
++.TP 2
++o
++¼¡¤Î¤è¤¦¤Ë¡¢\f2clienthost\fP¾å¤Ç¥¯¥é¥¤¥¢¥ó¥È¤òµ¯Æ°¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ java Client \-ORBInitialPort 1050 \-ORBInitialHost nameserverhost
++.fl
++\fP
++.fi
++.RE
++
++.LP
++.SS
++\-J¥ª¥×¥·¥ç¥ó
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤Ï¡¢\f2tnameserve\fP¤È¤È¤â¤Ë»ÈÍѤǤ­¤Þ¤¹¡£
++.RS 3
++.TP 3
++\-Joption
++Java²¾ÁÛ¥Þ¥·¥ó¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£\f2option\fP¤Ë¤Ï¡¢java(1)¤Î¥ê¥Õ¥¡¥ì¥ó¥¹¡¦¥Ú¡¼¥¸¤Ëµ­ºÜ¤µ¤ì¤Æ¤¤¤ë¥ª¥×¥·¥ç¥ó¤ò1¤Ä»ØÄꤷ¤Þ¤¹¡£¤¿¤È¤¨¤Ð¡¢\f3\-J\-Xms48m\fP¤È»ØÄꤹ¤ë¤È¡¢¥¹¥¿¡¼¥È¥¢¥Ã¥×¡¦¥á¥â¥ê¡¼¤Ï48M¥Ð¥¤¥È¤ËÀßÄꤵ¤ì¤Þ¤¹¡£\f3\-J\fP¤ò»ÈÍѤ·¤ÆÇظå¤Î²¾ÁÛ¥Þ¥·¥ó¤Ë¥ª¥×¥·¥ç¥ó¤òÅϤ¹¤³¤È¤Ï¤è¤¯¹Ô¤ï¤ì¤Æ¤¤¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "Java IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ÎÄä»ß"
++.LP
++.LP
++Java IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òÄä»ß¤¹¤ë¤Ë¤Ï¡¢Unix¤Î¾ì¹ç¤Ï¡¢\f2kill\fP¤Ê¤É¤Î¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¡¦¥·¥¹¥Æ¥à¤Î¥³¥Þ¥ó¥É¤ò»ÈÍѤ·¡¢Windows¤Î¾ì¹ç¤Ï¡¢\f2[Ctrl]+[C]\fP¥­¡¼¤ò»ÈÍѤ·¤Þ¤¹¡£¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤òÌÀ¼¨Åª¤ËÄä»ß¤¹¤ë¤Þ¤Ç¤Ï¡¢¸Æ½Ð¤·ÂÔµ¡¾õÂÖ¤¬Â³¤­¤Þ¤¹¡£¥µ¡¼¥Ó¥¹¤ò½ªÎ»¤µ¤»¤ë¤È¡¢Java IDL¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤ËÅÐÏ¿¤µ¤ì¤Æ¤¤¤ë̾Á°¤Ï¼º¤ï¤ì¤Þ¤¹¡£
++.LP
++.SH "¥µ¥ó¥×¥ë¡¦¥¯¥é¥¤¥¢¥ó¥È: ̾Á°¶õ´Ö¤Ø¤Î¥ª¥Ö¥¸¥§¥¯¥È¤ÎÄɲÃ"
++.LP
++.LP
++¼¡¤Ë¼¨¤¹¥µ¥ó¥×¥ë¡¦¥×¥í¥°¥é¥à¤Ï¡¢Ì¾Á°¤ò̾Á°¶õ´Ö¤ËÄɲ乤ëÊýË¡¤ò¼¨¤¹¤â¤Î¤Ç¤¹¡£¤³¤Î¥µ¥ó¥×¥ë¡¦¥×¥í¥°¥é¥à¤Ï¡¢¤³¤Î¤Þ¤Þ¤Î¾õÂ֤Ǵ°Á´¤ËÆ°ºî¤¹¤ë°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¡¦¥¯¥é¥¤¥¢¥ó¥È¤Ç¡¢¼¡¤Î¤è¤¦¤Êñ½ã¤Ê¥Ä¥ê¡¼¤òºîÀ®¤¹¤ë¤â¤Î¤Ç¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++\f4½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È\fP
++.RS 3
++.TP 2
++*
++\f3plans\fP
++.TP 2
++*
++\f4Personal\fP
++.RS 3
++.TP 2
++-
++\f3calendar\fP
++.TP 2
++-
++\f3schedule\fP
++.RE
++.RE
++.RE
++
++.LP
++.LP
++¤³¤ÎÎã¤Ç¡¢\f3plans\fP¤Ï¥ª¥Ö¥¸¥§¥¯¥È»²¾È¡¢\f3Personal\fP¤Ï\f3calendar\fP¤È\f3schedule\fP¤Î2¤Ä¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤ò´Þ¤à¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Ç¤¹¡£
++.LP
++.nf
++\f3
++.fl
++import java.util.Properties;
++.fl
++import org.omg.CORBA.*;
++.fl
++import org.omg.CosNaming.*;
++.fl
++
++.fl
++public class NameClient
++.fl
++{
++.fl
++ public static void main(String args[])
++.fl
++ {
++.fl
++ try {
++.fl
++\fP
++.fi
++
++.LP
++Á°½Ò¤ÎJava IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îµ¯Æ°¤Ç¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤Ï¥Ý¡¼¥È1050¤ò»ÈÍѤ·¤Æµ¯Æ°¤·¤Þ¤·¤¿¡£¼¡¤Î¥³¡¼¥É¤Ç¡¢¤³¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò¥¯¥é¥¤¥¢¥ó¥È¡¦¥·¥¹¥Æ¥à¤ËÃΤ餻¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ Properties props = new Properties();
++.fl
++ props.put("org.omg.CORBA.ORBInitialPort", "1050");
++.fl
++ ORB orb = ORB.init(args, props);
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++¼¡¤Î¥³¡¼¥É¤Ç¤Ï¡¢½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤ò¼èÆÀ¤·¡¢¤½¤ì¤ò\f3ctx\fP¤ËÂåÆþ¤·¤Þ¤¹¡£2¹ÔÌܤǤϡ¢\f3ctx\fP¤ò¥À¥ß¡¼¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È\f3objref\fP¤Ë¥³¥Ô¡¼¤·¤Þ¤¹¡£¤³¤Îobjref¤Ë¤Ï¡¢¤¢¤È¤ÇÍÍ¡¹¤Ê̾Á°¤ò³ä¤êÅö¤Æ¤Æ̾Á°¶õ´Ö¤ËÄɲä·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ NamingContext ctx =
++.fl
++NamingContextHelper.narrow(orb.resolve_initial_references("NameService"));
++.fl
++ NamingContext objref = ctx;
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++¼¡¤Î¥³¡¼¥É¤Ç¤Ï¡¢text¥¿¥¤¥×¤Î̾Á°plans¤òºîÀ®¤·¡¢¤½¤ì¤ò¥À¥ß¡¼¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤Ë¥Ð¥¤¥ó¥É¤·¤Þ¤¹¡£¤½¤Î¸å¡¢\f2rebind\fP¤ò»ÈÍѤ·¤Æ½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Î²¼¤Ëplans¤òÄɲ䷤Ƥ¤¤Þ¤¹¡£\f2rebind\fP¥á¥½¥Ã¥É¤ò»ÈÍѤ¹¤ì¤Ð¡¢\f2bind\fP¤ò»ÈÍѤ·¤¿¾ì¹ç¤ËȯÀ¸¤¹¤ëÎã³°¤òȯÀ¸¤µ¤»¤º¤Ë¡¢¤³¤Î¥×¥í¥°¥é¥à¤ò²¿Å٤ⷫÊÖ¤·¼Â¹Ô¤Ç¤­¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ NameComponent nc1 = new NameComponent("plans", "text");
++.fl
++ NameComponent[] name1 = {nc1};
++.fl
++ ctx.rebind(name1, objref);
++.fl
++ System.out.println("plans rebind successful!");
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++¼¡¤Î¥³¡¼¥É¤Ç¤Ï¡¢directory¥¿¥¤¥×¤ÎPersonal¤È¤¤¤¦¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤òºîÀ®¤·¤Þ¤¹¡£¤½¤Î·ë²ÌÆÀ¤é¤ì¤ë¥ª¥Ö¥¸¥§¥¯¥È»²¾È\f3ctx2\fP¤ò¤³¤Î̾Á°¤Ë¥Ð¥¤¥ó¥É¤·¡¢½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤ËÄɲä·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ NameComponent nc2 = new NameComponent("Personal", "directory");
++.fl
++ NameComponent[] name2 = {nc2};
++.fl
++ NamingContext ctx2 = ctx.bind_new_context(name2);
++.fl
++ System.out.println("new naming context added..");
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++»Ä¤ê¤Î¥³¡¼¥É¤Ç¤Ï¡¢¥À¥ß¡¼¤Î¥ª¥Ö¥¸¥§¥¯¥È»²¾È¤òschedule¤Ècalendar¤È¤¤¤¦Ì¾Á°¤Ç¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¡ÖPersonal¡×(\f3ctx2\fP)¤Ë¥Ð¥¤¥ó¥É¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ NameComponent nc3 = new NameComponent("schedule", "text");
++.fl
++ NameComponent[] name3 = {nc3};
++.fl
++ ctx2.rebind(name3, objref);
++.fl
++ System.out.println("schedule rebind successful!");
++.fl
++
++.fl
++ NameComponent nc4 = new NameComponent("calender", "text");
++.fl
++ NameComponent[] name4 = {nc4};
++.fl
++ ctx2.rebind(name4, objref);
++.fl
++ System.out.println("calender rebind successful!");
++.fl
++
++.fl
++
++.fl
++ } catch (Exception e) {
++.fl
++ e.printStackTrace(System.err);
++.fl
++ }
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++
++.LP
++.SH "¥µ¥ó¥×¥ë¡¦¥¯¥é¥¤¥¢¥ó¥È: ̾Á°¶õ´Ö¤Î¥Ö¥é¥¦¥º"
++.LP
++.LP
++¼¡¤Î¥µ¥ó¥×¥ë¡¦¥×¥í¥°¥é¥à¤Ç¤Ï¡¢Ì¾Á°¶õ´Ö¤ò¥Ö¥é¥¦¥º¤¹¤ëÊýË¡¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.nf
++\f3
++.fl
++import java.util.Properties;
++.fl
++import org.omg.CORBA.*;
++.fl
++import org.omg.CosNaming.*;
++.fl
++
++.fl
++public class NameClientList
++.fl
++{
++.fl
++ public static void main(String args[])
++.fl
++ {
++.fl
++ try {
++.fl
++\fP
++.fi
++
++.LP
++Á°½Ò¤ÎJava IDL°ì»þ¥Í¡¼¥à¡¦¥µ¡¼¥Ó¥¹¤Îµ¯Æ°¤Ç¡¢¥Í¡¼¥à¡¦¥µ¡¼¥Ð¡¼¤Ï¥Ý¡¼¥È1050¤ò»ÈÍѤ·¤Æµ¯Æ°¤·¤Þ¤·¤¿¡£¼¡¤Î¥³¡¼¥É¤Ç¡¢¤³¤Î¥Ý¡¼¥ÈÈÖ¹æ¤ò¥¯¥é¥¤¥¢¥ó¥È¡¦¥·¥¹¥Æ¥à¤ËÃΤ餻¤Þ¤¹¡£
++.nf
++\f3
++.fl
++
++.fl
++ Properties props = new Properties();
++.fl
++ props.put("org.omg.CORBA.ORBInitialPort", "1050");
++.fl
++ ORB orb = ORB.init(args, props);
++.fl
++
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++¼¡¤Î¥³¡¼¥É¤Ç¤Ï¡¢½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ NamingContext nc =
++.fl
++NamingContextHelper.narrow(orb.resolve_initial_references("NameService"));
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++\f2list\fP¥á¥½¥Ã¥É¤Ï¡¢¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤ò¥ê¥¹¥È¤·¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢ºÇÂç1000¸Ä¤Þ¤Ç¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬½é´ü¥Í¡¼¥ß¥ó¥°¡¦¥³¥ó¥Æ¥­¥¹¥È¤«¤éBindingListHolder¤ËÊÖ¤µ¤ì¤Þ¤¹¡£»Ä¤ê¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ï¡¢BindingIteratorHolder¤ËÊÖ¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ BindingListHolder bl = new BindingListHolder();
++.fl
++ BindingIteratorHolder blIt= new BindingIteratorHolder();
++.fl
++ nc.list(1000, bl, blIt);
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++¼¡¤Î¥³¡¼¥É¤Ç¤Ï¡¢ÊÖ¤µ¤ì¤¿BindingListHolder¤«¤é¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤ÎÇÛÎó¤ò¼èÆÀ¤·¤Þ¤¹¡£¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤¬¤Ê¤¤¾ì¹ç¤Ï¡¢¥×¥í¥°¥é¥à¤¬½ªÎ»¤·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ Binding bindings[] = bl.value;
++.fl
++ if (bindings.length == 0) return;
++.fl
++
++.fl
++\fP
++.fi
++
++.LP
++»Ä¤ê¤Î¥³¡¼¥É¤Ç¤Ï¡¢¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤ËÂФ·¤Æ¥ë¡¼¥×½èÍý¤ò¹Ô¤¤¡¢Ì¾Á°¤ò½ÐÎϤ·¤Þ¤¹¡£
++.nf
++\f3
++.fl
++ for (int i=0; i < bindings.length; i++) {
++.fl
++
++.fl
++ // get the object reference for each binding
++.fl
++ org.omg.CORBA.Object obj = nc.resolve(bindings[i].binding_name);
++.fl
++ String objStr = orb.object_to_string(obj);
++.fl
++ int lastIx = bindings[i].binding_name.length\-1;
++.fl
++
++.fl
++ // check to see if this is a naming context
++.fl
++ if (bindings[i].binding_type == BindingType.ncontext) {
++.fl
++ System.out.println( "Context: " +
++.fl
++bindings[i].binding_name[lastIx].id);
++.fl
++ } else {
++.fl
++ System.out.println("Object: " +
++.fl
++bindings[i].binding_name[lastIx].id);
++.fl
++ }
++.fl
++ }
++.fl
++
++.fl
++ } catch (Exception e) {
++.fl
++ e.printStackTrace(System.err);
++.fl
++ }
++.fl
++ }
++.fl
++}
++.fl
++\fP
++.fi
++
++.LP
++
+--- jdk/src/bsd/doc/man/ja/unpack200.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/unpack200.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,6 +19,160 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH unpack200 1 "07 May 2011"
++.TH unpack200 1 "05 Jul 2012"
+
+ .LP
++.SH "̾Á°"
++unpack200 \- JAR¥¢¥ó¥Ñ¥Ã¥¯¡¦¥Ä¡¼¥ë
++.LP
++.RS 3
++.TP 2
++o
++·Á¼°
++.TP 2
++o
++ÀâÌÀ
++.TP 2
++o
++¥ª¥×¥·¥ç¥ó
++.TP 2
++o
++½ªÎ»¥¹¥Æ¡¼¥¿¥¹
++.TP 2
++o
++´ØÏ¢¹àÌÜ
++.TP 2
++o
++Ãí°Õ
++.RE
++
++.LP
++.SH "·Á¼°"
++.LP
++.LP
++\f4unpack200\fP\f2 [ \fP\f2options\fP ] \f2input\-file\fP \f2JAR\-file\fP
++.LP
++.LP
++¥ª¥×¥·¥ç¥ó¤Î»ØÄê½ç½ø¤Ë·è¤Þ¤ê¤Ï¤¢¤ê¤Þ¤»¤ó¡£¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë»ØÄꤵ¤ì¤¿ºÇ¸å¤Î¥ª¥×¥·¥ç¥ó¤¬¡¢¤½¤ì°ÊÁ°¤Ë»ØÄꤵ¤ì¤¿¤¹¤Ù¤Æ¤Î¥ª¥×¥·¥ç¥ó¤è¤êÍ¥À褵¤ì¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 3
++input\-file
++ÆþÎÏ¥Õ¥¡¥¤¥ë¤Î̾Á°¡£pack200 gzip¥Õ¥¡¥¤¥ë¤«pack200¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤³¤Î¾¤Ë¡¢0¤òÀßÄꤹ¤ì¤Ðpack200(1)¤«¤éºîÀ®¤µ¤ì¤¿JAR¥Õ¥¡¥¤¥ë¤âÆþÎϤȤ·¤Æ»ÈÍѤǤ­¤Þ¤¹¡£¤³¤Î¾ì¹ç¡¢ÆþÎÏ¥Õ¥¡¥¤¥ë¤ÎÆâÍƤ¬Pack200¥Þ¡¼¥«¡¼¤È¤È¤â¤Ë½ÐÎÏJAR¥Õ¥¡¥¤¥ë¤Ë¥³¥Ô¡¼¤µ¤ì¤Þ¤¹¡£
++.TP 3
++JAR\-file
++½ÐÎÏJAR¥Õ¥¡¥¤¥ë̾¡£
++.RE
++
++.LP
++.SH "ÀâÌÀ"
++.LP
++.LP
++\f2unpack200\fP¤Ï¡¢\f2pack200\fP(1)¤ÇºîÀ®¤µ¤ì¤¿¥Ñ¥Ã¥¯¡¦¥Õ¥¡¥¤¥ë¤òJAR¥Õ¥¡¥¤¥ë¤ËÊÑ´¹¤¹¤ë¥Í¥¤¥Æ¥£¥Ö¼ÂÁõ¤Ç¤¹¡£°ìÈÌŪ¤Ê»ÈÍÑÊýË¡:
++.LP
++.LP
++\f2% unpack200 myarchive.pack.gz myarchive.jar\fP
++.LP
++.LP
++¤³¤ÎÎã¤Ç¤Ï¡¢¥Ç¥Õ¥©¥ë¥È¤Î\f2unpack200\fP¤ÎÀßÄê¤Ç¡¢\f2myarchive.pack.gz\fP¤«¤é\f2myarchive.jar\fP¤¬ºîÀ®¤µ¤ì¤Þ¤¹¡£
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.LP
++\f4\-Hvalue \-\-deflate\-hint=\fP\f2value\fP
++.LP
++.LP
++JAR¥Õ¥¡¥¤¥ëÆâ¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤Ë\f2true\fP¡¢\f2false\fP¤Þ¤¿¤Ï\f2keep\fP¤Î¥Ç¥Õ¥ì¡¼¥·¥ç¥ó¤òÀßÄꤷ¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¡¦¥â¡¼¥É¤Ï\f2keep\fP¤Ç¤¹¡£\f2true\fP¤Þ¤¿¤Ï\f2false\fP¾ì¹ç¡¢¥Ç¥Õ¥©¥ë¥È¤ÎÆ°ºî¤ò¥ª¡¼¥Ð¡¼¥é¥¤¥É¤·¤Æ¡¢½ÐÎÏJAR¥Õ¥¡¥¤¥ëÆâ¤Î¤¹¤Ù¤Æ¤Î¥¨¥ó¥È¥ê¤Î¥Ç¥Õ¥ì¡¼¥·¥ç¥ó¡¦¥â¡¼¥É¤¬ÀßÄꤵ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-r \-\-remove\-pack\-file\fP
++.LP
++.LP
++ÆþÎϥѥ寡¦¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹¡£
++.LP
++.LP
++\f4\-v \-\-verbose\fP
++.LP
++.LP
++ºÇ¾®¸Â¤Î¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤òÊ£¿ô»ØÄꤹ¤ë¤È¡¢¤è¤êŤ¤¥á¥Ã¥»¡¼¥¸¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f4\-q \-\-quiet\fP
++.LP
++.LP
++¥á¥Ã¥»¡¼¥¸¤òɽ¼¨¤»¤º¤ËÆ°ºî¤¹¤ë¤è¤¦¤Ë»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f4\-lfilename \-\-log\-file=\fP\f2filename\fP
++.LP
++.LP
++½ÐÎÏ¥á¥Ã¥»¡¼¥¸¤Î¥í¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£
++.LP
++.LP
++\f4\-? \-h \-\-help\fP
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ë´Ø¤¹¤ë¥Ø¥ë¥×¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\f4\-V \-\-version\fP
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤Ë´Ø¤¹¤ë¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£
++.LP
++.LP
++\f4\-J\fP\f2option\fP
++.LP
++.LP
++\f2unpack200\fP¤Ë¤è¤Ã¤Æ¸Æ¤Ó½Ð¤µ¤ì¤ëJavaµ¯Æ°¥Ä¡¼¥ë¤Ë\f2option\fP¤òÅϤ·¤Þ¤¹¡£
++.LP
++.SH "½ªÎ»¥¹¥Æ¡¼¥¿¥¹"
++.LP
++.LP
++¼¡¤Î½ªÎ»Ãͤ¬ÊÖ¤µ¤ì¤Þ¤¹¡£
++.LP
++.LP
++\f2\ 0\fP: Àµ¾ï½ªÎ»¤·¤¿¾ì¹ç
++.LP
++.LP
++\f2>0\fP: ¥¨¥é¡¼¤¬È¯À¸¤·¤¿¾ì¹ç
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++pack200(1)
++.TP 2
++o
++.na
++\f2Java SE¤Î¥É¥­¥å¥á¥ó¥È\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/index.html
++.TP 2
++o
++.na
++\f2Java¥Ç¥×¥í¥¤¥á¥ó¥È¡¦¥¬¥¤¥É \- Pack200\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
++.TP 2
++o
++jar(1) \- Java Archive¥Ä¡¼¥ë
++.TP 2
++o
++jarsigner(1) \- JAR½ð̾¥Ä¡¼¥ë
++.TP 2
++o
++\f2attributes(5)\fP¤Î¥Þ¥Ë¥å¥¢¥ë¡¦¥Ú¡¼¥¸
++.RE
++
++.LP
++.SH "Ãí°Õ"
++.LP
++.LP
++¤³¤Î¥³¥Þ¥ó¥É¤È\f2unpack(1)\fP¤òº®Æ±¤·¤Ê¤¤¤Ç¤¯¤À¤µ¤¤¡£¤³¤ì¤é¤ÏÊÌÀ½ÉʤǤ¹¡£
++.LP
++.LP
++JDK¤ËÉÕ°¤¹¤ëJava SE API»ÅÍͤȤÎÁê°ã¤¬¸«¤Ä¤«¤Ã¤¿¾ì¹ç¤Ë¤Ï¡¢»ÅÍͤòÍ¥À褷¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++
+--- jdk/src/bsd/doc/man/ja/wsgen.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/wsgen.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,4 +19,638 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH wsgen 1 "07 May 2011"
++.TH wsgen 1 "05 Jul 2012"
++.SH "̾Á°"
++wsgen \- XML Web Services(JAX\-WS)2.0¤Î¤¿¤á¤ÎJava(tm)API
++.LP
++\f3»ÅÍͥС¼¥¸¥ç¥ó:\fP 2.1
++.br
++\f3¼ÂÁõ¥Ð¡¼¥¸¥ç¥ó:\fP 2.1.1
++.LP
++\f2wsgen\fP¥Ä¡¼¥ë¤Ï¡¢JAX\-WS Web¥µ¡¼¥Ó¥¹¤Ç»ÈÍѤµ¤ì¤ëJAX\-WS¥Ý¡¼¥¿¥Ö¥ë¡¦¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥Ä¡¼¥ë¤Ï¡¢Web¥µ¡¼¥Ó¥¹¤Î¥¨¥ó¥É¥Ý¥¤¥ó¥È¼ÂÁõ¥¯¥é¥¹(SEI)¤òÆɼè¤ê¡¢Web¥µ¡¼¥Ó¥¹¤Î¥Ç¥×¥í¥¤¥á¥ó¥È¤È¸Æ½Ð¤·¤ËɬÍפʤ¹¤Ù¤Æ¤Î¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¤Þ¤¹¡£
++.SH "³µÍ×"
++.LP
++\f2wsgen\fP¥Ä¡¼¥ë¤Ï¡¢JAX\-WS Web¥µ¡¼¥Ó¥¹¤Ç»ÈÍѤµ¤ì¤ëJAX\-WS¥Ý¡¼¥¿¥Ö¥ë¡¦¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥Ä¡¼¥ë¤Ï¡¢Web¥µ¡¼¥Ó¥¹¤Î¥¨¥ó¥É¥Ý¥¤¥ó¥È¡¦¥¯¥é¥¹¤òÆɼè¤ê¡¢Web¥µ¡¼¥Ó¥¹¤Î¥Ç¥×¥í¥¤¥á¥ó¥È¤È¸Æ½Ð¤·¤ËɬÍפʤ¹¤Ù¤Æ¤Î¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¤Þ¤¹¡£JAXWS 2.1.1 RI¤Ë¤Ïwsgen Ant¥¿¥¹¥¯¤âÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢
++.na
++\f2Wsgen Ant¥¿¥¹¥¯\fP @
++.fi
++https://jax\-ws.dev.java.net/nonav/2.1.1/docs/wsgenant.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.SH "wsgen¤Îµ¯Æ°"
++.RS 3
++.TP 2
++o
++\f3Solaris/Linux\fP
++.RS 3
++.TP 2
++*
++\f2export JAXWS_HOME=/pathto/jaxws\-ri\fP
++.TP 2
++*
++\f2$JAXWS_HOME/bin/wsgen.sh \-help\fP
++.RE
++.TP 2
++o
++\f3Windows\fP
++.RS 3
++.TP 2
++*
++\f2set JAXWS_HOME=c:\\pathto\\jaxws\-ri\fP
++.TP 2
++*
++\f2%JAXWS_HOME%\\bin\\wsgen.bat \-help\fP
++.RE
++.RE
++
++.LP
++.SH "¹½Ê¸"
++.nf
++\f3
++.fl
++wsgen [options] <SEI>\fP
++.br
++\f3
++.fl
++\fP
++.fi
++.LP
++¼¡¤Îɽ¤Ë¡¢\f2wsgen\fP¤Î¥ª¥×¥·¥ç¥ó¤ò¼¨¤·¤Þ¤¹¡£
++.br
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ÆþÎÏ¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¸¡º÷¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f2\-classpath<path>\fP¤ÈƱ¤¸¤Ç¤¹
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ù¥ó¥À¡¼³ÈÄ¥(»ÅÍͤǵ¬Äꤵ¤ì¤Æ¤¤¤Ê¤¤µ¡Ç½)¤òµö²Ä¤·¤Þ¤¹¡£³ÈÄ¥¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î°Ü¿¢À­¤¬¼º¤ï¤ì¤¿¤ê¡¢Â¾¤Î¼ÂÁõ¤È¤ÎÁê¸ß±¿ÍѤ¬¹Ô¤¨¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ø¥ë¥×¤òɽ¼¨¤·¤Þ¤¹
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÝ»ý¤·¤Þ¤¹
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¾ï¤Ë \-wsdl¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹ç¤ï¤Æ»ÈÍѤ·¤Þ¤¹¡£WSDL¤Ê¤É¤ÎÀ¸À®¤µ¤ì¤¿¥ê¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤Î³ÊǼ¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥³¥ó¥Ñ¥¤¥é¤¬¼Â¹Ô¤·¤Æ¤¤¤ë½èÍý¤Ë´Ø¤¹¤ë¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Î¤ß¤¬½ÐÎϤµ¤ì¤Þ¤¹¡£Ä̾ï¤Î½èÍý¤Ï¼Â¹Ô¤µ¤ì¤Þ¤»¤ó¡£
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï\f2wsgen\fP¤ÏWSDL¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤»¤ó¡£¤³¤Î¥Õ¥é¥°¤Ï¾Êά²Äǽ¤Ç¤¹¤¬¡¢»ØÄꤷ¤¿¾ì¹ç¤Ï\f2wsgen\fP¤¬WSDL¥Õ¥¡¥¤¥ë¤òÀ¸À®¤¹¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤Î¥Õ¥é¥°¤ÏÄ̾¥¨¥ó¥É¥Ý¥¤¥ó¥È¤Î¥Ç¥×¥í¥¤Á°¤Ë³«È¯¼Ô¤¬WSDL¤ò»²¾È¤Ç¤­¤ë¤è¤¦¤Ë¤¹¤ë¤¿¤á¤Ë¤Î¤ß»ÈÍѤ·¤Þ¤¹¡£\f2protocol\fP¤Ï¾Êά²Äǽ¤Ç¤¢¤ê¡¢\f2wsdl:binding\fP¤Ç»ÈÍѤ¹¤ë¥×¥í¥È¥³¥ë¤ò»ØÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤµ¤ì¤Þ¤¹¡£Í­¸ú¤Ê¥×¥í¥È¥³¥ë¤Ï\f2soap1.1\fP¤ª¤è¤Ó\f2Xsoap1.2\fP¤Ê¤É¤Ç¤¹¡£¥Ç¥Õ¥©¥ë¥È¤Ï\f2soap1.1\fP¤Ç¤¹¡£\f2Xsoap1.2\fP¤Ïɸ½à¤Ç¤Ï¤Ê¤¤¤¿¤á¡¢\f2\-extension\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Ê¤¤¤È»ÈÍѤǤ­¤Þ¤»¤ó¡£
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¾ï¤Ë\f2\-wsdl\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹¡£WSDLÆâ¤ÇÀ¸À®¤µ¤ì¤ë\f2wsdl:service\fP¤Î̾Á°¤ò»ØÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤ·¤Þ¤¹¡£Îã: \f2\-servicename "{http://mynamespace/}MyService"\fP
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¾ï¤Ë\f2\-wsdl\fP¥ª¥×¥·¥ç¥ó¤ÈÁȤ߹礻¤Æ»ÈÍѤ·¤Þ¤¹¡£WSDLÆâ¤ÇÀ¸À®¤µ¤ì¤ë\f2wsdl:port\fP¤Î̾Á°¤ò»ØÄꤹ¤ë¤¿¤á¤Ë»ÈÍѤ·¤Þ¤¹¡£Îã: \f2\-portname "{http://mynamespace/}MyPort"\fP
++.br
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3¥ª¥×¥·¥ç¥ó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-classpath <path>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-cp <path>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-d <directory>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-extension\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-help\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-keep\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-r <directory>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-s <directory>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-verbose\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-version\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-wsdl[:protocol]\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-servicename <name>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f4\-portname <name>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(g-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(l-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(m-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 137 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3¥ª¥×¥·¥ç¥ó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-classpath <path>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-cp <path>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-d <directory>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-extension\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-help\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-keep\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-r <directory>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(h|u+\n(.Vu
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-s <directory>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-verbose\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-version\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(k|u+\n(.Vu
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-wsdl[:protocol]\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-servicename <name>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(m|u+\n(.Vu
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f4\-portname <name>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-57
++
++.LP
++.SH "Îã"
++.nf
++\f3
++.fl
++\fP\f3wsgen \-d stock \-cp myclasspath stock.StockService\fP
++.fl
++.fi
++.LP
++\f3stock\fP¥Ç¥£¥ì¥¯¥È¥êÆâ¤Ë@WebServiceÃí¼á¤¬ÉÕ¤±¤é¤ì¤¿¡¢StockService¤ËɬÍפʥé¥Ã¥Ñ¡¼¡¦¥¯¥é¥¹¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\fP\f3wsgen \-wsdl \-d stock \-cp myclasspath stock.StockService\fP
++.fl
++.fi
++.LP
++SOAP 1.1 WSDL¤È¡¢@WebServiceÃí¼á¤¬ÉÕ¤±¤é¤ì¤¿Java¥¯¥é¥¹stock.StockService¤Î¥¹¥­¡¼¥Þ¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.nf
++\f3
++.fl
++\fP\f3wsgen \-wsdl:Xsoap1.2 \-d stock \-cp myclasspath stock.StockService\fP
++.fl
++.fi
++.LP
++SOAP 1.2 WSDL¤¬À¸À®¤µ¤ì¤Þ¤¹¡£
++.LP
++¥µ¡¼¥Ó¥¹¤ò¥Ç¥×¥í¥¤¤¹¤ë¤È¤­¤ËJAXWS¥é¥ó¥¿¥¤¥à¤Ë¤è¤Ã¤Æ¼«Æ°Åª¤ËWSDL¤¬À¸À®¤µ¤ì¤ë¤¿¤á¡¢³«È¯»þ¤ËWSDL¤òÀ¸À®¤¹¤ëɬÍפϤ¢¤ê¤Þ¤»¤ó¡£
+--- jdk/src/bsd/doc/man/ja/wsimport.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/wsimport.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,4 +19,1048 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH wsimport 1 "07 May 2011"
++.TH wsimport 1 "05 Jul 2012"
++.SH "̾Á°"
++wsimport \- XML Web Services(JAX\-WS)2.0¤Î¤¿¤á¤ÎJava(tm)API
++.LP
++\f3»ÅÍͥС¼¥¸¥ç¥ó:\fP 2.1
++.br
++\f3¼ÂÁõ¥Ð¡¼¥¸¥ç¥ó:\fP 2.1.1
++.br
++.SH "³µÍ×"
++.LP
++\f2wsimport\fP¥Ä¡¼¥ë¤Ï¡¢¼¡¤Î¤è¤¦¤ÊJAX\-WS¥Ý¡¼¥¿¥Ö¥ë¡¦¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¤Þ¤¹¡£
++.RS 3
++.TP 2
++o
++¥µ¡¼¥Ó¥¹¡¦¥¨¥ó¥É¥Ý¥¤¥ó¥È¡¦¥¤¥ó¥¿¥Õ¥§¡¼¥¹(SEI)
++.TP 2
++o
++¥µ¡¼¥Ó¥¹
++.TP 2
++o
++wsdl:fault¤«¤é¥Þ¥Ã¥×¤µ¤ì¤ëÎã³°¥¯¥é¥¹(¸ºß¤¹¤ë¾ì¹ç)
++.TP 2
++o
++¥ì¥¹¥Ý¥ó¥¹wsdl:message¤«¤éÇÉÀ¸¤¹¤ëÈóƱ´ü¥ì¥¹¥Ý¥ó¥¹Bean(¸ºß¤¹¤ë¾ì¹ç)
++.TP 2
++o
++JAXB¤¬À¸À®¤¹¤ëÃÍ¥¿¥¤¥×(¥¹¥­¡¼¥Þ¤Î¥¿¥¤¥×¤«¤é¥Þ¥Ã¥×¤µ¤ì¤¿Java¥¯¥é¥¹)
++.RE
++.LP
++¤³¤ì¤é¤Î¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤Ï¡¢WSDL¥É¥­¥å¥á¥ó¥È¡¢¥¹¥­¡¼¥Þ¡¦¥É¥­¥å¥á¥ó¥È¡¢¤ª¤è¤Ó¥¨¥ó¥É¥Ý¥¤¥ó¥È¼ÂÁõ¤È¤È¤â¤ËWAR¥Õ¥¡¥¤¥ëÆâ¤Ë¥Ñ¥Ã¥±¡¼¥¸²½¤·¤Æ¥Ç¥×¥í¥¤¤¹¤ë¤³¤È¤¬¤Ç¤­¤Þ¤¹¡£¤Þ¤¿¡¢wsimport Ant¥¿¥¹¥¯¤âÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.na
++\f2wsimport Ant¥¿¥¹¥¯\fP @
++.fi
++https://jax\-ws.dev.java.net/nonav/2.1.1/docs/wsimportant.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++
++.LP
++.SH "wsimport¤Îµ¯Æ°"
++.RS 3
++.TP 2
++o
++\f3Solaris/Linux\fP
++.RS 3
++.TP 2
++*
++\f2/bin/wsimport.sh \-help\fP
++.RE
++.TP 2
++o
++\f3Windows\fP
++.RS 3
++.TP 2
++*
++\f2\\bin\\wsimport.bat \-help\fP
++.RE
++.RE
++
++.LP
++.SH "¹½Ê¸"
++.nf
++\f3
++.fl
++wsimport [options] <wsdl>
++.fl
++\fP
++.fi
++.LP
++¼¡¤Îɽ¤Ë¡¢\f2wsimport\fP¤Î¥ª¥×¥·¥ç¥ó¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤ë½ÐÎÏ¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++³°Éô¤ÎJAX\-WS¤Þ¤¿¤ÏJAXB¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹(\f2<file>\fP¤´¤È¤Ë\f2\-b\fP¤¬É¬Íפˤʤê¤Þ¤¹)
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¤³¤Î¥ª¥×¥·¥ç¥ó¤òJAXB¥¹¥­¡¼¥Þ¡¦¥³¥ó¥Ñ¥¤¥é¤ËÅϤ·¤Þ¤¹
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++³°Éô¥¨¥ó¥Æ¥£¥Æ¥£»²¾È¤ò²ò·è¤¹¤ë¤¿¤á¤Î¥«¥¿¥í¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£TR9401¡¢XCatalog¡¢OASIS XML Catalog¤Î³Æ·Á¼°¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.na
++\f2¥«¥¿¥í¥°\fP @
++.fi
++https://jax\-ws.dev.java.net/nonav/2.1.1/docs/catalog\-support.html¤Î¥É¥­¥å¥á¥ó¥È¤òÆɤó¤Ç¡¢\f3¥«¥¿¥í¥°\fP¤Î¥µ¥ó¥×¥ë¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ù¥ó¥À¡¼³ÈÄ¥(»ÅÍͤǵ¬Äꤵ¤ì¤Æ¤¤¤Ê¤¤µ¡Ç½)¤òµö²Ä¤·¤Þ¤¹¡£³ÈÄ¥¤ò»ÈÍѤ¹¤ë¤È¡¢¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î°Ü¿¢À­¤¬¼º¤ï¤ì¤¿¤ê¡¢Â¾¤Î¼ÂÁõ¤È¤ÎÁê¸ß±¿ÍѤ¬¹Ô¤¨¤Ê¤¯¤Ê¤ë²ÄǽÀ­¤¬¤¢¤ê¤Þ¤¹
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ø¥ë¥×¤òɽ¼¨¤·¤Þ¤¹
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di g+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3\-httpproxy:<host>:<port> \fP
++.br
++.di
++.nr g| \n(dn
++.nr g- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di h+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++HTTP¥×¥í¥­¥·¡¦¥µ¡¼¥Ð¡¼¤ò»ØÄꤷ¤Þ¤¹(¥Ç¥Õ¥©¥ë¥È¤Î¥Ý¡¼¥È¤Ï8080¤Ç¤¹)
++.br
++.di
++.nr h| \n(dn
++.nr h- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di i+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤òÊÝ»ý¤·¤Þ¤¹
++.br
++.di
++.nr i| \n(dn
++.nr i- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di j+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¤³¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó·Ðͳ¤Ç¥¿¡¼¥²¥Ã¥È¡¦¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ËÂФ¹¤ë¤¹¤Ù¤Æ¤ÎWSDL/¥¹¥­¡¼¥Þ¡¦¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Î¥«¥¹¥¿¥Þ¥¤¥º¤ä¡¢»ÅÍͤǵ¬Äꤵ¤ì¤Æ¤¤¤ë¥Ç¥Õ¥©¥ë¥È¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¥¢¥ë¥´¥ê¥º¥à¤è¤ê¤â¡¢¤½¤Î»ØÄ꤬ͥÀ褵¤ì¤Þ¤¹
++.br
++.di
++.nr j| \n(dn
++.nr j- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di k+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤ë¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò³ÊǼ¤¹¤ë¾ì½ê¤ò»ØÄꤷ¤Þ¤¹
++.br
++.di
++.nr k| \n(dn
++.nr k- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di l+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥³¥ó¥Ñ¥¤¥é¤¬¼Â¹Ô¤·¤Æ¤¤¤ë½èÍý¤Ë´Ø¤¹¤ë¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤Þ¤¹
++.br
++.di
++.nr l| \n(dn
++.nr l- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di m+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹
++.br
++.di
++.nr m| \n(dn
++.nr m- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di n+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3\-wsdllocation <location>\fP
++.br
++.di
++.nr n| \n(dn
++.nr n- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di o+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++\f2@WebServiceClient.wsdlLocation\fPÃÍ
++.br
++.di
++.nr o| \n(dn
++.nr o- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di p+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++»ØÄꤵ¤ì¤¿JAX\-WS»ÅÍͥС¼¥¸¥ç¥ó¤Ë½¾¤Ã¤Æ¥³¡¼¥É¤òÀ¸À®¤·¤Þ¤¹¡£¥Ð¡¼¥¸¥ç¥ó2.0¤Ç¤Ï¡¢JAX\-WS 2.0»ÅÍͤ˽àµò¤·¤¿¥³¡¼¥É¤¬À¸À®¤µ¤ì¤Þ¤¹
++.br
++.di
++.nr p| \n(dn
++.nr p- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di q+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++wsimport½ÐÎϤòÍÞÀ©¤·¤Þ¤¹
++.br
++.di
++.nr q| \n(dn
++.nr q- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3¥ª¥×¥·¥ç¥ó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-d <directory> \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-b <path> \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-B <jaxbOption>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-catalog\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-extension \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-help \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-keep \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-p \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-s <directory> \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-verbose \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-version \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-target \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-quiet \fP
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 38 \n(g-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \n(n-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(d-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(h-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(i-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(j-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(k-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(l-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(m-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(o-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(p-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(q-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 163 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3¥ª¥×¥·¥ç¥ó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-d <directory> \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-b <path> \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-B <jaxbOption>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-catalog\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(e|u+\n(.Vu
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-extension \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-help \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(g|u+\n(.Vu
++.ne \n(h|u+\n(.Vu
++.if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
++.if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.g+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.h+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(i|u+\n(.Vu
++.if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-keep \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.i+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(j|u+\n(.Vu
++.if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-p \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.j+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(k|u+\n(.Vu
++.if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-s <directory> \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.k+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(l|u+\n(.Vu
++.if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-verbose \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.l+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(m|u+\n(.Vu
++.if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-version \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.m+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(n|u+\n(.Vu
++.ne \n(o|u+\n(.Vu
++.if (\n(n|+\n(#^-1v)>\n(#- .nr #- +(\n(n|+\n(#^-\n(#--1v)
++.if (\n(o|+\n(#^-1v)>\n(#- .nr #- +(\n(o|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.n+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.o+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(p|u+\n(.Vu
++.if (\n(p|+\n(#^-1v)>\n(#- .nr #- +(\n(p|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-target \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.p+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(q|u+\n(.Vu
++.if (\n(q|+\n(#^-1v)>\n(#- .nr #- +(\n(q|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-quiet \fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.q+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.rm g+
++.rm h+
++.rm i+
++.rm j+
++.rm k+
++.rm l+
++.rm m+
++.rm n+
++.rm o+
++.rm p+
++.rm q+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-72
++.LP
++\f2\-b\fP¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ·¤Æ¡¢Ê£¿ô¤ÎJAX\-WS¤ª¤è¤ÓJAXB¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£¤³¤ì¤é¤Î¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ·¤Æ¡¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤äBean̾¤Ê¤É¡¢ÍÍ¡¹¤Ê¤â¤Î¤ò¥«¥¹¥¿¥Þ¥¤¥º¤Ç¤­¤Þ¤¹¡£JAX\-WS¤ª¤è¤ÓJAXB¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤Î¾ÜºÙ¤Ï¡¢
++.na
++\f2¥«¥¹¥¿¥Þ¥¤¥º¡¦¥Þ¥Ë¥å¥¢¥ë\fP @
++.fi
++https://jax\-ws.dev.java.net/nonav/2.1.1/docs/customizations.html¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++¼¡¤Îɽ¤Ë¡¢\f2wsimport\fP¤ÎÈóɸ½à¥ª¥×¥·¥ç¥ó¤ò¼¨¤·¤Þ¤¹¡£
++.LP
++.TS
++.if \n+(b.=1 .nr d. \n(.c-\n(c.-1
++.de 35
++.ps \n(.s
++.vs \n(.vu
++.in \n(.iu
++.if \n(.u .fi
++.if \n(.j .ad
++.if \n(.j=0 .na
++..
++.nf
++.nr #~ 0
++.if n .nr #~ 0.6n
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.fc
++.nr 33 \n(.s
++.rm 80 81
++.nr 34 \n(.lu
++.eo
++.am 81
++.br
++.di a+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥ê¥¯¥¨¥¹¥È¤Þ¤¿¤Ï¥ì¥¹¥Ý¥ó¥¹¡¦¥á¥Ã¥»¡¼¥¸¤Ë¥Ð¥¤¥ó¥É¤µ¤ì¤Ê¤¤¥Ø¥Ã¥À¡¼¤òJava¥á¥½¥Ã¥É¤Î¥Ñ¥é¥á¡¼¥¿¤Ë¥Þ¥Ã¥×¤·¤Þ¤¹
++.br
++.di
++.nr a| \n(dn
++.nr a- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di b+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++ǧ¾Ú¾ðÊó¤ò´Þ¤à¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ëWSDL URI¤Ç¤¹¡£¤³¤ÎURI¤Î·Á¼°¤Ï¼¡¤Î¤È¤ª¤ê¤Ç¤¹ http://\f2<user name>\fP:\f2<password>\fP@\f2<host name>\fP/\f2<Web service name>\fP?wsdl
++.br
++.di
++.nr b| \n(dn
++.nr b- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di c+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++¥Ç¥Ð¥Ã¥°¾ðÊó¤ò½ÐÎϤ·¤Þ¤¹
++.br
++.di
++.nr c| \n(dn
++.nr c- \n(dl
++..
++.ec \
++.eo
++.am 80
++.br
++.di d+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(80 .ll \n(80u
++.in 0
++\f3\-Xno\-addressing\-databinding\fP
++.br
++.di
++.nr d| \n(dn
++.nr d- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di e+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++W3C \f2EndpointReferenceType\fP¤ÈJava¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤òÍ­¸ú¤Ë¤·¤Þ¤¹
++.br
++.di
++.nr e| \n(dn
++.nr e- \n(dl
++..
++.ec \
++.eo
++.am 81
++.br
++.di f+
++.35
++.ft \n(.f
++.ll \n(34u*1u/3u
++.if \n(.l<\n(81 .ll \n(81u
++.in 0
++À¸À®¤µ¤ì¤¿Java¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤»¤ó
++.br
++.di
++.nr f| \n(dn
++.nr f- \n(dl
++..
++.ec \
++.35
++.nf
++.ll \n(34u
++.nr 80 0
++.nr 38 \w\f3¥ª¥×¥·¥ç¥ó\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-XadditionalHeaders\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-Xauthfile <file>\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-Xdebug\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 38 \w\f3\-Xnocompile\fP
++.if \n(80<\n(38 .nr 80 \n(38
++.80
++.rm 80
++.nr 38 \n(d-
++.if \n(80<\n(38 .nr 80 \n(38
++.nr 81 0
++.nr 38 \w\f3ÀâÌÀ\fP
++.if \n(81<\n(38 .nr 81 \n(38
++.81
++.rm 81
++.nr 38 \n(a-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(b-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(c-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(e-
++.if \n(81<\n(38 .nr 81 \n(38
++.nr 38 \n(f-
++.if \n(81<\n(38 .nr 81 \n(38
++.35
++.nf
++.ll \n(34u
++.nr 38 1n
++.nr 79 0
++.nr 40 \n(79+(0*\n(38)
++.nr 80 +\n(40
++.nr 41 \n(80+(3*\n(38)
++.nr 81 +\n(41
++.nr TW \n(81
++.if t .if \n(TW>\n(.li .tm Table at line 199 file Input is too wide - \n(TW units
++.fc  
++.nr #T 0-1
++.nr #a 0-1
++.eo
++.de T#
++.ds #d .d
++.if \(ts\n(.z\(ts\(ts .ds #d nl
++.mk ##
++.nr ## -1v
++.ls 1
++.ls
++..
++.ec
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3¥ª¥×¥·¥ç¥ó\fP\h'|\n(41u'\f3ÀâÌÀ\fP
++.ne \n(a|u+\n(.Vu
++.if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-XadditionalHeaders\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.a+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(b|u+\n(.Vu
++.if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-Xauthfile <file>\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.b+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(c|u+\n(.Vu
++.if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-Xdebug\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.c+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(d|u+\n(.Vu
++.ne \n(e|u+\n(.Vu
++.if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
++.if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(40u
++.in +\n(37u
++.d+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.e+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.ne \n(f|u+\n(.Vu
++.if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
++.ta \n(80u \n(81u
++.nr 31 \n(.f
++.nr 35 1m
++\&\h'|\n(40u'\f3\-Xnocompile\fP\h'|\n(41u'
++.mk ##
++.nr 31 \n(##
++.sp |\n(##u-1v
++.nr 37 \n(41u
++.in +\n(37u
++.f+
++.in -\n(37u
++.mk 32
++.if \n(32>\n(31 .nr 31 \n(32
++.sp |\n(31u
++.fc
++.nr T. 1
++.T# 1
++.35
++.rm a+
++.rm b+
++.rm c+
++.rm d+
++.rm e+
++.rm f+
++.TE
++.if \n-(b.=0 .nr c. \n(.c-\n(d.-26
++
++.LP
++.SH "Îã"
++.nf
++\f3
++.fl
++\fP\f3wsimport \-p stockquote http://stockquote.example.com/quote?wsdl\fP
++.fl
++.fi
++.LP
++Java¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤òÀ¸À®¤·¡¢\f2http://stockquote.example.com/quote?wsdl\fP¤ò¥¤¥ó¥Ý¡¼¥È¤·¤Æ¤½¤ÎJava¥¢¡¼¥Æ¥£¥Õ¥¡¥¯¥È¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹
++.br
++
+--- jdk/src/bsd/doc/man/ja/xjc.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/ja/xjc.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,279 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH xjc 1 "07 May 2011"
++.TH xjc 1 "05 Jul 2012"
+
+ .LP
+-.ad c
++.SH "̾Á°"
++xjc \- XML¥Ð¥¤¥ó¥É¤Î¤¿¤á¤ÎJava(tm)¥¢¡¼¥­¥Æ¥¯¥Á¥ã
++.br
++¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é
++.LP
++.LP
++\f3»ÅÍͥС¼¥¸¥ç¥ó:\fP 2.1
++.br
++\f3¥ê¥Õ¥¡¥ì¥ó¥¹¼ÂÁõ(RI)¥Ð¡¼¥¸¥ç¥ó:\fP 2.1.3
++.LP
++.SH "xjc¤Îµ¯Æ°"
++.LP
++.LP
++¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤òµ¯Æ°¤¹¤ë¤Ë¤Ï¡¢»ÈÍѤ¹¤ë¥×¥é¥Ã¥È¥Õ¥©¡¼¥à¤Ë±þ¤¸¤¿\f2bin\fP¥Ç¥£¥ì¥¯¥È¥êÆâ¤Î\f2xjc\fP¥·¥§¥ë¡¦¥¹¥¯¥ê¥×¥È¤ò»ÈÍѤ·¤Þ¤¹¡£¤Þ¤¿¡¢¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤ò¼Â¹Ô¤¹¤ë¤¿¤á¤ÎAnt¥¿¥¹¥¯¤âÍÑ°Õ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.na
++\f2XJC Ant¥¿¥¹¥¯¤Î»ÈÍÑ\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/xjcTask.html¤Î¼ê½ç¤ò»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£
++.LP
++.LP
++\f2% xjc \-help\fP
++.LP
++.SS
++½ÐÎÏ
++.LP
++.nf
++\f3
++.fl
++Usage: xjc [\-options ...] <schema file/URL/dir/jar> ... [\-b <bindinfo>] ...
++.fl
++If dir is specified, all schema files in it will be compiled.
++.fl
++If jar is specified, /META\-INF/sun\-jaxb.episode binding file will be compiled.
++.fl
++Options:
++.fl
++ \-nv : do not perform strict validation of the input schema(s)
++.fl
++ \-extension : allow vendor extensions \- do not strictly follow the Compatibility Rules and App E.2 from the JAXB Spec
++.fl
++ \-b <file/dir> : specify external bindings files (each <file> must have its own \-b); if a directory is given, **/*.xjb is searched
++.fl
++ \-d <dir> : generated files will go into this directory
++.fl
++ \-p <pkg> : specifies the target package
++.fl
++ \-httpproxy <proxy> : set HTTP/HTTPS proxy; format is [user[:password]@]proxyHost:proxyPort
++.fl
++ \-httpproxyfile <f> : works like \-httpproxy but takes the argument in a file to protect password
++.fl
++ \-classpath <arg> : specify where to find user class files
++.fl
++ \-catalog <file> : specify catalog files to resolve external entity references; support TR9401, XCatalog, and OASIS XML Catalog format
++.fl
++ \-readOnly : generated files will be in read\-only mode
++.fl
++ \-npa : suppress generation of package level annotations (**/package\-info.java)
++.fl
++ \-no\-header : suppress generation of a file header with timestamp
++.fl
++ \-target 2.0 : behave like XJC 2.0 and generate code that doesnt use any 2.1 features
++.fl
++ \-xmlschema : treat input as W3C XML Schema (default)
++.fl
++ \-relaxng : treat input as RELAX NG (experimental,unsupported)
++.fl
++ \-relaxng\-compact : treat input as RELAX NG compact syntax (experimental,unsupported)
++.fl
++ \-dtd : treat input as XML DTD (experimental,unsupported)
++.fl
++ \-wsdl : treat input as WSDL and compile schemas inside it (experimental,unsupported)
++.fl
++ \-verbose : be extra verbose
++.fl
++ \-quiet : suppress compiler output
++.fl
++ \-help : display this help message
++.fl
++ \-version : display version information
++.fl
++
++.fl
++
++.fl
++Extensions:
++.fl
++ \-Xlocator : enable source location support for generated code
++.fl
++ \-Xsync\-methods : generate accessor methods with the 'synchronized' keyword
++.fl
++ \-mark\-generated : mark the generated code as @javax.annotation.Generated
++.fl
++ \-episode <FILE> : generate the episode file for separate compilation
++.fl
++\fP
++.fi
++
++.LP
++.SH "¥ª¥×¥·¥ç¥ó"
++.LP
++.RS 3
++.TP 3
++\-nv
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¥½¡¼¥¹¡¦¥¹¥­¡¼¥Þ¤ò½èÍý¤¹¤ëÁ°¤Ë¸·Ì©¤Ê¸¡¾Ú¤ò¼Â¹Ô¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢¸·Ì©¤Ê¥¹¥­¡¼¥Þ¸¡¾Ú¤«Ìµ¸ú¤Ë¤Ê¤ê¤Þ¤¹¡£¤³¤ì¤Ï¡¢¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤¬¸¡¾Ú¤ò°ìÀڼ¹Ԥ·¤Ê¤¤¤È¤¤¤¦¤³¤È¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£¤è¤ê¸·Ì©¤Ç¤Ê¤¤¸¡¾Ú¤ò¼Â¹Ô¤¹¤ë¤È¤¤¤¦¤³¤È¤Ç¤¹¡£
++.TP 3
++\-extension
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤Ï¡¢JAXB»ÅÍͤÎCompatibility¤Î¾Ï¤ÇÀâÌÀ¤µ¤ì¤Æ¤¤¤ë¥ë¡¼¥ë¤ò¸·Ì©¤Ë¶¯À©¤·¤Þ¤¹¡£ÉÕÏ¿E.2¤Ë¤Ï¡¢JAXB v1.0¤Ç´°Á´¤Ë¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤°ìÏ¢¤ÎW3C XML¥¹¥­¡¼¥Þµ¡Ç½¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£¾ì¹ç¤Ë¤è¤Ã¤Æ¤Ï¡¢¤³¤Î¥¹¥¤¥Ã¥Á¤ÇÍ­¸ú¤Ë¤Ê¤ë¡Ö\-extension¡×¥â¡¼¥É¤Ç¤½¤ì¤é¤Îµ¡Ç½¤¬»ÈÍѤǤ­¤ë¾ì¹ç¤¬¤¢¤ê¤Þ¤¹¡£¤Þ¤¿¡¢¥Ç¥Õ¥©¥ë¥È¤Î¸·Ì©¤Ê¥â¡¼¥É¤Ç¤Ï¡¢»ÅÍͤËÄêµÁ¤µ¤ì¤Æ¤¤¤ë¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥«¥¹¥¿¥Þ¥¤¥º¤Î¤ß¤¬»ÈÍѤǤ­¤Þ¤¹¡£¡Ö\-extension¡×¥¹¥¤¥Ã¥Á¤ò»ØÄꤹ¤ì¤Ð¡¢JAXB Vendor Extension¤ò»ÈÍѤǤ­¤Þ¤¹¡£
++.TP 3
++\-b <file>
++½èÍý¤¹¤ë³°Éô¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤ò1¤Ä¤Þ¤¿¤ÏÊ£¿ô»ØÄꤷ¤Þ¤¹¡£(¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤´¤È¤Ë\f2¡Ö\-b¡×\fP¥¹¥¤¥Ã¥Á¤ò»ØÄꤹ¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£)³°Éô¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤Î¹½Ê¸¤ÏÈó¾ï¤Ë½ÀÆð¤Ç¤¹¡£Ê£¿ô¤Î¥¹¥­¡¼¥Þ¤Î¥«¥¹¥¿¥Þ¥¤¥º¤¬´Þ¤Þ¤ì¤ë1¤Ä¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ÈÍѤ·¤¿¤ê¡¢¤½¤ì¤é¤Î¥«¥¹¥¿¥Þ¥¤¥º¤òÊ£¿ô¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤Ëʬ³ä¤·¤¿¤ê¤Ç¤­¤Þ¤¹¡£¼¡¤ËÎã¤ò¼¨¤·¤Þ¤¹¡£\f2xjc schema1.xsd schema2.xsd schema3.xsd \-b bindings123.xjb\fP
++.br
++\f2xjc schema1.xsd schema2.xsd schema3.xsd \-b bindings1.xjb \-b bindings2.xjb \-b bindings3.xjb\fP¤Þ¤¿¡¢¥³¥Þ¥ó¥É¥é¥¤¥ó¤Ë¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤È¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤹ¤ë½çÈÖ¤ÏǤ°Õ¤Ç¤¹¡£
++.TP 3
++\-d <dir>
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤Ï¡¢Java¥³¥ó¥Æ¥ó¥Ä¡¦¥¯¥é¥¹¤ò¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ËÀ¸À®¤·¤Þ¤¹¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢ÂåÂؽÐÎϥǥ£¥ì¥¯¥È¥ê¤ò»ØÄê¤Ç¤­¤Þ¤¹¡£½ÐÎϥǥ£¥ì¥¯¥È¥ê¤Ï¤¢¤é¤«¤¸¤á¸ºß¤·¤Æ¤¤¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤Ï¡¢¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ò¼«Æ°Åª¤ËºîÀ®¤·¤Þ¤»¤ó¡£
++.TP 3
++\-p <pkg>
++¤³¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó·Ðͳ¤Ç¥¿¡¼¥²¥Ã¥È¡¦¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤¿¾ì¹ç¡¢¤½¤Î»ØÄêÆâÍƤϡ¢¥Ñ¥Ã¥±¡¼¥¸Ì¾¤ËÂФ¹¤ë¤¹¤Ù¤Æ¤Î¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥«¥¹¥¿¥Þ¥¤¥º¤ä¡¢»ÅÍͤǵ¬Äꤵ¤ì¤Æ¤¤¤ë¥Ç¥Õ¥©¥ë¥È¤Î¥Ñ¥Ã¥±¡¼¥¸Ì¾¥¢¥ë¥´¥ê¥º¥à¤è¤ê¤âÍ¥À褵¤ì¤Þ¤¹¡£
++.TP 3
++\-httpproxy <proxy>
++HTTP/HTTPS¥×¥í¥­¥·¤ò»ØÄꤷ¤Þ¤¹¡£·Á¼°¤Ï[user[:password]@]proxyHost[:proxyPort]¤Ç¤¹¡£½¾Íè¤Î\f2\-host\fP¤ª¤è¤Ó\f2\-port\fP¤Ï¡¢²¼°Ì¸ß´¹À­¤Î¤¿¤á¤Ë¥ê¥Õ¥¡¥ì¥ó¥¹¼ÂÁõ(RI)¤Ç¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¿ä¾©¤µ¤ì¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤Ç»ØÄꤵ¤ì¤¿¥Ñ¥¹¥ï¡¼¥É¤Ï¡¢\f2top\fP¥³¥Þ¥ó¥É¤ò»ÈÍѤ¹¤ë¥æ¡¼¥¶¡¼¤Ê¤É¡¢Â¾¤Î¥æ¡¼¥¶¡¼¤¬É½¼¨¤Ç¤­¤ë°ú¿ô¤Ç¤¢¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¥»¥­¥å¥ê¥Æ¥£¤ò¹â¤á¤ë¤Ë¤Ï¡¢¼¡¤Î\f2\-httpproxyfile\fP¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-httpproxyfile <file>
++HTTP/HTTPS¥×¥í¥­¥·¤ò¥Õ¥¡¥¤¥ë·Ðͳ¤Ç»ØÄꤷ¤Þ¤¹¡£·Á¼°¤ÏÁ°½Ò¤Î¤â¤Î¤ÈƱ¤¸¤Ç¤¹¤¬¡¢¤³¤Î¥Õ¥¡¥¤¥ëÆâ¤Ë»ØÄꤵ¤ì¤¿¥Ñ¥¹¥ï¡¼¥É¤ò¾¤Î¥æ¡¼¥¶¡¼¤¬É½¼¨¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.TP 3
++\-classpath <arg>
++\f2<jxb:javaType>\fP¤ª¤è¤Ó\f2<xjc:superClass>\fP¥«¥¹¥¿¥Þ¥¤¥º¤¬»ÈÍѤ¹¤ë¥¯¥é¥¤¥¢¥ó¥È¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤Î¥¯¥é¥¹¡¦¥Õ¥¡¥¤¥ë¤Î¸¡º÷¾ì½ê¤ò»ØÄꤷ¤Þ¤¹¡£
++.TP 3
++\-catalog <file>
++³°Éô¥¨¥ó¥Æ¥£¥Æ¥£»²¾È¤ò²ò·è¤¹¤ë¥«¥¿¥í¥°¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£TR9401¡¢XCatalog¤ª¤è¤ÓOASIS XML Catalog·Á¼°¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¡£¾ÜºÙ¤Ï¡¢XML Entity and URI Resolvers¤Î¥É¥­¥å¥á¥ó¥È¤ò»²¾È¤¹¤ë¤«¡¢\f2catalog\-resolver\fP¥µ¥ó¥×¥ë¡¦¥¢¥×¥ê¥±¡¼¥·¥ç¥ó¤òÄ´¤Ù¤Æ¤¯¤À¤µ¤¤¡£
++.TP 3
++\-readOnly
++¥Ç¥Õ¥©¥ë¥È¤Ç¤Ï¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤Ï¡¢À¸À®¤¹¤ëJava¥½¡¼¥¹¡¦¥Õ¥¡¥¤¥ë¤ò½ñ¹þ¤ß¤«¤éÊݸ¤Þ¤»¤ó¡£¤³¤Î¥ª¥×¥·¥ç¥ó¤ò»ÈÍѤ¹¤ë¤È¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤ÏÀ¸À®¤µ¤ì¤ëJava¥½¡¼¥¹¤ò¶¯À©Åª¤ËÆɼè¤êÀìÍѤˤ·¤Þ¤¹¡£
++.TP 3
++\-npa
++¥Ñ¥Ã¥±¡¼¥¸¡¦¥ì¥Ù¥ë¤ÎÃí¼á¤ò**/package\-info.java¤ËÀ¸À®¤¹¤ë¤³¤È¤òÍÞÀ©¤·¤Þ¤¹¡£¤³¤Î¥¹¥¤¥Ã¥Á¤ò»ÈÍѤ·¤ÆÀ¸À®¤¹¤ë¥³¡¼¥É¤Ç¤Ï¡¢¤³¤ì¤é¤ÎÃí¼á¤¬Â¾¤ÎÀ¸À®ºÑ¤ß¥¯¥é¥¹¤ËÆâÉô²½¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-no\-header
++¿¾¯¤Î¥á¥â¤È¥¿¥¤¥à¥¹¥¿¥ó¥×¤ò´Þ¤à¥Õ¥¡¥¤¥ë¡¦¥Ø¥Ã¥À¡¼¡¦¥³¥á¥ó¥È¤ÎÀ¸À®¤òÍÞÀ©¤·¤Þ¤¹¡£¤³¤ì¤ò»ÈÍѤ¹¤ë¤È¡¢À¸À®¤µ¤ì¤¿¥³¡¼¥É¤Çdiff¤ò»ÈÍѤ·¤ä¤¹¤¯¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-target 2.0
++JAXB 2.1µ¡Ç½¤Ë°Í¸¤¹¤ë¥³¡¼¥É¤òÀ¸À®¤·¤Ê¤¤¤è¤¦¤Ë¤·¤Þ¤¹¡£¤³¤ì¤Ë¤è¤ê¡¢À¸À®¤µ¤ì¤¿¥³¡¼¥É¤òJAXB 2.0¥é¥ó¥¿¥¤¥à(JavaSE 6¤Ê¤É)¤Ç¼Â¹Ô¤Ç¤­¤ë¤è¤¦¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-xmlschema
++ÆþÎÏ¥¹¥­¡¼¥Þ¤òW3C XML¥¹¥­¡¼¥Þ¤È¤·¤Æ°·¤¤¤Þ¤¹(¥Ç¥Õ¥©¥ë¥È)¡£¤³¤Î¥¹¥¤¥Ã¥Á¤ò»ØÄꤷ¤Ê¤¯¤Æ¤â¡¢ÆþÎÏ¥¹¥­¡¼¥Þ¤ÏW3C XML¥¹¥­¡¼¥Þ¤È¸«¤Ê¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-relaxng
++ÆþÎÏ¥¹¥­¡¼¥Þ¤òRELAX NG¤È¤·¤Æ°·¤¤¤Þ¤¹(»î¸³Åª¡¢Ì¤¥µ¥Ý¡¼¥È)¡£RELAX NG¥¹¥­¡¼¥Þ¤Î¥µ¥Ý¡¼¥È¤ÏJAXB Vendor Extension¤È¤·¤ÆÄ󶡤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++\-relaxng\-compact
++ÆþÎÏ¥¹¥­¡¼¥Þ¤òRELAX NG°µ½Ì¹½Ê¸¤È¤·¤Æ½èÍý¤·¤Þ¤¹(»î¸³Åª¡¢Ì¤¥µ¥Ý¡¼¥È)¡£RELAX NG¥¹¥­¡¼¥Þ¤Î¥µ¥Ý¡¼¥È¤ÏJAXB Vendor Extension¤È¤·¤ÆÄ󶡤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++\-dtd
++ÆþÎÏ¥¹¥­¡¼¥Þ¤òXML DTD¤È¤·¤Æ°·¤¤¤Þ¤¹(»î¸³Åª¡¢Ì¤¥µ¥Ý¡¼¥È)¡£RELAX NG¥¹¥­¡¼¥Þ¤Î¥µ¥Ý¡¼¥È¤ÏJAXB Vendor Extension¤È¤·¤ÆÄ󶡤µ¤ì¤Æ¤¤¤Þ¤¹¡£
++.TP 3
++\-wsdl
++ÆþÎϤòWSDL¤È¤·¤Æ°·¤¤¡¢¤½¤ÎÆâÉô¤Î¥¹¥­¡¼¥Þ¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹(»î¸³Åª¡¢Ì¤¥µ¥Ý¡¼¥È)¡£
++.TP 3
++\-quiet
++¿ÊĽ¾ðÊó¤ä·Ù¹ð¤Ê¤É¡¢¥³¥ó¥Ñ¥¤¥é¤Î½ÐÎϤòÍÞÀ©¤·¤Þ¤¹¡£
++.TP 3
++\-verbose
++¾ðÊó¥á¥Ã¥»¡¼¥¸¤ò½ÐÎϤ·¤¿¤êÆÃÄê¤Î¥¨¥é¡¼È¯À¸»þ¤Ë¥¹¥¿¥Ã¥¯¡¦¥È¥ì¡¼¥¹¤òɽ¼¨¤·¤¿¤ê¤¹¤ë¤Ê¤É¡¢¤­¤ï¤á¤Æ¾éĹ¤Ë¤Ê¤ê¤Þ¤¹¡£
++.TP 3
++\-help
++¥³¥ó¥Ñ¥¤¥é¡¦¥¹¥¤¥Ã¥Á¤Î³µÍפòɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++\-version
++¥³¥ó¥Ñ¥¤¥é¤Î¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òɽ¼¨¤·¤Þ¤¹¡£
++.TP 3
++<schema file/URL/dir>
++¥³¥ó¥Ñ¥¤¥ëÂоݤȤʤë1¤Ä¤Þ¤¿¤ÏÊ£¿ô¤Î¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤ò»ØÄꤷ¤Þ¤¹¡£¥æ¡¼¥¶¡¼¤¬¥Ç¥£¥ì¥¯¥È¥ê¤ò»ØÄꤷ¤¿¾ì¹ç¡¢xjc¤Ï¤½¤Î¥Ç¥£¥ì¥¯¥È¥ê¤òÁöºº¤·¡¢¤½¤³¤Ç¸«¤Ä¤«¤Ã¤¿¤¹¤Ù¤Æ¤Î¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤ò¥³¥ó¥Ñ¥¤¥ë¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++Èóɸ½à¤Î¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-Xlocator
++À¸À®¤µ¤ì¤¿¥³¡¼¥É¤Ç¤Ï¡¢ÈóÀ°Î󲽤θå¤ËJava Bean¥¤¥ó¥¹¥¿¥ó¥¹¤Ë´Þ¤Þ¤ì¤ë¥½¡¼¥¹XML¤Ë´Ø¤¹¤ëSAX Locator¾ðÊ󤬸ø³«¤µ¤ì¤Þ¤¹¡£
++.TP 3
++\-Xsync\-methods
++À¸À®¤µ¤ì¤¿¤¹¤Ù¤Æ¤Î¥á¥½¥Ã¥É¡¦¥·¥°¥Ë¥Á¥ã¤Ë\f2synchronized\fP¥­¡¼¥ï¡¼¥É¤¬´Þ¤á¤é¤ì¤Þ¤¹¡£
++.TP 3
++\-mark\-generated
++À¸À®¤µ¤ì¤¿¥³¡¼¥É¤ËÃí¼á\f2@javax.annotation.Generated\fP¤òÉÕ¤±¤Þ¤¹¡£
++.TP 3
++\-episode <file>
++¥³¥ó¥Ñ¥¤¥ë¤´¤È¤Ë»ØÄꤵ¤ì¤¿¥¨¥Ô¥½¡¼¥É¡¦¥Õ¥¡¥¤¥ë¤òÀ¸À®¤·¤Þ¤¹¡£
++.RE
++
++.LP
++.SS
++Èó¿ä¾©¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤ª¤è¤Óºï½ü¤µ¤ì¤¿¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó
++.LP
++.RS 3
++.TP 3
++\-host & \-port
++¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤ÏÈó¿ä¾©¤È¤Ê¤ê¡¢\f3\-httpproxy\fP¥ª¥×¥·¥ç¥ó¤ÇÃÖ¤­´¹¤¨¤é¤ì¤Þ¤·¤¿¡£¤³¤ì¤é¤Î¥ª¥×¥·¥ç¥ó¤Ï¡¢²¼°Ì¸ß´¹À­¤ò³ÎÊݤ¹¤ëÌÜŪ¤Ç°ú³¤­¥µ¥Ý¡¼¥È¤µ¤ì¤Þ¤¹¤¬¡¢¥É¥­¥å¥á¥ó¥È¤Ë¤Ïµ­ºÜ¤µ¤ì¤º¡¢¾­Íè¤Î¥ê¥ê¡¼¥¹¤Çºï½ü¤µ¤ì¤ë²ÄǽÀ­¤â¤¢¤ê¤Þ¤¹¡£
++.TP 3
++\-use\-runtime
++JAXB 2.0»ÅÍͤǤϡ¢°Ü¿¢À­¤Î¤¢¤ë¥é¥ó¥¿¥¤¥à¤¬ÄêµÁ¤µ¤ì¤¿¤¿¤á¡¢JAXB RI¤¬**/impl/runtime¥Ñ¥Ã¥±¡¼¥¸¤òÀ¸À®¤¹¤ëɬÍפ¬¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿¡£¤³¤Î¤¿¤á¡¢¤³¤Î¥¹¥¤¥Ã¥Á¤ÏÉÔÍפȤʤꡢºï½ü¤µ¤ì¤Þ¤·¤¿¡£
++.TP 3
++\-source
++\-source¸ß´¹À­¥¹¥¤¥Ã¥Á¤Ï¡¢JAXB 2.0¤ÎºÇ½é¤ÎEarly AccessÈǤÇƳÆþ¤µ¤ì¤Þ¤·¤¿¡£¤³¤Î¥¹¥¤¥Ã¥Á¤Ï¡¢JAXB 2.0¤Îº£¸å¤Î¥ê¥ê¡¼¥¹¤«¤éºï½ü¤µ¤ì¤ë¤³¤È¤Ë¤Ê¤ê¤Þ¤·¤¿¡£1.0.x¥³¡¼¥É¤òÀ¸À®¤¹¤ëɬÍפ¬¤¢¤ë¾ì¹ç¤Ï¡¢1.0.x¥³¡¼¥É¥Ù¡¼¥¹¤Î¥¤¥ó¥¹¥È¡¼¥ë¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£
++.RE
++
++.LP
++.SS
++¥³¥ó¥Ñ¥¤¥é¤ÎÀ©¸Â
++.LP
++.LP
++Ä̾ï¤Ï¡¢´ØÏ¢¤¹¤ë¤¹¤Ù¤Æ¤Î¥¹¥­¡¼¥Þ¤ò¡¢Æ±¤¸¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¡¦¥¹¥¤¥Ã¥Á¤ò»ØÄꤷ¤Æ1¤Ä¤Îñ°Ì¤È¤·¤Æ¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤Î¤¬ºÇ¤â°ÂÁ´¤Ç¤¹¡£
++.LP
++.LP
++xjc¤ò¼Â¹Ô¤¹¤ë¤È¤­¤Ï¡¢¼¡¤Ë¼¨¤¹À©¸Â¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£¤³¤ì¤é¤ÎÌäÂê¤Î¤Û¤È¤ó¤É¤Ï¡¢xjc¤ò²¿ÅÙ¤«¸Æ¤Ó½Ð¤·¤ÆÊ£¿ô¤Î¥¹¥­¡¼¥Þ¤ò¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¾ì¹ç¤Ë¤Î¤ßÅö¤Æ¤Ï¤Þ¤ê¤Þ¤¹¡£
++.LP
++.RS 3
++.TP 2
++o
++Ê£¿ô¤Î¥¹¥­¡¼¥Þ¤òƱ»þ¤Ë¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¾ì¹ç¤Ï¡¢¥¿¡¼¥²¥Ã¥È¤ÎJava¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Ë¼¡¤ÎÍ¥Àè½ç°Ì¤Î¥ë¡¼¥ë¤¬Å¬ÍѤµ¤ì¤ë¤³¤È¤ËÃí°Õ¤·¤Æ¤¯¤À¤µ¤¤¡£
++.RS 3
++.TP 3
++1.
++¡Ö\f2\-p\fP¡×¥³¥Þ¥ó¥É¥é¥¤¥ó¡¦¥ª¥×¥·¥ç¥ó¤¬ºÇ¤âÍ¥À褵¤ì¤Þ¤¹¡£
++.TP 3
++2.
++<\f2jaxb:package\fP>¤Î¥«¥¹¥¿¥Þ¥¤¥º
++.TP 3
++3.
++\f2targetNamespace\fP¤¬Àë¸À¤µ¤ì¤Æ¤¤¤ë¾ì¹ç¤Ï¡¢»ÅÍͤËÄêµÁ¤µ¤ì¤Æ¤¤¤ë\f2targetNamespace\fP \-> Java¥Ñ¥Ã¥±¡¼¥¸Ì¾¤Î¥¢¥ë¥´¥ê¥º¥à¤òŬÍѤ·¤Þ¤¹¡£
++.TP 3
++4.
++\f2targetNamespace\fP¤¬Àë¸À¤µ¤ì¤Æ¤¤¤Ê¤¤¾ì¹ç¤Ï¡¢¡Ögenerated¡×¤È¤¤¤¦Ì¾Á°¤Î¥Ï¡¼¥É¥³¡¼¥É¤µ¤ì¤¿¥Ñ¥Ã¥±¡¼¥¸¤ò»ÈÍѤ·¤Þ¤¹¡£
++.RE
++.TP 2
++o
++̾Á°¶õ´Ö¤´¤È¤ËÊ£¿ô¤Î<\f2jaxb:schemaBindings\fP>¤ò»ý¤Ä¤³¤È¤ÏÉÔÀµ¤Ç¤¹¡£¤³¤Î¤¿¤á¡¢1¤Ä¤Î¥¿¡¼¥²¥Ã¥È̾Á°¶õ´ÖÆâ¤Î2¤Ä¤Î¥¹¥­¡¼¥Þ¤ò°Û¤Ê¤ëJava¥Ñ¥Ã¥±¡¼¥¸¤Ë¥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£
++.TP 2
++o
++1¤Ä¤ÎJava¥Ñ¥Ã¥±¡¼¥¸¤Ë¥³¥ó¥Ñ¥¤¥ë¤µ¤ì¤ë¤¹¤Ù¤Æ¤Î¥¹¥­¡¼¥Þ¤Ï¡¢XJC¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é¤ËƱ»þ¤ËÁ÷¿®¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£¸ÄÊ̤˥³¥ó¥Ñ¥¤¥ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤º¡¢Í½´ü¤·¤¿¤È¤ª¤ê¤ËÆ°ºî¤·¤Þ¤»¤ó¡£
++.TP 2
++o
++Ê£¿ô¤Î¥¹¥­¡¼¥Þ¡¦¥Õ¥¡¥¤¥ë¤Ë¤Þ¤¿¤¬¤ëÍ×ÁÇÃÖ´¹¥°¥ë¡¼¥×¤Ï¡¢Æ±»þ¤Ë¥³¥ó¥Ñ¥¤¥ë¤¹¤ëɬÍפ¬¤¢¤ê¤Þ¤¹¡£
++.RE
++
++.LP
++.SH "´ØÏ¢¹àÌÜ"
++.LP
++.RS 3
++.TP 2
++o
++¥Ð¥¤¥ó¥Ç¥£¥ó¥°¡¦¥³¥ó¥Ñ¥¤¥é(XJC)¤Î¼Â¹Ô: [
++.na
++\f2¥³¥Þ¥ó¥É¥é¥¤¥ó¤ÎÌ¿Îá\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/xjc.html¡¢
++.na
++\f2XJC Ant¥¿¥¹¥¯¤Î»ÈÍÑ\fP @
++.fi
++https://jaxb.dev.java.net/nonav/2.1.3/docs/xjcTask.html]
++.TP 2
++o
++.na
++\f2XML¥Ð¥¤¥ó¥É¤Î¤¿¤á¤ÎJava¥¢¡¼¥­¥Æ¥¯¥Á¥ã(JAXB)\fP @
++.fi
++http://docs.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
++.RE
++
++.LP
++
+--- jdk/src/bsd/doc/man/jar.1 2012-08-10 10:22:50.000000000 -0700
++++ jdk/src/bsd/doc/man/jar.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,31 +19,31 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jar 1 "10 May 2011"
++.TH jar 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ jar\-The Java Archive Tool
+ .LP
+-\f3jar\fP combines multiple files into a single JAR archive file.
++\f3jar\fP combines multiple files into a single JAR archive file.
+ .SH "SYNOPSIS"
+ .LP
+ .RS 3
+ .TP 3
+-Create jar file
+-\f4jar c\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
++Create jar file
++\f4jar c\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
+ .TP 3
+-Update jar file
+-\f4jar u\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
++Update jar file
++\f4jar u\fP\f2[v0Mmfe] [\fP\f2manifest\fP\f2] [\fP\f2jarfile\fP\f2] [\fP\f2entrypoint\fP\f2] [\-C\fP \f2dir\fP\f2]\fP \f2inputfiles\fP \f2[\-J\fP\f2option\fP\f2]\fP
+ .TP 3
+-Extract jar file
+-\f4jar x\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
++Extract jar file
++\f4jar x\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
+ .TP 3
+-List table of contents of jar file
+-\f4jar t\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
++List table of contents of jar file
++\f4jar t\fP\f2[vf] [\fP\f2jarfile\fP\f2] [\fP\f2inputfiles\fP\f2] [\-J\fP\f2option\fP\f2]\fP
+ .TP 3
+-Add index to jar file
+-\f4jar i\fP \f2jarfile\fP \f2[\-J\fP\f2option\fP\f2]\fP
++Add index to jar file
++\f4jar i\fP \f2jarfile\fP \f2[\-J\fP\f2option\fP\f2]\fP
+ .RE
+
+ .LP
+@@ -52,36 +52,36 @@
+ .LP
+ .RS 3
+ .TP 3
+-cuxtiv0Mmfe
+-Options that control the \f2jar\fP command.
++cuxtiv0Mmfe
++Options that control the \f2jar\fP command.
+ .TP 3
+-jarfile
+-Jar file to be created (\f2c\fP), updated (\f2u\fP), extracted (\f2x\fP), or have its table of contents viewed (\f2t\fP). The \f2\-f\fP option and filename \f2jarfile\fP are a pair \-\- if either is present, they must both appear. Note that omitting \f2f\fP and \f2jarfile\fP accepts a "jar file" from standard input (for x and t) or sends the "jar file" to standard output (for c and u).
++jarfile
++Jar file to be created (\f2c\fP), updated (\f2u\fP), extracted (\f2x\fP), or have its table of contents viewed (\f2t\fP). The \f2\-f\fP option and filename \f2jarfile\fP are a pair \-\- if either is present, they must both appear. Note that omitting \f2f\fP and \f2jarfile\fP accepts a "jar file" from standard input (for x and t) or sends the "jar file" to standard output (for c and u).
+ .TP 3
+-inputfiles
+-Files or directories, separated by spaces, to be combined into \f2jarfile\fP (for c and u), or to be extracted (for x) or listed (for t) from \f2jarfile\fP. All directories are processed recursively. The files are compressed unless option \f20\fP (zero) is used.
++inputfiles
++Files or directories, separated by spaces, to be combined into \f2jarfile\fP (for c and u), or to be extracted (for x) or listed (for t) from \f2jarfile\fP. All directories are processed recursively. The files are compressed unless option \f20\fP (zero) is used.
+ .TP 3
+-manifest
+-Pre\-existing manifest file whose \f2name\fP\f2:\fP \f2value\fP pairs are to be included in MANIFEST.MF in the jar file. The \f2\-m\fP option and filename \f2manifest\fP are a pair \-\- if either is present, they must both appear. The letters \f3m\fP, \f3f\fP and \f3e\fP must appear in the same order that \f2manifest\fP, \f2jarfile\fP, \f2entrypoint\fP appear.
++manifest
++Pre\-existing manifest file whose \f2name\fP\f2:\fP \f2value\fP pairs are to be included in MANIFEST.MF in the jar file. The \f2\-m\fP option and filename \f2manifest\fP are a pair \-\- if either is present, they must both appear. The letters \f3m\fP, \f3f\fP and \f3e\fP must appear in the same order that \f2manifest\fP, \f2jarfile\fP, \f2entrypoint\fP appear.
+ .TP 3
+-entrypoint
+-The name of the class that set as the application entry point for stand\-alone applications bundled into executable jar file. The \f2\-e\fP option and entrypoint are a pair \-\- if either is present, they must both appear. The letters \f3m\fP, \f3f\fP and \f3e\fP must appear in the same order that \f2manifest\fP, \f2jarfile\fP, \f2entrypoint\fP appear.
++entrypoint
++The name of the class that set as the application entry point for stand\-alone applications bundled into executable jar file. The \f2\-e\fP option and entrypoint are a pair \-\- if either is present, they must both appear. The letters \f3m\fP, \f3f\fP and \f3e\fP must appear in the same order that \f2manifest\fP, \f2jarfile\fP, \f2entrypoint\fP appear.
+ .TP 3
+-\-C\ dir
+-Temporarily changes directories to \f2dir\fP while processing the following \f2inputfiles\fP argument. Multiple \f2\-C\ \fP\f2dir\fP \f2inputfiles\fP sets are allowed.
++\-C\ dir
++Temporarily changes directories to \f2dir\fP while processing the following \f2inputfiles\fP argument. Multiple \f2\-C\ \fP\f2dir\fP \f2inputfiles\fP sets are allowed.
+ .TP 3
+-\-Joption
+-Option to be passed into the Java runtime environment. (There must be no space between \f2\-J\fP and \f2option\fP).
++\-Joption
++Option to be passed into the Java runtime environment. (There must be no space between \f2\-J\fP and \f2option\fP).
+ .RE
+
+ .LP
+ .SH "DESCRIPTION"
+ .LP
+-The \f3jar\fP tool combines multiple files into a single JAR archive file. \f3jar\fP is a general\-purpose archiving and compression tool, based on ZIP and the
++The \f3jar\fP tool combines multiple files into a single JAR archive file. \f3jar\fP is a general\-purpose archiving and compression tool, based on ZIP and the
+ .na
+ \f2ZLIB\fP @
+ .fi
+-http://www.gzip.org/zlib/ compression format. However, \f3jar\fP was designed mainly package java applets or applications into a single archive. When the components of an applet or application (files, images and sounds) are combined into a single archive, they can be downloaded by a java agent (like a browser) in a single HTTP transaction, rather than requiring a new connection for each piece. This dramatically improves download times. \f3jar\fP also compresses files and so further improves download time. In addition, it allows individual entries in a file to be signed by the applet author so that their origin can be authenticated. The syntax for the jar tool is almost identical to the syntax for the \f2tar\fP command. A \f3jar\fP archive can be used as a class path entry, whether or not it is compressed.
++http://www.gzip.org/zlib/ compression format. However, \f3jar\fP was designed mainly package java applets or applications into a single archive. When the components of an applet or application (files, images and sounds) are combined into a single archive, they can be downloaded by a java agent (like a browser) in a single HTTP transaction, rather than requiring a new connection for each piece. This dramatically improves download times. \f3jar\fP also compresses files and so further improves download time. In addition, it allows individual entries in a file to be signed by the applet author so that their origin can be authenticated. The syntax for the jar tool is almost identical to the syntax for the \f2tar\fP command. A \f3jar\fP archive can be used as a class path entry, whether or not it is compressed.
+ .LP
+ Typical usage to combine files into a jar file is:
+ .LP
+@@ -94,11 +94,11 @@
+ .fi
+
+ .LP
+-In this example, all the class files in the current directory are placed into the file named \f2myFile.jar\fP. The jar tool automatically generates a manifest file entry named \f2META\-INF/MANIFEST.MF\fP. It is always the first entry in the jar file. The manifest file declares meta\-information about the archive, and stores that data as \f2name\ :\ value\fP pairs. Refer to the
++In this example, all the class files in the current directory are placed into the file named \f2myFile.jar\fP. The jar tool automatically generates a manifest file entry named \f2META\-INF/MANIFEST.MF\fP. It is always the first entry in the jar file. The manifest file declares meta\-information about the archive, and stores that data as \f2name\ :\ value\fP pairs. Refer to the
+ .na
+ \f2JAR file specification\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR%20Manifest for details explaining how the jar tool stores meta\-information in the manifest file.
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR%20Manifest for details explaining how the jar tool stores meta\-information in the manifest file.
+ .LP
+ If a jar file should include \f2name\ :\ value\fP pairs contained in an existing manifest file, specify that file using the \f2\-m\fP option:
+ .LP
+@@ -118,7 +118,7 @@
+ .br
+
+ .LP
+-\f3Note:\ \fP A jar command that specifies \f2cfm\fP on the command line instead of \f2cmf\fP (the order of the m and \-f options are reversed), the \f3jar\fP command line must specify the name of the jar archive first, followed by the name of the manifest file:
++\f3Note:\ \fP A jar command that specifies \f2cfm\fP on the command line instead of \f2cmf\fP (the order of the m and \-f options are reversed), the \f3jar\fP command line must specify the name of the jar archive first, followed by the name of the manifest file:
+ .nf
+ \f3
+ .fl
+@@ -128,7 +128,7 @@
+ .fi
+
+ .LP
+-The manifest is in a text format inspired by RFC822 ASCII format, so it is easy to view and process manifest\-file contents.
++The manifest is in a text format inspired by RFC822 ASCII format, so it is easy to view and process manifest\-file contents.
+ .LP
+ To extract the files from a jar file, use \f2x\fP:
+ .LP
+@@ -154,11 +154,11 @@
+
+ .LP
+ .LP
+-Beginning with version 1.3 of the JDK, the \f2jar\fP utility supports
++Beginning with version 1.3 of the JDK, the \f2jar\fP utility supports
+ .na
+ \f2JarIndex\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index, which allows application class loaders to load classes more efficiently from jar files. If an application or applet is bundled into multiple jar files,\ only the necessary jar files will be downloaded and opened to load classes. This performance optimization is enabled by running \f2jar\fP with the \f2\-i\fPoption. It will generate package location information for the specified main jar file and all the jar files it depends on, which need to be specified in the \f2Class\-Path\fP attribute of the main jar file's manifest.
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index, which allows application class loaders to load classes more efficiently from jar files. If an application or applet is bundled into multiple jar files,\ only the necessary jar files will be downloaded and opened to load classes. This performance optimization is enabled by running \f2jar\fP with the \f2\-i\fPoption. It will generate package location information for the specified main jar file and all the jar files it depends on, which need to be specified in the \f2Class\-Path\fP attribute of the main jar file's manifest.
+ .LP
+ .nf
+ \f3
+@@ -188,21 +188,21 @@
+
+ .LP
+ .LP
+-To review command samples which use \f2jar\fP to opeate on jar files and jar file manifests, see Examples, below. Also refer to the jar trail of the
++To review command samples which use \f2jar\fP to opeate on jar files and jar file manifests, see Examples, below. Also refer to the jar trail of the
+ .na
+ \f2Java Tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/deployment/jar.
++http://docs.oracle.com/javase/tutorial/deployment/jar.
+ .LP
+ .SH "OPTIONS"
+ .LP
+ .RS 3
+ .TP 3
+-c
+-Creates a new archive file named \f2jarfile\fP (if \f2f\fP is specified) or to standard output (if \f2f\fP and \f2jarfile\fP are omitted). Add to it the files and directories specified by \f2inputfiles\fP.
++c
++Creates a new archive file named \f2jarfile\fP (if \f2f\fP is specified) or to standard output (if \f2f\fP and \f2jarfile\fP are omitted). Add to it the files and directories specified by \f2inputfiles\fP.
+ .TP 3
+-u
+-Updates an existing file \f2jarfile\fP (when \f2f\fP is specified) by adding to it files and directories specified by \f2inputfiles\fP. For example:
++u
++Updates an existing file \f2jarfile\fP (when \f2f\fP is specified) by adding to it files and directories specified by \f2inputfiles\fP. For example:
+ .nf
+ \f3
+ .fl
+@@ -210,7 +210,7 @@
+ .fl
+ \fP
+ .fi
+-would add the file \f2foo.class\fP to the existing jar file \f2foo.jar\fP. The \f2\-u\fP option can also update the manifest entry, as given by this example:
++would add the file \f2foo.class\fP to the existing jar file \f2foo.jar\fP. The \f2\-u\fP option can also update the manifest entry, as given by this example:
+ .nf
+ \f3
+ .fl
+@@ -218,16 +218,16 @@
+ .fl
+ \fP
+ .fi
+-updates the \f2foo.jar\fP manifest with the \f2name : value\fP pairs in \f2manifest\fP.
++updates the \f2foo.jar\fP manifest with the \f2name : value\fP pairs in \f2manifest\fP.
+ .TP 3
+-x
+-Extracts files and directories from \f2jarfile\fP (if \f2f\fP is specified) or standard input (if \f2f\fP and \f2jarfile\fP are omitted). If \f2inputfiles\fP is specified, only those specified files and directories are extracted. Otherwise, all files and directories are extracted. The time and date of the extracted files are those given in the archive.
++x
++Extracts files and directories from \f2jarfile\fP (if \f2f\fP is specified) or standard input (if \f2f\fP and \f2jarfile\fP are omitted). If \f2inputfiles\fP is specified, only those specified files and directories are extracted. Otherwise, all files and directories are extracted. The time and date of the extracted files are those given in the archive.
+ .TP 3
+-t
+-Lists the table of contents from \f2jarfile\fP (if \f2f\fP is specified) or standard input (if \f2f\fP and \f2jarfile\fP are omitted). If \f2inputfiles\fP is specified, only those specified files and directories are listed. Otherwise, all files and directories are listed.
++t
++Lists the table of contents from \f2jarfile\fP (if \f2f\fP is specified) or standard input (if \f2f\fP and \f2jarfile\fP are omitted). If \f2inputfiles\fP is specified, only those specified files and directories are listed. Otherwise, all files and directories are listed.
+ .TP 3
+-i
+-Generate index information for the specified \f2jarfile\fP and its dependent jar files. For example:
++i
++Generate index information for the specified \f2jarfile\fP and its dependent jar files. For example:
+ .nf
+ \f3
+ .fl
+@@ -236,25 +236,25 @@
+ \fP
+ .fi
+ .LP
+-would generate an \f2INDEX.LIST\fP file in \f2foo.jar\fP which contains location information for each package in \f2foo.jar\fP and all the jar files specified in the \f2Class\-Path\fP attribute of \f2foo.jar\fP. See the index example.
++would generate an \f2INDEX.LIST\fP file in \f2foo.jar\fP which contains location information for each package in \f2foo.jar\fP and all the jar files specified in the \f2Class\-Path\fP attribute of \f2foo.jar\fP. See the index example.
+ .TP 3
+-f
+-Specifies the file \f2jarfile\fP to be created (\f2c\fP), updated (\f2u\fP), extracted (\f2x\fP), indexed (\f2i\fP), or viewed (\f2t\fP). The \f2\-f\fP option and filename \f2jarfile\fP are a pair \-\- if present, they must both appear. Omitting \f2f\fP and \f2jarfile\fP accepts a jar file name from \f2stdin\fP(for x and t) or sends jar file to \f2stdout\fP (for c and u).
++f
++Specifies the file \f2jarfile\fP to be created (\f2c\fP), updated (\f2u\fP), extracted (\f2x\fP), indexed (\f2i\fP), or viewed (\f2t\fP). The \f2\-f\fP option and filename \f2jarfile\fP are a pair \-\- if present, they must both appear. Omitting \f2f\fP and \f2jarfile\fP accepts a jar file name from \f2stdin\fP(for x and t) or sends jar file to \f2stdout\fP (for c and u).
+ .TP 3
+-v
+-Generates verbose output to standard output. Examples shown below.
++v
++Generates verbose output to standard output. Examples shown below.
+ .TP 3
+-0
+-(zero) Store without using ZIP compression.
++0
++(zero) Store without using ZIP compression.
+ .TP 3
+-M
+-Do not create a manifest file entry (for c and u), or delete a manifest file entry if one exists (for u).
++M
++Do not create a manifest file entry (for c and u), or delete a manifest file entry if one exists (for u).
+ .TP 3
+-m
++m
+ Includes \f2name : value\fP attribute pairs from the specified manifest file \f2manifest\fP in the file at \f2META\-INF/MANIFEST.MF\fP. \f2jar\fP adds a \f2name\ :\ value\fP pair unless an entry already exists with the same name, in which case \f2jar\fP updates its value.
+ .br
+ .br
+-On the command line, the letters \f3m\fP and \f3f\fP must appear in the same order that \f2manifest\fP and \f2jarfile\fP appear. Example use:
++On the command line, the letters \f3m\fP and \f3f\fP must appear in the same order that \f2manifest\fP and \f2jarfile\fP appear. Example use:
+ .nf
+ \f3
+ .fl
+@@ -262,18 +262,18 @@
+ .fl
+ \fP
+ .fi
+-You can add special\-purpose \f2name\ :\ value\fP attribute pairs to the manifest that aren't contained in the default manifest. For example, you can add attributes specifying vendor information, version information, package sealing, or to make JAR\-bundled applications executable. See the
++You can add special\-purpose \f2name\ :\ value\fP attribute pairs to the manifest that aren't contained in the default manifest. For example, you can add attributes specifying vendor information, version information, package sealing, or to make JAR\-bundled applications executable. See the
+ .na
+ \f2JAR Files\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/deployment/jar/ trail in the Java Tutorial for examples of using the \f4\-m\fP option.
++http://docs.oracle.com/javase/tutorial/deployment/jar/ trail in the Java Tutorial for examples of using the \f4\-m\fP option.
+ .TP 3
+-e
++e
+ Sets \f2entrypoint\fP as the application entry point for stand\-alone applications bundled into executable jar file. The use of this option creates or overrides the \f2Main\-Class\fP attribute value in the manifest file. This option can be used during creation of jar file or while updating the jar file. This option specifies the application entry point without editing or creating the manifest file.
+ .br
+ .br
+ .br
+-For example, this command creates \f2Main.jar\fP where the \f2Main\-Class\fP attribute value in the manifest is set to \f2Main\fP:
++For example, this command creates \f2Main.jar\fP where the \f2Main\-Class\fP attribute value in the manifest is set to \f2Main\fP:
+ .nf
+ \f3
+ .fl
+@@ -281,7 +281,7 @@
+ .fl
+ \fP
+ .fi
+-The java runtime can directly invoke this application by running the following command:
++The java runtime can directly invoke this application by running the following command:
+ .nf
+ \f3
+ .fl
+@@ -289,7 +289,7 @@
+ .fl
+ \fP
+ .fi
+-If the entrypoint class name is in a package it may use either a dot (".") or slash ("/") character as the delimiter. For example, if \f2Main.class\fP is in a package called \f2foo\fP the entry point can be specified in the following ways:
++If the entrypoint class name is in a package it may use either a dot (".") or slash ("/") character as the delimiter. For example, if \f2Main.class\fP is in a package called \f2foo\fP the entry point can be specified in the following ways:
+ .nf
+ \f3
+ .fl
+@@ -297,7 +297,7 @@
+ .fl
+ \fP
+ .fi
+-or
++or
+ .nf
+ \f3
+ .fl
+@@ -305,13 +305,13 @@
+ .fl
+ \fP
+ .fi
+-\f3Note:\ \fP specifying both \f2\-m\fP and \f2\-e\fP options together when the given manifest also contains the \f2Main\-Class\fP attribute results in an ambigous \f2Main.class\fP specification, leading to an error and the jar creation or update operation is aborted.
++\f3Note:\ \fP specifying both \f2\-m\fP and \f2\-e\fP options together when the given manifest also contains the \f2Main\-Class\fP attribute results in an ambigous \f2Main.class\fP specification, leading to an error and the jar creation or update operation is aborted.
+ .TP 3
+-\-C\ dir
++\-C\ dir
+ Temporarily changes directories (\f2cd\fP\ \f2dir\fP) during execution of the \f2jar\fP command while processing the following \f2inputfiles\fP argument. Its operation is intended to be similar to the \f2\-C\fP option of the UNIX \f2tar\fP utility.
+ .br
+ .br
+-For example, this command changes to the \f2classes\fP directory and adds the \f2bar.class\fP from that directory to \f2foo.jar\fP:
++For example, this command changes to the \f2classes\fP directory and adds the \f2bar.class\fP from that directory to \f2foo.jar\fP:
+ .nf
+ \f3
+ .fl
+@@ -319,7 +319,7 @@
+ .fl
+ \fP
+ .fi
+-This command changes to the \f2classes\fP directory and adds to \f2foo.jar\fP all files within the \f2classes\fP directory (without creating a classes directory in the jar file), then changes back to the original directory before changing to the \f2bin\fP directory to add \f2xyz.class\fP to \f2foo.jar\fP.
++This command changes to the \f2classes\fP directory and adds to \f2foo.jar\fP all files within the \f2classes\fP directory (without creating a classes directory in the jar file), then changes back to the original directory before changing to the \f2bin\fP directory to add \f2xyz.class\fP to \f2foo.jar\fP.
+ .nf
+ \f3
+ .fl
+@@ -327,7 +327,7 @@
+ .fl
+ \fP
+ .fi
+-If \f2classes\fP holds files \f2bar1\fP and \f2bar2\fP, then here's what the jar file will contain using \f2jar tf foo.jar\fP:
++If \f2classes\fP holds files \f2bar1\fP and \f2bar2\fP, then here's what the jar file will contain using \f2jar tf foo.jar\fP:
+ .nf
+ \f3
+ .fl
+@@ -345,14 +345,14 @@
+ .fi
+ .LP
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java runtime environment, where \f2option\fP is one of the options described on the reference page for the java application launcher. For example, \f4\-J\-Xmx48M\fP sets the maximum memory to 48 megabytes. It is a common convention for \f2\-J\fP to pass options to the underlying runtime environment.
++\-Joption
++Pass \f2option\fP to the Java runtime environment, where \f2option\fP is one of the options described on the reference page for the java application launcher. For example, \f4\-J\-Xmx48M\fP sets the maximum memory to 48 megabytes. It is a common convention for \f2\-J\fP to pass options to the underlying runtime environment.
+ .RE
+
+ .LP
+ .SH "COMMAND LINE ARGUMENT FILES"
+ .LP
+-To shorten or simplify the jar command line, you can specify one or more files that themselves contain arguments to the \f2jar\fP command (except \f2\-J\fP options). This enables you to create jar commands of any length, overcoming command line limits imposed by the operating system.
++To shorten or simplify the jar command line, you can specify one or more files that themselves contain arguments to the \f2jar\fP command (except \f2\-J\fP options). This enables you to create jar commands of any length, overcoming command line limits imposed by the operating system.
+ .LP
+ An argument file can include options and filenames. The arguments within a file can be space\-separated or newline\-separated. Filenames within an argument file are relative to the current directory, not relative to the location of the argument file. Wildcards (*) that might otherwise be expanded by the operating system shell are not expanded. Use of the \f2@\fP character to recursively interpret files is not supported. The \f2\-J\fP options are not supported because they are passed to the launcher, which does not support argument files.
+ .LP
+@@ -360,7 +360,7 @@
+ When executing \f2jar\fP, pass in the path and name of each argument file with the \f2@\fP leading character. When \f2jar\fP encounters an argument beginning with the character \f2@\fP, it expands the contents of that file into the argument list.
+ .br
+ .br
+-The example below, \f2classes.list\fP holds the names of files output by a \f2find\fP command:
++The example below, \f2classes.list\fP holds the names of files output by a \f2find\fP command:
+ .LP
+ .nf
+ \f3
+@@ -382,7 +382,7 @@
+ .fi
+
+ .LP
+-An argument file can specify a path, but any filenames inside the argument file that have relative paths are relative to the current working directory, not to the path passed in. Here is an example:
++An argument file can specify a path, but any filenames inside the argument file that have relative paths are relative to the current working directory, not to the path passed in. Here is an example:
+ .nf
+ \f3
+ .fl
+@@ -397,7 +397,7 @@
+ .LP
+ .SH "EXAMPLES"
+ .LP
+-To add all the files in a particular directory to an archive (overwriting contents if the archive already exists). Enumerating verbosely (with the \f2\-v\fP option) will tell you more information about the files in the archive, such as their size and last modified date.
++To add all the files in a particular directory to an archive (overwriting contents if the archive already exists). Enumerating verbosely (with the \f2\-v\fP option) will tell you more information about the files in the archive, such as their size and last modified date.
+ .nf
+ \f3
+ .fl
+@@ -435,7 +435,7 @@
+ .fi
+
+ .LP
+-If you already have separate subdirectories for images, audio files and classes, you can combine them into a single jar file:
++If you already have separate subdirectories for images, audio files and classes, you can combine them into a single jar file:
+ .nf
+ \f3
+ .fl
+@@ -481,7 +481,7 @@
+ .fi
+
+ .LP
+-To see the entry names in the jarfile, use the \f2t\fP option:
++To see the entry names in the jarfile, use the \f2t\fP option:
+ .nf
+ \f3
+ .fl
+@@ -526,7 +526,7 @@
+ .br
+
+ .LP
+-If you specify the \f2Class\-path\fP attribute in the \f2main.jar\fP manifest as:
++If you specify the \f2Class\-path\fP attribute in the \f2main.jar\fP manifest as:
+ .nf
+ \f3
+ .fl
+@@ -536,7 +536,7 @@
+ .fi
+
+ .LP
+-then you can use the \f2\-i\fP option to speed up the class loading time for your application:
++then you can use the \f2\-i\fP option to speed up the class loading time for your application:
+ .nf
+ \f3
+ .fl
+@@ -546,34 +546,34 @@
+ .fi
+
+ .LP
+-An \f2INDEX.LIST\fP file is inserted to the \f2META\-INF\fP directory. This enables the application class loader to download the specified jar files when it is searching for classes or resources.
++An \f2INDEX.LIST\fP file is inserted to the \f2META\-INF\fP directory. This enables the application class loader to download the specified jar files when it is searching for classes or resources.
+ .SH "SEE ALSO"
+ .LP
+ .LP
+ .na
+ \f2The Jar Overview\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/jarGuide.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jarGuide.html
+ .LP
+ .LP
+ .na
+ \f2The Jar File Specification\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/jar.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html
+ .LP
+ .LP
+ .na
+ \f2The JarIndex Spec\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/jar.html#JAR_Index
+ .LP
+ .LP
+ .na
+ \f2Jar Tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/deployment/jar/index.html
++http://docs.oracle.com/javase/tutorial/deployment/jar/index.html
+ .LP
+ .LP
+ pack200(1)
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jarsigner.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jarsigner.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jarsigner 1 "10 May 2011"
++.TH jarsigner 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -51,10 +51,10 @@
+ .RS 3
+ .TP 3
+ 1.
+-to sign Java ARchive (JAR) files, and
++to sign Java ARchive (JAR) files, and
+ .TP 3
+ 2.
+-to verify the signatures and integrity of signed JAR files.
++to verify the signatures and integrity of signed JAR files.
+ .RE
+
+ .LP
+@@ -67,16 +67,16 @@
+ .RS 3
+ .TP 2
+ o
+-Its authenticity can be verified, via a computation that uses the public key corresponding to the private key used to generate the signature.
++Its authenticity can be verified, via a computation that uses the public key corresponding to the private key used to generate the signature.
+ .TP 2
+ o
+-It cannot be forged, assuming the private key is kept secret.
++It cannot be forged, assuming the private key is kept secret.
+ .TP 2
+ o
+-It is a function of the data signed and thus can't be claimed to be the signature for other data as well.
++It is a function of the data signed and thus can't be claimed to be the signature for other data as well.
+ .TP 2
+ o
+-The signed data cannot be changed; if it is, the signature will no longer verify as being authentic.
++The signed data cannot be changed; if it is, the signature will no longer verify as being authentic.
+ .RE
+
+ .LP
+@@ -98,7 +98,7 @@
+ .LP
+ The default \f3jarsigner\fP behavior is to \f2sign\fP a JAR (or zip) file. Use the \f2\-verify\fP option to instead have it \f2verify\fP a signed JAR file.
+ .LP
+-.SS
++.SS
+ Keystore Aliases
+ .LP
+ .LP
+@@ -121,7 +121,7 @@
+ .LP
+ Keystores are protected with a password, so the store password must be specified. You will be prompted for it if you don't specify it on the command line. Similarly, private keys are protected in a keystore with a password, so the private key's password must be specified, and you will be prompted for it if you don't specify it on the command line and it isn't the same as the store password.
+ .LP
+-.SS
++.SS
+ Keystore Location
+ .LP
+ .LP
+@@ -130,7 +130,7 @@
+ .LP
+ Note that the input stream from the \f2\-keystore\fP option is passed to the \f2KeyStore.load\fP method. If \f2NONE\fP is specified as the URL, then a null stream is passed to the \f2KeyStore.load\fP method. \f2NONE\fP should be specified if the \f2KeyStore\fP is not file\-based, for example, if it resides on a hardware token device.
+ .LP
+-.SS
++.SS
+ Keystore Implementation
+ .LP
+ .LP
+@@ -143,11 +143,11 @@
+ There is a built\-in default implementation, provided by Sun Microsystems. It implements the keystore as a file, utilizing a proprietary keystore type (format) named "JKS". It protects each private key with its individual password, and also protects the integrity of the entire keystore with a (possibly different) password.
+ .LP
+ .LP
+-Keystore implementations are provider\-based. More specifically, the application interfaces supplied by \f2KeyStore\fP are implemented in terms of a "Service Provider Interface" (SPI). That is, there is a corresponding abstract \f2KeystoreSpi\fP class, also in the \f2java.security\fP package, which defines the Service Provider Interface methods that "providers" must implement. (The term "provider" refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API.) Thus, to provide a keystore implementation, clients must implement a provider and supply a KeystoreSpi subclass implementation, as described in
++Keystore implementations are provider\-based. More specifically, the application interfaces supplied by \f2KeyStore\fP are implemented in terms of a "Service Provider Interface" (SPI). That is, there is a corresponding abstract \f2KeystoreSpi\fP class, also in the \f2java.security\fP package, which defines the Service Provider Interface methods that "providers" must implement. (The term "provider" refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API.) Thus, to provide a keystore implementation, clients must implement a provider and supply a KeystoreSpi subclass implementation, as described in
+ .na
+ \f2How to Implement a Provider for the Java Cryptography Architecture\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html.
+ .LP
+ .LP
+ Applications can choose different \f2types\fP of keystore implementations from different providers, using the "getInstance" factory method supplied in the \f2KeyStore\fP class. A keystore type defines the storage and data format of the keystore information, and the algorithms used to protect private keys in the keystore and the integrity of the keystore itself. Keystore implementations of different types are not compatible.
+@@ -204,13 +204,13 @@
+
+ .LP
+ .LP
+-Note that if you us the PKCS#11 provider package, you should refer to the
++Note that if you us the PKCS#11 provider package, you should refer to the
+ .na
+ \f2KeyTool and JarSigner\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#KeyToolJarSigner section of the Java PKCS#11 Reference Guide for details.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#KeyToolJarSigner section of the Java PKCS#11 Reference Guide for details.
+ .LP
+-.SS
++.SS
+ Supported Algorithms
+ .LP
+ .LP
+@@ -219,13 +219,13 @@
+ .RS 3
+ .TP 2
+ o
+-DSA (Digital Signature Algorithm) with the SHA1 digest algorithm
++DSA (Digital Signature Algorithm) with the SHA1 digest algorithm
+ .TP 2
+ o
+-RSA algorithm with the SHA256 digest algorithm.
++RSA algorithm with the SHA256 digest algorithm.
+ .TP 2
+ o
+-EC (Elliptic Curve) cryptography algorithm with the SHA256 with ECDSA (Elliptic Curve Digital Signature Algorithm).
++EC (Elliptic Curve) cryptography algorithm with the SHA256 with ECDSA (Elliptic Curve Digital Signature Algorithm).
+ .RE
+
+ .LP
+@@ -235,7 +235,7 @@
+ .LP
+ These default signature algorithms can be overridden using the \f2\-sigalg\fP option.
+ .LP
+-.SS
++.SS
+ The Signed JAR File
+ .LP
+ .LP
+@@ -244,10 +244,10 @@
+ .RS 3
+ .TP 2
+ o
+-a signature file, with a .SF extension, and
++a signature file, with a .SF extension, and
+ .TP 2
+ o
+-a signature block file, with a .DSA, .RSA, or .EC extension.
++a signature block file, with a .DSA, .RSA, or .EC extension.
+ .RE
+
+ .LP
+@@ -277,13 +277,13 @@
+ .RS 3
+ .TP 2
+ o
+-the file name,
++the file name,
+ .TP 2
+ o
+-the name of the digest algorithm used (SHA), and
++the name of the digest algorithm used (SHA), and
+ .TP 2
+ o
+-a SHA digest value.
++a SHA digest value.
+ .RE
+
+ .LP
+@@ -295,8 +295,8 @@
+ .LP
+ \f3The Signature Block File\fP
+ .LP
+-The .SF file is signed and the signature is placed in the signature block file. This file also contains, encoded inside it, the certificate or certificate chain from the keystore which authenticates the public key corresponding to the private key used for signing. The file has the extension .DSA, .RSA, or .EC depending on the digest algorithm used.
+-.SS
++The .SF file is signed and the signature is placed in the signature block file. This file also contains, encoded inside it, the certificate or certificate chain from the keystore which authenticates the public key corresponding to the private key used for signing. The file has the extension .DSA, .RSA, or .EC depending on the digest algorithm used.
++.SS
+ Signature Timestamp
+ .LP
+ .LP
+@@ -305,23 +305,23 @@
+ .RS 3
+ .TP 2
+ o
+-\f2\-tsa url\fP
++\f2\-tsa url\fP
+ .TP 2
+ o
+-\f2\-tsacert alias\fP
++\f2\-tsacert alias\fP
+ .TP 2
+ o
+-\f2\-altsigner class\fP
++\f2\-altsigner class\fP
+ .TP 2
+ o
+-\f2\-altsignerpath classpathlist\fP
++\f2\-altsignerpath classpathlist\fP
+ .RE
+
+ .LP
+ .LP
+ Each of these options is detailed in the Options section below.
+ .LP
+-.SS
++.SS
+ JAR File Verification
+ .LP
+ .LP
+@@ -333,7 +333,7 @@
+ Verify the signature of the .SF file itself.
+ .br
+ .br
+-That is, the verification ensures that the signature stored in each signature block (.DSA) file was in fact generated using the private key corresponding to the public key whose certificate (or certificate chain) also appears in the .DSA file. It also ensures that the signature is a valid signature of the corresponding signature (.SF) file, and thus the .SF file has not been tampered with.
++That is, the verification ensures that the signature stored in each signature block (.DSA) file was in fact generated using the private key corresponding to the public key whose certificate (or certificate chain) also appears in the .DSA file. It also ensures that the signature is a valid signature of the corresponding signature (.SF) file, and thus the .SF file has not been tampered with.
+ .TP 3
+ 2.
+ Verify the digest listed in each entry in the .SF file with each corresponding section in the manifest.
+@@ -345,17 +345,17 @@
+ If that is not the case, a less optimized verification is required to ensure that the hash in each source file information section in the .SF file equals the hash of its corresponding section in the manifest file (see The Signature (.SF) File).
+ .br
+ .br
+-One reason the hash of the manifest file that is stored in the .SF file header may not equal the hash of the current manifest file would be because one or more files were added to the JAR file (using the \f2jar\fP tool) after the signature (and thus the .SF file) was generated. When the \f2jar\fP tool is used to add files, the manifest file is changed (sections are added to it for the new files), but the .SF file is not. A verification is still considered successful if none of the files that were in the JAR file when the signature was generated have been changed since then, which is the case if the hashes in the non\-header sections of the .SF file equal the hashes of the corresponding sections in the manifest file.
++One reason the hash of the manifest file that is stored in the .SF file header may not equal the hash of the current manifest file would be because one or more files were added to the JAR file (using the \f2jar\fP tool) after the signature (and thus the .SF file) was generated. When the \f2jar\fP tool is used to add files, the manifest file is changed (sections are added to it for the new files), but the .SF file is not. A verification is still considered successful if none of the files that were in the JAR file when the signature was generated have been changed since then, which is the case if the hashes in the non\-header sections of the .SF file equal the hashes of the corresponding sections in the manifest file.
+ .TP 3
+ 3.
+-Read each file in the JAR file that has an entry in the .SF file. While reading, compute the file's digest, and then compare the result with the digest for this file in the manifest section. The digests should be the same, or verification fails.
++Read each file in the JAR file that has an entry in the .SF file. While reading, compute the file's digest, and then compare the result with the digest for this file in the manifest section. The digests should be the same, or verification fails.
+ .RE
+
+ .LP
+ .LP
+ If any serious verification failures occur during the verification process, the process is stopped and a security exception is thrown. It is caught and displayed by \f3jarsigner\fP.
+ .LP
+-.SS
++.SS
+ Multiple Signatures for a JAR File
+ .LP
+ .LP
+@@ -401,22 +401,22 @@
+ .RS 3
+ .TP 2
+ o
+-All option names are preceded by a minus sign (\-).
++All option names are preceded by a minus sign (\-).
+ .TP 2
+ o
+-The options may be provided in any order.
++The options may be provided in any order.
+ .TP 2
+ o
+-Items in italics (option values) represent the actual values that must be supplied.
++Items in italics (option values) represent the actual values that must be supplied.
+ .TP 2
+ o
+-The \f2\-keystore\fP, \f2\-storepass\fP, \f2\-keypass\fP, \f2\-sigfile\fP, \f2\-sigalg\fP, \f2\-digestalg\fP, and \f2\-signedjar\fP options are only relevant when signing a JAR file, not when verifying a signed JAR file. Similarly, an alias is only specified on the command line when signing a JAR file.
++The \f2\-keystore\fP, \f2\-storepass\fP, \f2\-keypass\fP, \f2\-sigfile\fP, \f2\-sigalg\fP, \f2\-digestalg\fP, and \f2\-signedjar\fP options are only relevant when signing a JAR file, not when verifying a signed JAR file. Similarly, an alias is only specified on the command line when signing a JAR file.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-keystore url
++\-keystore url
+ Specifies the URL that tells the keystore location. This defaults to the file \f2.keystore\fP in the user's home directory, as determined by the "user.home" system property.
+ .br
+ .br
+@@ -426,7 +426,7 @@
+ A keystore is \f2not\fP required when verifying, but if one is specified, or the default exists, and the \f2\-verbose\fP option was also specified, additional information is output regarding whether or not any of the certificates used to verify the JAR file are contained in that keystore.
+ .br
+ .br
+-Note: the \f2\-keystore\fP argument can actually be a file name (and path) specification rather than a URL, in which case it will be treated the same as a "file:" URL. That is,
++Note: the \f2\-keystore\fP argument can actually be a file name (and path) specification rather than a URL, in which case it will be treated the same as a "file:" URL. That is,
+ .nf
+ \f3
+ .fl
+@@ -434,7 +434,7 @@
+ .fl
+ \fP
+ .fi
+-is treated as equivalent to
++is treated as equivalent to
+ .nf
+ \f3
+ .fl
+@@ -442,16 +442,16 @@
+ .fl
+ \fP
+ .fi
+-If the Sun PKCS#11 provider has been configured in the \f2java.security\fP security properties file (located in the JRE's \f2$JAVA_HOME/lib/security\fP directory), then keytool and jarsigner can operate on the PKCS#11 token by specifying these options:
++If the Sun PKCS#11 provider has been configured in the \f2java.security\fP security properties file (located in the JRE's \f2$JAVA_HOME/lib/security\fP directory), then keytool and jarsigner can operate on the PKCS#11 token by specifying these options:
+ .RS 3
+ .TP 2
+ o
+-\f2\-keystore NONE\fP
++\f2\-keystore NONE\fP
+ .TP 2
+ o
+-\f2\-storetype PKCS11\fP
++\f2\-storetype PKCS11\fP
+ .RE
+-For example, this command lists the contents of the configured PKCS#11 token:
++For example, this command lists the contents of the configured PKCS#11 token:
+ .nf
+ \f3
+ .fl
+@@ -460,113 +460,113 @@
+ \fP
+ .fi
+ .TP 3
+-\-storetype storetype
++\-storetype storetype
+ Specifies the type of keystore to be instantiated. The default keystore type is the one that is specified as the value of the "keystore.type" property in the security properties file, which is returned by the static \f2getDefaultType\fP method in \f2java.security.KeyStore\fP.
+ .br
+ .br
+-The PIN for a PCKS#11 token can also be specified using the \f2\-storepass\fP option. If none has been specified, keytool and jarsigner will prompt for the token PIN. If the token has a protected authentication path (such as a dedicated PIN\-pad or a biometric reader), then the \f2\-protected\fP option must be specified and no password options can be specified.
++The PIN for a PCKS#11 token can also be specified using the \f2\-storepass\fP option. If none has been specified, keytool and jarsigner will prompt for the token PIN. If the token has a protected authentication path (such as a dedicated PIN\-pad or a biometric reader), then the \f2\-protected\fP option must be specified and no password options can be specified.
+ .TP 3
+-\-storepass[:env | :file] argument
++\-storepass[:env | :file] argument
+ Specifies the password which is required to access the keystore. This is only needed when signing (not verifying) a JAR file. In that case, if a \f2\-storepass\fP option is not provided at the command line, the user is prompted for the password.
+ .br
+ .br
+-If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP. Otherwise, the password is retrieved as follows:
++If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP. Otherwise, the password is retrieved as follows:
+ .RS 3
+ .TP 2
+ o
+-\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
++\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
+ .TP 2
+ o
+-\f2file\fP: Retrieve the password from the file named \f2argument\fP
++\f2file\fP: Retrieve the password from the file named \f2argument\fP
+ .RE
+-Note: The password shouldn't be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system.
++Note: The password shouldn't be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system.
+ .TP 3
+-\-keypass[:env | :file] argument
++\-keypass[:env | :file] argument
+ Specifies the password used to protect the private key of the keystore entry addressed by the alias specified on the command line. The password is required when using \f3jarsigner\fP to sign a JAR file. If no password is provided on the command line, and the required password is different from the store password, the user is prompted for it.
+ .br
+ .br
+-If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP. Otherwise, the password is retrieved as follows:
++If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP. Otherwise, the password is retrieved as follows:
+ .RS 3
+ .TP 2
+ o
+-\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
++\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
+ .TP 2
+ o
+-\f2file\fP: Retrieve the password from the file named \f2argument\fP
++\f2file\fP: Retrieve the password from the file named \f2argument\fP
+ .RE
+-Note: The password shouldn't be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system.
++Note: The password shouldn't be specified on the command line or in a script unless it is for testing purposes, or you are on a secure system.
+ .TP 3
+-\-sigfile file
++\-sigfile file
+ Specifies the base file name to be used for the generated .SF and .DSA files. For example, if \f2file\fP is "DUKESIGN", the generated .SF and .DSA files will be named "DUKESIGN.SF" and "DUKESIGN.DSA", and will be placed in the "META\-INF" directory of the signed JAR file.
+ .br
+ .br
+ The characters in \f2file\fP must come from the set "a\-zA\-Z0\-9_\-". That is, only letters, numbers, underscore, and hyphen characters are allowed. Note: All lowercase characters will be converted to uppercase for the .SF and .DSA file names.
+ .br
+ .br
+-If no \f2\-sigfile\fP option appears on the command line, the base file name for the .SF and .DSA files will be the first 8 characters of the alias name specified on the command line, all converted to upper case. If the alias name has fewer than 8 characters, the full alias name is used. If the alias name contains any characters that are not legal in a signature file name, each such character is converted to an underscore ("_") character in forming the file name.
++If no \f2\-sigfile\fP option appears on the command line, the base file name for the .SF and .DSA files will be the first 8 characters of the alias name specified on the command line, all converted to upper case. If the alias name has fewer than 8 characters, the full alias name is used. If the alias name contains any characters that are not legal in a signature file name, each such character is converted to an underscore ("_") character in forming the file name.
+ .TP 3
+-\-sigalg algorithm
++\-sigalg algorithm
+ Specifies the name of the signature algorithm to use to sign the JAR file.
+ .br
+ .br
+-See
++See
+ .na
+ \f2Appendix A\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard signature algorithm names. This algorithm must be compatible with the private key used to sign the JAR file. If this option is not specified, SHA1withDSA, SHA256withRSA, or SHA256withECDSA will be used depending on the type of private key. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard signature algorithm names. This algorithm must be compatible with the private key used to sign the JAR file. If this option is not specified, SHA1withDSA, SHA256withRSA, or SHA256withECDSA will be used depending on the type of private key. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
+ .TP 3
+-\-digestalg algorithm
++\-digestalg algorithm
+ Specifies the name of the message digest algorithm to use when digesting the entries of a jar file.
+ .br
+ .br
+-See
++See
+ .na
+ \f2Appendix A\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard message digest algorithm names. If this option is not specified, SHA256 will be used. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA of the Java Cryptography Architecture for a list of standard message digest algorithm names. If this option is not specified, SHA256 will be used. There must either be a statically installed provider supplying an implementation of the specified algorithm or the user must specify one with the \f2\-providerClass\fP option, otherwise the command will not succeed.
+ .TP 3
+-\-signedjar file
++\-signedjar file
+ Specifies the name to be used for the signed JAR file.
+ .br
+ .br
+-If no name is specified on the command line, the name used is the same as the input JAR file name (the name of the JAR file to be signed); in other words, that file is overwritten with the signed JAR file.
++If no name is specified on the command line, the name used is the same as the input JAR file name (the name of the JAR file to be signed); in other words, that file is overwritten with the signed JAR file.
+ .TP 3
+-\-verify
++\-verify
+ If this appears on the command line, the specified JAR file will be verified, not signed. If the verification is successful, "jar verified" will be displayed. If you try to verify an unsigned JAR file, or a JAR file signed with an unsupported algorithm (e.g., RSA when you don't have an RSA provider installed), the following is displayed: "jar is unsigned. (signatures missing or not parsable)"
+ .br
+ .br
+ It is possible to verify JAR files signed using either \f3jarsigner\fP or the JDK 1.1 \f3javakey\fP tool, or both.
+ .br
+ .br
+-For further information on verification, see JAR File Verification.
++For further information on verification, see JAR File Verification.
+ .TP 3
+-\-certs
+-If this appears on the command line, along with the \f2\-verify\fP and \f2\-verbose\fP options, the output includes certificate information for each signer of the JAR file. This information includes
++\-certs
++If this appears on the command line, along with the \f2\-verify\fP and \f2\-verbose\fP options, the output includes certificate information for each signer of the JAR file. This information includes
+ .RS 3
+ .TP 2
+ o
+-the name of the type of certificate (stored in the .DSA file) that certifies the signer's public key
++the name of the type of certificate (stored in the .DSA file) that certifies the signer's public key
+ .TP 2
+ o
+-if the certificate is an X.509 certificate (more specifically, an instance of \f2java.security.cert.X509Certificate\fP): the distinguished name of the signer
++if the certificate is an X.509 certificate (more specifically, an instance of \f2java.security.cert.X509Certificate\fP): the distinguished name of the signer
+ .RE
+-The keystore is also examined. If no keystore value is specified on the command line, the default keystore file (if any) will be checked. If the public key certificate for a signer matches an entry in the keystore, then the following information will also be displayed:
++The keystore is also examined. If no keystore value is specified on the command line, the default keystore file (if any) will be checked. If the public key certificate for a signer matches an entry in the keystore, then the following information will also be displayed:
+ .RS 3
+ .TP 2
+ o
+-in parentheses, the alias name for the keystore entry for that signer. If the signer actually comes from a JDK 1.1 identity database instead of from a keystore, the alias name will appear in brackets instead of parentheses.
++in parentheses, the alias name for the keystore entry for that signer. If the signer actually comes from a JDK 1.1 identity database instead of from a keystore, the alias name will appear in brackets instead of parentheses.
+ .RE
+ .TP 3
+-\-certchain file
+-Specifies the certificate chain to be used, if the certificate chain associated with the private key of the keystore entry, addressed by the alias specified on the command line, is not complete. This may happen if the keystore is located on a hardware token where there is not enough capacity to hold a complete certificate chain. The file can be a sequence of X.509 certificates concatenated together, or a single PKCS#7 formatted data block, either in binary encoding format or in printable encoding format (also known as BASE64 encoding) as defined by the Internet RFC 1421 standard.
++\-certchain file
++Specifies the certificate chain to be used, if the certificate chain associated with the private key of the keystore entry, addressed by the alias specified on the command line, is not complete. This may happen if the keystore is located on a hardware token where there is not enough capacity to hold a complete certificate chain. The file can be a sequence of X.509 certificates concatenated together, or a single PKCS#7 formatted data block, either in binary encoding format or in printable encoding format (also known as BASE64 encoding) as defined by the Internet RFC 1421 standard.
+ .TP 3
+-\-verbose
+-If this appears on the command line, it indicates "verbose" mode, which causes \f3jarsigner\fP to output extra information as to the progress of the JAR signing or verification.
++\-verbose
++If this appears on the command line, it indicates "verbose" mode, which causes \f3jarsigner\fP to output extra information as to the progress of the JAR signing or verification.
+ .TP 3
+-\-internalsf
+-In the past, the .DSA (signature block) file generated when a JAR file was signed used to include a complete encoded copy of the .SF file (signature file) also generated. This behavior has been changed. To reduce the overall size of the output JAR file, the .DSA file by default doesn't contain a copy of the .SF file anymore. But if \f2\-internalsf\fP appears on the command line, the old behavior is utilized. \f3This option is mainly useful for testing; in practice, it should not be used, since doing so eliminates a useful optimization.\fP
++\-internalsf
++In the past, the .DSA (signature block) file generated when a JAR file was signed used to include a complete encoded copy of the .SF file (signature file) also generated. This behavior has been changed. To reduce the overall size of the output JAR file, the .DSA file by default doesn't contain a copy of the .SF file anymore. But if \f2\-internalsf\fP appears on the command line, the old behavior is utilized. \f3This option is mainly useful for testing; in practice, it should not be used, since doing so eliminates a useful optimization.\fP
+ .TP 3
+-\-sectionsonly
++\-sectionsonly
+ If this appears on the command line, the .SF file (signature file) generated when a JAR file is signed does \f2not\fP include a header containing a hash of the whole manifest file. It just contains information and hashes related to each individual source file included in the JAR file, as described in The Signature (.SF) File .
+ .br
+ .br
+@@ -576,84 +576,84 @@
+ For further information, see JAR File Verification.
+ .br
+ .br
+-\f3This option is mainly useful for testing; in practice, it should not be used, since doing so eliminates a useful optimization.\fP
++\f3This option is mainly useful for testing; in practice, it should not be used, since doing so eliminates a useful optimization.\fP
+ .TP 3
+-\-protected
+-Either \f2true\fP or \f2false\fP. This value should be specified as \f2true\fP if a password must be given via a protected authentication path such as a dedicated PIN reader.
++\-protected
++Either \f2true\fP or \f2false\fP. This value should be specified as \f2true\fP if a password must be given via a protected authentication path such as a dedicated PIN reader.
+ .TP 3
+-\-providerClass provider\-class\-name
++\-providerClass provider\-class\-name
+ Used to specify the name of cryptographic service provider's master class file when the service provider is not listed in the security properties file, \f2java.security\fP.
+ .br
+ .br
+-Used in conjunction with the \f2\-providerArg\fP \f2ConfigFilePath\fP option, keytool and jarsigner will install the provider dynamically (where \f2ConfigFilePath\fP is the path to the token configuration file). Here's an example of a command to list a PKCS#11 keystore when the Sun PKCS#11 provider has not been configured in the security properties file.
++Used in conjunction with the \f2\-providerArg\fP \f2ConfigFilePath\fP option, keytool and jarsigner will install the provider dynamically (where \f2ConfigFilePath\fP is the path to the token configuration file). Here's an example of a command to list a PKCS#11 keystore when the Sun PKCS#11 provider has not been configured in the security properties file.
+ .nf
+ \f3
+ .fl
+-jarsigner \-keystore NONE \-storetype PKCS11 \\
++jarsigner \-keystore NONE \-storetype PKCS11 \\
+ .fl
+- \-providerClass sun.security.pkcs11.SunPKCS11 \\
++ \-providerClass sun.security.pkcs11.SunPKCS11 \\
+ .fl
+- \-providerArg /foo/bar/token.config \\
++ \-providerArg /foo/bar/token.config \\
+ .fl
+ \-list
+ .fl
+ \fP
+ .fi
+ .TP 3
+-\-providerName providerName
++\-providerName providerName
+ If more than one provider has been configured in the \f2java.security\fP security properties file, you can use the \f2\-providerName\fP option to target a specific provider instance. The argument to this option is the name of the provider.
+ .br
+ .br
+-For the Sun PKCS#11 provider, \f2providerName\fP is of the form \f2SunPKCS11\-\fP\f2TokenName\fP, where \f2TokenName\fP is the name suffix that the provider instance has been configured with, as detailed in the
++For the Sun PKCS#11 provider, \f2providerName\fP is of the form \f2SunPKCS11\-\fP\f2TokenName\fP, where \f2TokenName\fP is the name suffix that the provider instance has been configured with, as detailed in the
+ .na
+ \f2configuration attributes table\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#ATTRS. For example, the following command lists the contents of the PKCS#11 keystore provider instance with name suffix \f2SmartCard\fP:
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html#ATTRS. For example, the following command lists the contents of the PKCS#11 keystore provider instance with name suffix \f2SmartCard\fP:
+ .nf
+ \f3
+ .fl
+-jarsigner \-keystore NONE \-storetype PKCS11 \\
++jarsigner \-keystore NONE \-storetype PKCS11 \\
+ .fl
+- \-providerName SunPKCS11\-SmartCard \\
++ \-providerName SunPKCS11\-SmartCard \\
+ .fl
+ \-list
+ .fl
+ \fP
+ .fi
+ .TP 3
+-\-Jjavaoption
+-Passes through the specified \f2javaoption\fP string directly to the Java interpreter. (\f3jarsigner\fP is actually a "wrapper" around the interpreter.) This option should not contain any spaces. It is useful for adjusting the execution environment or memory usage. For a list of possible interpreter options, type \f2java \-h\fP or \f2java \-X\fP at the command line.
++\-Jjavaoption
++Passes through the specified \f2javaoption\fP string directly to the Java interpreter. (\f3jarsigner\fP is actually a "wrapper" around the interpreter.) This option should not contain any spaces. It is useful for adjusting the execution environment or memory usage. For a list of possible interpreter options, type \f2java \-h\fP or \f2java \-X\fP at the command line.
+ .TP 3
+-\-tsa url
++\-tsa url
+ If \f2"\-tsa http://example.tsa.url"\fP appears on the command line when signing a JAR file then a timestamp is generated for the signature. The URL, \f2http://example.tsa.url\fP, identifies the location of the Time Stamping Authority (TSA). It overrides any URL found via the \f2\-tsacert\fP option. The \f2\-tsa\fP option does not require the TSA's public key certificate to be present in the keystore.
+ .br
+ .br
+-To generate the timestamp, \f2jarsigner\fP communicates with the TSA using the Time\-Stamp Protocol (TSP) defined in
++To generate the timestamp, \f2jarsigner\fP communicates with the TSA using the Time\-Stamp Protocol (TSP) defined in
+ .na
+ \f2RFC 3161\fP @
+ .fi
+-http://www.ietf.org/rfc/rfc3161.txt. If successful, the timestamp token returned by the TSA is stored along with the signature in the signature block file.
++http://www.ietf.org/rfc/rfc3161.txt. If successful, the timestamp token returned by the TSA is stored along with the signature in the signature block file.
+ .TP 3
+-\-tsacert alias
++\-tsacert alias
+ If \f2"\-tsacert alias"\fP appears on the command line when signing a JAR file then a timestamp is generated for the signature. The \f2alias\fP identifies the TSA's public key certificate in the keystore that is currently in effect. The entry's certificate is examined for a Subject Information Access extension that contains a URL identifying the location of the TSA.
+ .br
+ .br
+-The TSA's public key certificate must be present in the keystore when using \f2\-tsacert\fP.
++The TSA's public key certificate must be present in the keystore when using \f2\-tsacert\fP.
+ .TP 3
+-\-altsigner class
++\-altsigner class
+ Specifies that an alternative signing mechanism be used. The fully\-qualified class name identifies a class file that extends the \f2com.sun.jarsigner.ContentSigner abstract class\fP. The path to this class file is defined by the \f2\-altsignerpath\fP option. If the \f2\-altsigner\fP option is used, \f2jarsigner\fP uses the signing mechanism provided by the specified class. Otherwise, \f2jarsigner\fP uses its default signing mechanism.
+ .br
+ .br
+-For example, to use the signing mechanism provided by a class named \f2com.sun.sun.jarsigner.AuthSigner\fP, use the \f2jarsigner\fP option \f2"\-altsigner com.sun.jarsigner.AuthSigner"\fP
++For example, to use the signing mechanism provided by a class named \f2com.sun.sun.jarsigner.AuthSigner\fP, use the \f2jarsigner\fP option \f2"\-altsigner com.sun.jarsigner.AuthSigner"\fP
+ .TP 3
+-\-altsignerpath classpathlist
++\-altsignerpath classpathlist
+ Specifies the path to the class file (the class file name is specified with the \f2\-altsigner\fP option described above) and any JAR files it depends on. If the class file is in a JAR file, then this specifies the path to that JAR file, as shown in the example below.
+ .br
+ .br
+ An absolute path or a path relative to the current directory may be specified. If \f2classpathlist\fP contains multiple paths or JAR files, they should be separated with a colon (\f2:\fP) on Solaris and a semi\-colon (\f2;\fP) on Windows. This option is not necessary if the class is already in the search path.
+ .br
+ .br
+-Example of specifying the path to a jar file that contains the class file:
++Example of specifying the path to a jar file that contains the class file:
+ .nf
+ \f3
+ .fl
+@@ -664,7 +664,7 @@
+ Note that the JAR file name is included.
+ .br
+ .br
+-Example of specifying the path to the jar file that contains the class file:
++Example of specifying the path to the jar file that contains the class file:
+ .nf
+ \f3
+ .fl
+@@ -672,19 +672,19 @@
+ .fl
+ \fP
+ .fi
+-Note that the JAR file name is omitted.
++Note that the JAR file name is omitted.
+ .TP 3
+-\-strict
+-During the signing or verifying process, some warning messages may be shown. If this option appears on the command line, the exit code of the tool will reflect the warning messages that are found. Read the "WARNINGS" section for details.
++\-strict
++During the signing or verifying process, some warning messages may be shown. If this option appears on the command line, the exit code of the tool will reflect the warning messages that are found. Read the "WARNINGS" section for details.
+ .TP 3
+-\-verbose:sub\-options
+-For the verifying process, the \f2\-verbose\fP option takes sub\-options to determine how much information will be shown. If \f2\-certs\fP is also specified, the default mode (or sub\-option all) displays each entry as it is being processed and following that, the certificate information for each signer of the JAR file. If \f2\-certs\fP and the \f2\-verbose:grouped\fP sub\-option are specified, entries with the same signer info are grouped and displayed together along with their certificate information. If \f2\-certs\fP and the \f2\-verbose:summary\fP sub\-option are specified, then entries with the same signer info are grouped and displayed together along with their certificate information but details about each entry are summarized and displayed as "one entry (and more)". See the examples section for more information.
++\-verbose:sub\-options
++For the verifying process, the \f2\-verbose\fP option takes sub\-options to determine how much information will be shown. If \f2\-certs\fP is also specified, the default mode (or sub\-option all) displays each entry as it is being processed and following that, the certificate information for each signer of the JAR file. If \f2\-certs\fP and the \f2\-verbose:grouped\fP sub\-option are specified, entries with the same signer info are grouped and displayed together along with their certificate information. If \f2\-certs\fP and the \f2\-verbose:summary\fP sub\-option are specified, then entries with the same signer info are grouped and displayed together along with their certificate information but details about each entry are summarized and displayed as "one entry (and more)". See the examples section for more information.
+ .RE
+
+ .LP
+ .SH "EXAMPLES"
+ .LP
+-.SS
++.SS
+ Signing a JAR File
+ .LP
+ .LP
+@@ -742,7 +742,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Verifying a Signed JAR File
+ .LP
+ .LP
+@@ -808,7 +808,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Verification with Certificate Information
+ .LP
+ .LP
+@@ -867,7 +867,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Verification of a JAR File that Includes Identity Database Signers
+ .LP
+ .LP
+@@ -924,7 +924,7 @@
+ .LP
+ .SH "WARNINGS"
+ .LP
+-During the signing/verifying process, jarsigner may display various warnings. These warning codes are defined as follows:
++During the signing/verifying process, jarsigner may display various warnings. These warning codes are defined as follows:
+ .nf
+ \f3
+ .fl
+@@ -1011,7 +1011,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Compatibility with JDK 1.1
+ .LP
+ .LP
+@@ -1023,13 +1023,13 @@
+ .RS 3
+ .TP 2
+ o
+-It is possible to import the information from an identity database into a keystore, via the \f3keytool\fP \f2\-identitydb\fP command.
++It is possible to import the information from an identity database into a keystore, via the \f3keytool\fP \f2\-identitydb\fP command.
+ .TP 2
+ o
+-\f3jarsigner\fP can sign JAR files also previously signed using \f3javakey\fP.
++\f3jarsigner\fP can sign JAR files also previously signed using \f3javakey\fP.
+ .TP 2
+ o
+-\f3jarsigner\fP can verify JAR files signed using \f3javakey\fP. Thus, it recognizes and can work with signer aliases that are from a JDK 1.1 identity database rather than a Java 2 SDK keystore.
++\f3jarsigner\fP can verify JAR files signed using \f3javakey\fP. Thus, it recognizes and can work with signer aliases that are from a JDK 1.1 identity database rather than a Java 2 SDK keystore.
+ .RE
+
+ .LP
+@@ -1037,6 +1037,7 @@
+ The following table explains how JAR files that were signed in JDK 1.1.x are treated in the Java 2 platform.
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -1361,7 +1362,7 @@
+ .ne \n(b|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3JAR File Type\fP\h'|\n(41u'\f3Identity in 1.1 database\fP\h'|\n(42u'\h'|\n(43u'\h'|\n(44u'\f3Privileges Granted\fP
+@@ -1384,7 +1385,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'NO\h'|\n(42u'NO\h'|\n(43u'NO\h'|\n(44u'
+@@ -1400,7 +1401,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Unsigned JAR\h'|\n(41u'NO\h'|\n(42u'NO\h'|\n(43u'NO\h'|\n(44u'
+@@ -1416,7 +1417,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'NO\h'|\n(42u'YES\h'|\n(43u'NO\h'|\n(44u'
+@@ -1432,7 +1433,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Untrusted\h'|\n(42u'NO\h'|\n(43u'NO\h'|\n(44u'
+@@ -1448,7 +1449,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Untrusted\h'|\n(42u'NO\h'|\n(43u'YES\h'|\n(44u'
+@@ -1464,7 +1465,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'NO\h'|\n(42u'YES\h'|\n(43u'YES\h'|\n(44u'
+@@ -1480,7 +1481,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Trusted\h'|\n(42u'YES\h'|\n(43u'YES\h'|\n(44u'
+@@ -1494,15 +1495,15 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Trusted\h'|\n(42u'NO\h'|\n(43u'NO\h'|\n(44u'All privileges
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Trusted\h'|\n(42u'YES\h'|\n(43u'NO\h'|\n(44u'All privileges (1)
+-.ta \n(80u \n(81u \n(82u \n(83u \n(84u
++.ta \n(80u \n(81u \n(82u \n(83u \n(84u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Signed JAR\h'|\n(41u'YES/Trusted\h'|\n(42u'NO\h'|\n(43u'YES\h'|\n(44u'All privileges (1)
+@@ -1519,6 +1520,7 @@
+ .rm g+
+ .rm h+
+ .rm i+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-42
+
+ .LP
+@@ -1528,16 +1530,16 @@
+ .RS 3
+ .TP 3
+ 1.
+-If an identity/alias is mentioned in the policy file, it must be imported into the keystore for the policy file to have any effect on privileges granted.
++If an identity/alias is mentioned in the policy file, it must be imported into the keystore for the policy file to have any effect on privileges granted.
+ .TP 3
+ 2.
+-The policy file/keystore combination has precedence over a trusted identity in the identity database.
++The policy file/keystore combination has precedence over a trusted identity in the identity database.
+ .TP 3
+ 3.
+-Untrusted identities are ignored in the Java 2 platform.
++Untrusted identities are ignored in the Java 2 platform.
+ .TP 3
+ 4.
+-Only trusted identities can be imported into Java 2 SDK keystores.
++Only trusted identities can be imported into Java 2 SDK keystores.
+ .RE
+
+ .LP
+@@ -1546,22 +1548,22 @@
+ .RS 3
+ .TP 2
+ o
+-jar(1) tool documentation
++jar(1) tool documentation
+ .TP 2
+ o
+-keytool(1) tool documentation
++keytool(1) tool documentation
+ .TP 2
+ o
+-the
++the
+ .na
+ \f4Security\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/security/index.html trail of the
++http://docs.oracle.com/javase/tutorial/security/index.html trail of the
+ .na
+ \f4Java Tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/index.html for examples of the use of the \f3jarsigner\fP tool
++http://docs.oracle.com/javase/tutorial/index.html for examples of the use of the \f3jarsigner\fP tool
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/java.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/java.1 2013-03-09 08:44:53.000000000 -0800
+@@ -1,4 +1,4 @@
+-." Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
++." Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved.
+ ." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ ."
+ ." This code is free software; you can redistribute it and/or modify it
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH java 1 "10 May 2011"
++.TH java 1 "20 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -39,17 +39,17 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options.
++options
++Command\-line options.
+ .TP 3
+-class
+-Name of the class to be invoked.
++class
++Name of the class to be invoked.
+ .TP 3
+-file.jar
+-Name of the jar file to be invoked. Used only with \f2\-jar\fP.
++file.jar
++Name of the jar file to be invoked. Used only with \f2\-jar\fP.
+ .TP 3
+-argument
+-Argument passed to the \f3main\fP function.
++argument
++Argument passed to the \f3main\fP function.
+ .RE
+
+ .LP
+@@ -88,27 +88,27 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-client
++\-client
+ Select the Java HotSpot Client VM. A 64\-bit capable jdk currently ignores this option and instead uses the Java Hotspot Server VM.
+ .br
+ .br
+-For default VM selection, see
++For default VM selection, see
+ .na
+ \f2Server\-Class Machine Detection\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html
+ .TP 3
+-\-server
++\-server
+ Select the Java HotSpot Server VM. On a 64\-bit capable jdk only the Java Hotspot Server VM is supported so the \-server option is implicit.
+ .br
+ .br
+-For default VM selection, see
++For default VM selection, see
+ .na
+ \f2Server\-Class Machine Detection\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/server\-class.html
+ .TP 3
+-\-agentlib:libname[=options]
++\-agentlib:libname[=options]
+ Load native agent library \f2libname\fP, e.g.
+ .br
+ .br
+@@ -121,151 +121,160 @@
+ \-agentlib:hprof=help
+ .br
+ .br
+-For more information, see
++For more information, see
+ .na
+ \f2JVMTI Agent Command Line Options\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting.
++http://docs.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting.
+ .TP 3
+-\-agentpath:pathname[=options]
+-Load a native agent library by full pathname. For more information, see
++\-agentpath:pathname[=options]
++Load a native agent library by full pathname. For more information, see
+ .na
+ \f2JVMTI Agent Command Line Options\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting.
++http://docs.oracle.com/javase/7/docs/platform/jvmti/jvmti.html#starting.
+ .TP 3
+-\-classpath classpath
++\-classpath classpath
+ .TP 3
+-\-cp classpath
++\-cp classpath
+ Specify a list of directories, JAR archives, and ZIP archives to search for class files. Class path entries are separated by colons (\f3:\fP). Specifying \f3\-classpath\fP or \f3\-cp\fP overrides any setting of the \f3CLASSPATH\fP environment variable.
+ .br
+ .br
+-If \f3\-classpath\fP and \f3\-cp\fP are not used and \f3CLASSPATH\fP is not set, the user class path consists of the current directory (\f4.\fP).
++If \f3\-classpath\fP and \f3\-cp\fP are not used and \f3CLASSPATH\fP is not set, the user class path consists of the current directory (\f4.\fP).
+ .br
+ .br
+ As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a java program cannot tell the difference between the two invocations).
+ .br
+ .br
+-For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
++For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
+ .br
+ .br
+-For more information on class paths, see
++For more information on class paths, see
+ .na
+ \f2Setting the Class Path\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#classpath.
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath.
+ .TP 3
+-\-Dproperty=value
+-Set a system property value.
++\-Dproperty=value
++Set a system property value.
+ .TP 3
+-\-d32
++\-d32
+ .TP 3
+-\-d64
++\-d64
+ Request that the program to be run in a 32\-bit or 64\-bit environment, respectively. If the requested environment is not installed or is not supported, an error is reported.
+ .br
+ .br
+ Currently only the Java HotSpot Server VM supports 64\-bit operation, and the "\-server" option is implicit with the use of \-d64. And the "\-client" option is ignored with the use of \-d64. This is subject to change in a future release.
+ .br
+ .br
+-If neither \f3\-d32\fP nor \f3\-d64\fP is specified, the default is to run in a 32\-bit environment, except for 64\-bit only systems. This is subject to change in a future release.
++If neither \f3\-d32\fP nor \f3\-d64\fP is specified, the default is to run in a 32\-bit environment, except for 64\-bit only systems. This is subject to change in a future release.
+ .TP 3
+-\-enableassertions[:<package name>"..." | :<class name> ]
++\-enableassertions[:<package name>"..." | :<class name> ]
+ .TP 3
+-\-ea[:<package name>"..." | :<class name> ]
+-Enable assertions. Assertions are disabled by default.
++\-ea[:<package name>"..." | :<class name> ]
++.TP 3
++\-disableassertions[:<package name>"..." | :<class name> ]
++.TP 3
++\-da[:<package name>"..." | :<class name> ]
++Disable assertions. This is the default.
+ .br
+ .br
+-With no arguments, \f3enableassertions\fP or \f3\-ea\fP enables assertions. With one argument ending in \f2"..."\fP, the switch enables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch enables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch enables assertions in the specified class.
++With no arguments, \f3disableassertions\fP or \f3\-da\fP disables assertions. With one argument ending in \f2"..."\fP, the switch disables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch disables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch disables assertions in the specified class.
+ .br
+ .br
+-If a single command line contains multiple instances of these switches, they are processed in order before loading any classes. So, for example, to run a program with assertions enabled only in package \f2com.wombat.fruitbat\fP (and any subpackages), the following command could be used:
++To run a program with assertions enabled in package \f2com.wombat.fruitbat\fP but disabled in class \f2com.wombat.fruitbat.Brickbat\fP, the following command could be used:
+ .nf
+ \f3
+ .fl
+-java \-ea:com.wombat.fruitbat... <Main Class>
++java \-ea:com.wombat.fruitbat... \-da:com.wombat.fruitbat.Brickbat \fP\f4<Main Class>\fP\f3
+ .fl
+ \fP
+ .fi
+-The \f3\-enableassertions\fP and \f3\-ea\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-enablesystemassertions\fP below.
+-.TP 3
+-\-disableassertions[:<package name>"..." | :<class name> ]
+-.TP 3
+-\-da[:<package name>"..." | :<class name> ]
+-Disable assertions. This is the default.
++The \f3\-disableassertions\fP and \f3\-da\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-disablesystemassertions\fP below.
++Enable assertions. Assertions are disabled by default.
+ .br
+ .br
+-With no arguments, \f3disableassertions\fP or \f3\-da\fP disables assertions. With one argument ending in \f2"..."\fP, the switch disables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch disables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch disables assertions in the specified class.
++With no arguments, \f3enableassertions\fP or \f3\-ea\fP enables assertions. With one argument ending in \f2"..."\fP, the switch enables assertions in the specified package and any subpackages. If the argument is simply \f2"..."\fP, the switch enables assertions in the unnamed package in the current working directory. With one argument not ending in \f2"..."\fP, the switch enables assertions in the specified class.
+ .br
+ .br
+-To run a program with assertions enabled in package \f2com.wombat.fruitbat\fP but disabled in class \f2com.wombat.fruitbat.Brickbat\fP, the following command could be used:
++If a single command line contains multiple instances of these switches, they are processed in order before loading any classes. So, for example, to run a program with assertions enabled only in package \f2com.wombat.fruitbat\fP (and any subpackages), the following command could be used:
+ .nf
+ \f3
+ .fl
+-java \-ea:com.wombat.fruitbat... \-da:com.wombat.fruitbat.Brickbat \fP\f4<Main Class>\fP\f3
++java \-ea:com.wombat.fruitbat... <Main Class>
+ .fl
+ \fP
+ .fi
+-The \f3\-disableassertions\fP and \f3\-da\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-disablesystemassertions\fP below.
++The \f3\-enableassertions\fP and \f3\-ea\fP switches apply to \f2all\fP class loaders and to system classes (which do not have a class loader). There is one exception to this rule: in their no\-argument form, the switches do \f2not\fP apply to system. This makes it easy to turn on asserts in all classes except for system classes. A separate switch is provided to enable asserts in all system classes; see \f3\-enablesystemassertions\fP below.
+ .TP 3
+-\-enablesystemassertions
++\-enablesystemassertions
+ .TP 3
+-\-esa
+-Enable asserts in all system classes (sets the \f2default assertion status\fP for system classes to \f2true\fP).
++\-esa
++Enable asserts in all system classes (sets the \f2default assertion status\fP for system classes to \f2true\fP).
+ .TP 3
+-\-disablesystemassertions
++\-disablesystemassertions
+ .TP 3
+-\-dsa
+-Disables asserts in all system classes.
++\-dsa
++Disables asserts in all system classes.
+ .TP 3
+-\-jar
+-Execute a program encapsulated in a JAR file. The first argument is the name of a JAR file instead of a startup class name. In order for this option to work, the manifest of the JAR file must contain a line of the form \f3Main\-Class: \fP\f4classname\fP. Here, \f2classname\fP identifies the class having the \f2public\ static\ void\ main(String[]\ args)\fP method that serves as your application's starting point. See the jar(1) and the Jar trail of the
++\-help or \-?
++Display usage information and exit.
++.TP 3
++\-jar
++Execute a program encapsulated in a JAR file. The first argument is the name of a JAR file instead of a startup class name. In order for this option to work, the manifest of the JAR file must contain a line of the form \f3Main\-Class: \fP\f4classname\fP. Here, \f2classname\fP identifies the class having the \f2public\ static\ void\ main(String[]\ args)\fP method that serves as your application's starting point. See the jar(1) and the Jar trail of the
+ .na
+ \f2Java Tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/deployment/jar for information about working with Jar files and Jar\-file manifests.
++http://docs.oracle.com/javase/tutorial/deployment/jar for information about working with Jar files and Jar\-file manifests.\
+ .br
+ .br
+ When you use this option, the JAR file is the source of all user classes, and other user class path settings are ignored.
+ .br
+ .br
+-Note that JAR files that can be run with the "java \-jar" option can have their execute permissions set so they can be run without using "java \-jar". Refer to
++Note that JAR files that can be run with the "java \-jar" option can have their execute permissions set so they can be run without using "java \-jar". Refer to
+ .na
+ \f2Java Archive (JAR) Files\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jar/index.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/jar/index.html.
+ .TP 3
+-\-javaagent:jarpath[=options]
+-Load a Java programming language agent, see
++\-javaagent:jarpath[=options]
++Load a Java programming language agent, see
+ .na
+ \f2java.lang.instrument\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/lang/instrument/package\-summary.html.
++http://docs.oracle.com/javase/7/docs/api/java/lang/instrument/package\-summary.html.
++.TP 3
++\-jre\-restrict\-search
++Include user\-private JREs in the version search.
++.TP 3
++\-no\-jre\-restrict\-search
++Exclude user\-private JREs in the version search.
+ .TP 3
+-\-jre\-restrict\-search
+-Include user\-private JREs in the version search.
++\-showversion
++Display version information and continue. (See also \f3\-version\fP.)
+ .TP 3
+-\-no\-jre\-restrict\-search
+-Exclude user\-private JREs in the version search.
++\-splash:imagepath
++Show splash screen with image specified by \f2imagepath\fP.
+ .TP 3
+-\-verbose
++\-verbose
+ .TP 3
+-\-verbose:class
+-Display information about each class loaded.
++\-verbose:class
++Display information about each class loaded.
+ .TP 3
+-\-verbose:gc
+-Report on each garbage collection event.
++\-verbose:gc
++Report on each garbage collection event.
+ .TP 3
+-\-verbose:jni
+-Report information about use of native methods and other Java Native Interface activity.
++\-verbose:jni
++Report information about use of native methods and other Java Native Interface activity.
+ .TP 3
+-\-version
+-Display version information and exit.
++\-version
++Display version information and exit. (See also \f3\-showversion\fP.)
+ .TP 3
+-\-version:release
++\-version:release
+ Specifies that the version specified by \f2release\fP is required by the class or jar file specified on the command line. If the version of the java command invoked does not meet this specification and an appropriate implementation is found on the system, the appropriate implementation will be used.
+ .br
+ .br
+-\f2release\fP not only can specify an exact version, but can also specify a list of versions called a version string. A version string is an ordered list of version ranges separated by spaces. A version range is either a version\-id, a version\-id followed by a star (*), a version\-id followed by a plus sign (+) , or two version\-ranges combined using an ampersand (&). The star means prefix match, the plus sign means this version or greater, and the ampersand means the logical anding of the two version\-ranges. For example:
++\f2release\fP not only can specify an exact version, but can also specify a list of versions called a version string. A version string is an ordered list of version ranges separated by spaces. A version range is either a version\-id, a version\-id followed by a star (*), a version\-id followed by a plus sign (+) , or two version\-ranges combined using an ampersand (&). The star means prefix match, the plus sign means this version or greater, and the ampersand means the logical anding of the two version\-ranges. For example:
+ .nf
+ \f3
+ .fl
+@@ -279,71 +288,63 @@
+ For jar files, the usual preference is to specify version requirements in the jar file manifest rather than on the command line.
+ .br
+ .br
+-See the following NOTES section for important policy information on the use of this option.
+-.TP 3
+-\-showversion
+-Display version information and continue.
+-.TP 3
+-\-?
+-.TP 3
+-\-help
+-Display usage information and exit.
+-.TP 3
+-\-splash:imagepath
+-Show splash screen with image specified by \f2imagepath\fP.
+-.TP 3
+-\-X
+-Display information about non\-standard options and exit.
++See the following NOTES section for important policy information on the use of this option.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Non\-Standard Options
+ .LP
+ .RS 3
+ .TP 3
+-\-Xint
+-Operate in interpreted\-only mode. Compilation to native code is disabled, and all bytecodes are executed by the interpreter. The performance benefits offered by the Java HotSpot VMs' adaptive compiler will not be present in this mode.
++\-X
++Display information about non\-standard options and exit.
+ .TP 3
+-\-Xbatch
+-Disable background compilation. Normally the VM will compile the method as a background task, running the method in interpreter mode until the background compilation is finished. The \f2\-Xbatch\fP flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed.
++\-Xint
++Operate in interpreted\-only mode. Compilation to native code is disabled, and all bytecodes are executed by the interpreter. The performance benefits offered by the Java HotSpot VMs' adaptive compiler will not be present in this mode.
+ .TP 3
+-\-Xbootclasspath:bootclasspath
+-Specify a colon\-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the Java platform JDK. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
++\-Xbatch
++Disable background compilation. Normally the VM will compile the method as a background task, running the method in interpreter mode until the background compilation is finished. The \f2\-Xbatch\fP flag disables background compilation so that compilation of all methods proceeds as a foreground task until completed.
+ .TP 3
+-\-Xbootclasspath/a:path
+-Specify a colon\-separated path of directires, JAR archives, and ZIP archives to append to the default bootstrap class path.
++\-Xbootclasspath:bootclasspath
++Specify a colon\-separated list of directories, JAR archives, and ZIP archives to search for boot class files. These are used in place of the boot class files included in the Java platform JDK. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
+ .TP 3
+-\-Xbootclasspath/p:path
+-Specify a colon\-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
++\-Xbootclasspath/a:path
++Specify a colon\-separated path of directires, JAR archives, and ZIP archives to append to the default bootstrap class path.
+ .TP 3
+-\-Xcheck:jni
+-Perform additional checks for Java Native Interface (JNI) functions. Specifically, the Java Virtual Machine validates the parameters passed to the JNI function as well as the runtime environment data before processing the JNI request. Any invalid data encountered indicates a problem in the native code, and the Java Virtual Machine will terminate with a fatal error in such cases. Expect a performance degradation when this option is used.
++\-Xbootclasspath/p:path
++Specify a colon\-separated path of directires, JAR archives, and ZIP archives to prepend in front of the default bootstrap class path. \f2Note: Applications that use this option for the purpose of overriding a class in rt.jar should not be deployed as doing so would contravene the Java Runtime Environment binary code license.\fP
+ .TP 3
+-\-Xfuture
+-Perform strict class\-file format checks. For purposes of backwards compatibility, the default format checks performed by the JDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The \f3\-Xfuture\fP flag turns on stricter class\-file format checks that enforce closer conformance to the class\-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
++\-Xcheck:jni
++Perform additional checks for Java Native Interface (JNI) functions. Specifically, the Java Virtual Machine validates the parameters passed to the JNI function as well as the runtime environment data before processing the JNI request. Any invalid data encountered indicates a problem in the native code, and the Java Virtual Machine will terminate with a fatal error in such cases. Expect a performance degradation when this option is used.
+ .TP 3
+-\-Xnoclassgc
+-Disable class garbage collection. Use of this option will prevent memory recovery from loaded classes thus increasing overall memory usage. This could cause OutOfMemoryError to be thrown in some applications.
++\-Xfuture
++Perform strict class\-file format checks. For purposes of backwards compatibility, the default format checks performed by the JDK's virtual machine are no stricter than the checks performed by 1.1.x versions of the JDK software. The \f3\-Xfuture\fP flag turns on stricter class\-file format checks that enforce closer conformance to the class\-file format specification. Developers are encouraged to use this flag when developing new code because the stricter checks will become the default in future releases of the Java application launcher.
+ .TP 3
+-\-Xincgc
+-Enable the incremental garbage collector. The incremental garbage collector, which is off by default, will reduce the occasional long garbage\-collection pauses during program execution. The incremental garbage collector will at times execute concurrently with the program and during such times will reduce the processor capacity available to the program.
++\-Xnoclassgc
++Disable class garbage collection. Use of this option will prevent memory recovery from loaded classes thus increasing overall memory usage. This could cause OutOfMemoryError to be thrown in some applications.
+ .TP 3
+-\-Xloggc:file
++\-Xincgc
++Enable the incremental garbage collector. The incremental garbage collector, which is off by default, will reduce the occasional long garbage\-collection pauses during program execution. The incremental garbage collector will at times execute concurrently with the program and during such times will reduce the processor capacity available to the program.
++.TP 3
++\-Xloggc:file
+ Report on each garbage collection event, as with \-verbose:gc, but log this data to \f2file\fP. In addition to the information \f2\-verbose:gc\fP gives, each reported event will be preceeded by the time (in seconds) since the first garbage\-collection event.
+ .br
+ .br
+-Always use a local file system for storage of this file to avoid stalling the JVM due to network latency. The file may be truncated in the case of a full file system and logging will continue on the truncated file. This option overrides \f2\-verbose:gc\fP if both are given on the command line.
++Always use a local file system for storage of this file to avoid stalling the JVM due to network latency. The file may be truncated in the case of a full file system and logging will continue on the truncated file. This option overrides \f2\-verbose:gc\fP if both are given on the command line.
++.TP 3
++\-Xmnsize or \-XX:NewSize
++Sets the size of the young generation (nursery).
+ .TP 3
+-\-Xmsn
+-Specify the initial size, in bytes, of the memory allocation pool. This value must be a multiple of 1024 greater than 1MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see
++\-Xmsn
++Specify the initial size, in bytes, of the memory allocation pool. This value must be a multiple of 1024 greater than 1MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see
+ .na
+ \f2HotSpot Ergonomics\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html
+ .br
+ .br
+-Examples:
++Examples:
+ .nf
+ \f3
+ .fl
+@@ -358,15 +359,15 @@
+ \fP
+ .fi
+ .TP 3
+-\-Xmxn
+-Specify the maximum size, in bytes, of the memory allocation pool. This value must a multiple of 1024 greater than 2MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see
++\-Xmxn
++Specify the maximum size, in bytes, of the memory allocation pool. This value must a multiple of 1024 greater than 2MB. Append the letter \f2k\fP or \f2K\fP to indicate kilobytes, or \f2m\fP or \f2M\fP to indicate megabytes. The default value is chosen at runtime based on system configuration. For more information, see
+ .na
+ \f2HotSpot Ergonomics\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/vm/gc\-ergonomics.html
+ .br
+ .br
+-Examples:
++Examples:
+ .nf
+ \f3
+ .fl
+@@ -380,12 +381,12 @@
+ .fl
+ \fP
+ .fi
+-On Solaris 7 and Solaris 8 SPARC platforms, the upper limit for this value is approximately 4000m minus overhead amounts. On Solaris 2.6 and x86 platforms, the upper limit is approximately 2000m minus overhead amounts. On Bsd platforms, the upper limit is approximately 2000m minus overhead amounts.
++On Solaris 7 and Solaris 8 SPARC platforms, the upper limit for this value is approximately 4000m minus overhead amounts. On Solaris 2.6 and x86 platforms, the upper limit is approximately 2000m minus overhead amounts. On Linux and BSD platforms, the upper limit is approximately 2000m minus overhead amounts.
+ .TP 3
+-\-Xprof
+-Profiles the running program, and sends profiling data to standard output. This option is provided as a utility that is useful in program development and is not intended to be used in production systems.
++\-Xprof
++Profiles the running program, and sends profiling data to standard output. This option is provided as a utility that is useful in program development and is not intended to be used in production systems.
+ .TP 3
+-\-Xrs
++\-Xrs
+ Reduces use of operating\-system signals by the Java virtual machine (JVM).
+ .br
+ .br
+@@ -401,36 +402,109 @@
+ Applications embedding the JVM frequently need to trap signals like SIGINT or SIGTERM, which can lead to interference with the JVM's own signal handlers. The \f3\-Xrs\fP command\-line option is available to address this issue. When \f3\-Xrs\fP is used on Sun's JVM, the signal masks for SIGINT, SIGTERM, SIGHUP, and SIGQUIT are not changed by the JVM, and signal handlers for these signals are not installed.
+ .br
+ .br
+-There are two consequences of specifying \f3\-Xrs\fP:
++There are two consequences of specifying \f3\-Xrs\fP:
+ .RS 3
+ .TP 2
+ o
+-SIGQUIT thread dumps are not available.
++SIGQUIT thread dumps are not available.
+ .TP 2
+ o
+-User code is responsible for causing shutdown hooks to run, for example by calling System.exit() when the JVM is to be terminated.
++User code is responsible for causing shutdown hooks to run, for example by calling System.exit() when the JVM is to be terminated.
+ .RE
+ .TP 3
+-\-Xssn
+-Set thread stack size.
++\-Xssn
++Set thread stack size.
+ .TP 3
+-\-XX:+UseAltSigs
+-The VM uses \f2SIGUSR1\fP and \f2SIGUSR2\fP by default, which can sometimes conflict with applications that signal\-chain \f2SIGUSR1\fP and \f2SIGUSR2\fP. The \f2\-XX:+UseAltSigs\fP option will cause the VM to use signals other than \f2SIGUSR1\fP and \f2SIGUSR2\fP as the default.
+-.RE
+-
+-.LP
+-.SH "NOTES"
+-.LP
+-.LP
+-The \f3\-version:\fP\f2release\fP command line option places no restrictions on the complexity of the release specification. However, only a restricted subset of the possible release specifications represent sound policy and only these are fully supported. These policies are:
++\-XX:AllocationPrefetchStyle=n
++Sets the style of prefetch used during allocation. default=2.
++.br
++.TP 3
++\-XX:+AggressiveOpts
++Enables aggressive optimization.
++.br
++.TP 3
++\-XX:+|\-DisableAttachMechanism
++This option specifies whether tools (such as \f2jmap\fP and \f2jconsole\fP) are allowed to attach to the JVM. By default, this feature is disabled. That is, attaching is enabled. Example usage:
++.nf
++\f3
++.fl
++ java \-XX:+DisableAttachMechanism
++.fl
++\fP
++.fi
++.TP 3
++\-XXLargePageSizeInBytes=n
++This option specifies the maximum size for large pages.
++.TP 3
++\-XX:MaxGCPauseMillis=n
++Sets a target for the maximum GC pause time.
++.br
++This is a soft goal, and the JVM will make its best effort to achieve it.
++.TP 3
++\-XX:NewSize
++Sets the size of the young generation (nursery). Sames as \f3\-Xmn\fP\f4size\fP.
++.TP 3
++\-XX:ParallelGCThreads=n
++Sets the number of GC threads in the parallel collectors.
++.br
++.TP 3
++\-XX:PredictedClassLoadCount=n
++This option requires that the \f3UnlockExperimentalVMOptions\fP flag be set first. Use the \f3PredictedClassLoadCount\fP flag if your application loads a lot of classes, and especially if \f3class.forName()\fP is used heavily. The recommended value is the number of classes loaded as shown in the output from \f3\-verbose:class\fP.
++.br
++Example usage:
++.nf
++\f3
++.fl
++ java \-XX:+UnlockExperimentalVMOptions \-XX:PredictedClassLoadCount=60013
++.fl
++\fP
++.fi
++.TP 3
++\-XX:+PrintCompilation
++Prints verbose output from the HotSpot dynamic runtime compiler.
++.br
++.TP 3
++\-XX:+PrintGCDetails \-XX:+PrintGCTimeStamps
++Prints garbage collection output along with time stamps.
++.br
++.TP 3
++\-XX:SoftRefLRUPolicyMSPerMB=0
++This flag enables aggressive processing of software references. Use this flag if HotSpot GC is impacted by the software reference count.
++.TP 3
++\-XX:TLABSize=n
++Thread local allocation buffers (TLAB) are enabled by default in HotSpot. HotSpot automatically sizes TLABs based on allocation patterns. The \f3\-XX:TLABSize\fP option allows fine\-tuning the size of TLABs.
++.br
++.TP 3
++\-XX:+UseAltSigs
++The VM uses \f2SIGUSR1\fP and \f2SIGUSR2\fP by default, which can sometimes conflict with applications that signal\-chain \f2SIGUSR1\fP and \f2SIGUSR2\fP. The \f2\-XX:+UseAltSigs\fP option will cause the VM to use signals other than \f2SIGUSR1\fP and \f2SIGUSR2\fP as the default.
++.TP 3
++\-XX:+|\-UseCompressedOops
++Enables compressed references in 64\-bit JVMs.
++.br
++This option is true by default.
++.br
++.TP 3
++\-XX:+UseConcMarkSweepGC or \-XX:+UseG1GC
++These flags enable either the Concurrent Mark Sweep (CMS) or the G1 garbage collectors.
++.br
++.TP 3
++\-XX:+|\-UseLargePages
++Use this flag to enable large page support. Large pages are enabled by default on Solaris.
++.br
++.TP 3
++\-XX:+UseParallelOldGC
++Enables the parallel garbage collectors, which are optimized for throughput and average response time.
++.br
++.SH "NOTES"
+ .LP
++The \f3\-version:\fP\f2release\fP command line option places no restrictions on the complexity of the release specification. However, only a restricted subset of the possible release specifications represent sound policy and only these are fully supported. These policies are:
+ .RS 3
+ .TP 3
+ 1.
+-Any version, represented by not using this option.
++Any version, represented by not using this option.
+ .TP 3
+ 2.
+-Any version greater than an arbitrarily precise version\-id. For example:
++Any version greater than an arbitrarily precise version\-id. For example:
+ .nf
+ \f3
+ .fl
+@@ -438,10 +512,10 @@
+ .fl
+ \fP
+ .fi
+-This would utilize any version greater than \f21.6.0_10\fP. This is useful for a case where an interface was introduced (or a bug fixed) in the release specified.
++This would utilize any version greater than \f21.6.0_10\fP. This is useful for a case where an interface was introduced (or a bug fixed) in the release specified.
+ .TP 3
+ 3.
+-A version greater than an arbitrarily precise version\-id, bounded by the upper bound of that release family. For example:
++A version greater than an arbitrarily precise version\-id, bounded by the upper bound of that release family. For example:
+ .nf
+ \f3
+ .fl
+@@ -451,7 +525,7 @@
+ .fi
+ .TP 3
+ 4.
+-"Or" expressions of items 2. or 3. above. For example:
++"Or" expressions of items 2. or 3. above. For example:
+ .nf
+ \f3
+ .fl
+@@ -459,59 +533,53 @@
+ .fl
+ \fP
+ .fi
+-Similar to item 2. this is useful when a change was introduced in a release (1.7) but also made available in updates to previous releases.
++Similar to item 2. this is useful when a change was introduced in a release (1.7) but also made available in updates to previous releases.
+ .RE
+-
+-.LP
+-.SH "EXIT STATUS"
+-.LP
+-.LP
+-The following exit values are generally returned by the launcher, typically when the launcher is called with the wrong arguments, serious errors, or exceptions thrown from the Java Virtual Machine. However, a Java application may choose to return any value using the API call \f2System.exit(exitValue)\fP.
++.SH "EXIT STATUS"
+ .LP
++The following exit values are generally returned by the launcher, typically when the launcher is called with the wrong arguments, serious errors, or exceptions thrown from the Java Virtual Machine. However, a Java application may choose to return any value using the API call \f2System.exit(exitValue)\fP.
+ .RS 3
+ .TP 2
+ o
+-\f20\fP: Successful completion
++\f20\fP: Successful completion
+ .TP 2
+ o
+-\f2>0\fP: An error occurred
++\f2>0\fP: An error occurred
+ .RE
+-
+-.LP
+-.SH "SEE ALSO"
+-.LP
++.SH "SEE ALSO"
+ .RS 3
+ .TP 2
+ o
+-javac(1)
++javac(1)
+ .TP 2
+ o
+-jdb(1)
++jdb(1)
+ .TP 2
+ o
+-javah(1)
++javah(1)
+ .TP 2
+ o
+-jar(1)
++jar(1)
+ .TP 2
+ o
+ .na
+ \f2The Java Extensions Framework\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
+ .TP 2
+ o
+ .na
+ \f2Security Features\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/index.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/index.html.
+ .TP 2
+ o
+ .na
+ \f2HotSpot VM Specific Options\fP @
+ .fi
+-http://java.sun.com/docs/hotspot/VMOptions.html.
++http://java.sun.com/docs/hotspot/VMOptions.html.
++.RE
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/javac.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/javac.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javac 1 "10 May 2011"
++.TH javac 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -42,17 +42,17 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options.
++options
++Command\-line options.
+ .TP 3
+-sourcefiles
+-One or more source files to be compiled (such as MyClass.java).
++sourcefiles
++One or more source files to be compiled (such as MyClass.java).
+ .TP 3
+-classes
+-One or more classes to be processed for annotations (such as MyPackage.MyClass).
++classes
++One or more classes to be processed for annotations (such as MyPackage.MyClass).
+ .TP 3
+-@argfiles
+-One or more files that lists options and source files. The \f2\-J\fP options are not allowed in these files.
++@argfiles
++One or more files that lists options and source files. The \f2\-J\fP options are not allowed in these files.
+ .RE
+
+ .LP
+@@ -67,10 +67,10 @@
+ .RS 3
+ .TP 2
+ o
+-For a small number of source files, simply list the file names on the command line.
++For a small number of source files, simply list the file names on the command line.
+ .TP 2
+ o
+-For a large number of source files, list the file names in a file, separated by blanks or line breaks. Then use the list file name on the \f3javac\fP command line, preceded by an \f3@\fP character.
++For a large number of source files, list the file names in a file, separated by blanks or line breaks. Then use the list file name on the \f3javac\fP command line, preceded by an \f3@\fP character.
+ .RE
+
+ .LP
+@@ -91,150 +91,150 @@
+ .LP
+ The compiler has a set of standard options that are supported on the current development environment and will be supported in future releases. An additional set of non\-standard options are specific to the current virtual machine and compiler implementations and are subject to change in the future. Non\-standard options begin with \f3\-X\fP.
+ .LP
+-.SS
++.SS
+ Standard Options
+ .LP
+ .RS 3
+ .TP 3
+-\-Akey[=value]
+-Options to pass to annotation processors. These are not interpreted by javac directly, but are made available for use by individual processors. \f2key\fP should be one or more identifiers separated by ".".
++\-Akey[=value]
++Options to pass to annotation processors. These are not interpreted by javac directly, but are made available for use by individual processors. \f2key\fP should be one or more identifiers separated by ".".
+ .TP 3
+-\-cp path or \-classpath path
++\-cp path or \-classpath path
+ Specify where to find user class files, and (optionally) annotation processors and source files. This class path overrides the user class path in the \f3CLASSPATH\fP environment variable. If neither \f3CLASSPATH\fP, \f3\-cp\fP nor \f3\-classpath\fP is specified, the user class path consists of the current directory. See Setting the Class Path for more details.
+ .br
+ .br
+ >If the \f3\-sourcepath\fP option is not specified, the user class path is also searched for source files.
+ .br
+ .br
+-If the \f3\-processorpath\fP option is not specified, the class path is also searched for annotation processors.
++If the \f3\-processorpath\fP option is not specified, the class path is also searched for annotation processors.
+ .TP 3
+-\-Djava.ext.dirs=directories
+-Override the location of installed extensions.
++\-Djava.ext.dirs=directories
++Override the location of installed extensions.
+ .TP 3
+-\-Djava.endorsed.dirs=directories
+-Override the location of endorsed standards path.
++\-Djava.endorsed.dirs=directories
++Override the location of endorsed standards path.
+ .TP 3
+-\-d directory
++\-d directory
+ Set the destination directory for class files. The directory must already exist; \f3javac\fP will not create it. If a class is part of a package, \f3javac\fP puts the class file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify \f3\-d /home/myclasses\fP and the class is called \f2com.mypackage.MyClass\fP, then the class file is called \f2/home/myclasses/com/mypackage/MyClass.class\fP.
+ .br
+ .br
+ If \f3\-d\fP is not specified, \f3javac\fP puts each class files in the same directory as the source file from which it was generated.
+ .br
+ .br
+-\f3Note:\fP The directory specified by \f3\-d\fP is not automatically added to your user class path.
++\f3Note:\fP The directory specified by \f3\-d\fP is not automatically added to your user class path.
+ .TP 3
+-\-deprecation
+-Show a description of each use or override of a deprecated member or class. Without \f3\-deprecation\fP, \f3javac\fP shows a summary of the source files that use or override deprecated members or classes. \f3\-deprecation\fP is shorthand for \f3\-Xlint:deprecation\fP.
++\-deprecation
++Show a description of each use or override of a deprecated member or class. Without \f3\-deprecation\fP, \f3javac\fP shows a summary of the source files that use or override deprecated members or classes. \f3\-deprecation\fP is shorthand for \f3\-Xlint:deprecation\fP.
+ .TP 3
+-\-encoding encoding
+-Set the source file encoding name, such as \f2EUC\-JP and UTF\-8\fP. If \f3\-encoding\fP is not specified, the platform default converter is used.
++\-encoding encoding
++Set the source file encoding name, such as \f2EUC\-JP and UTF\-8\fP. If \f3\-encoding\fP is not specified, the platform default converter is used.
+ .TP 3
+-\-endorseddirs directories
+-Override the location of endorsed standards path.
++\-endorseddirs directories
++Override the location of endorsed standards path.
+ .TP 3
+-\-extdirs directories
++\-extdirs directories
+ Overrides the location of the \f2ext\fP directory. The \f2directories\fP variable is a colon\-separated list of directories. Each JAR archive in the specified directories is searched for class files. All JAR archives found are automatically part of the class path.
+ .br
+ .br
+-If you are cross\-compiling (compiling classes against bootstrap and extension classes of a different Java platform implementation), this option specifies the directories that contain the extension classes. See Cross\-Compilation Options for more information.
++If you are cross\-compiling (compiling classes against bootstrap and extension classes of a different Java platform implementation), this option specifies the directories that contain the extension classes. See Cross\-Compilation Options for more information.
+ .TP 3
+-\-g
+-Generate all debugging information, including local variables. By default, only line number and source file information is generated.
++\-g
++Generate all debugging information, including local variables. By default, only line number and source file information is generated.
+ .TP 3
+-\-g:none
+-Do not generate any debugging information.
++\-g:none
++Do not generate any debugging information.
+ .TP 3
+-\-g:{keyword list}
+-Generate only some kinds of debugging information, specified by a comma separated list of keywords. Valid keywords are:
++\-g:{keyword list}
++Generate only some kinds of debugging information, specified by a comma separated list of keywords. Valid keywords are:
+ .RS 3
+ .TP 3
+-source
+-Source file debugging information
++source
++Source file debugging information
+ .TP 3
+-lines
+-Line number debugging information
++lines
++Line number debugging information
+ .TP 3
+-vars
+-Local variable debugging information
++vars
++Local variable debugging information
+ .RE
+ .TP 3
+-\-help
+-Print a synopsis of standard options.
++\-help
++Print a synopsis of standard options.
+ .TP 3
+-\-implicit:{class,none}
+-Controls the generation of class files for implicitly loaded source files. To automatically generate class files, use \f3\-implicit:class\fP. To suppress class file generation, use \f3\-implicit:none\fP. If this option is not specified, the default is to automatically generate class files. In this case, the compiler will issue a warning if any such class files are generated when also doing annotation processing. The warning will not be issued if this option is set explicitly. See Searching For Types.
++\-implicit:{class,none}
++Controls the generation of class files for implicitly loaded source files. To automatically generate class files, use \f3\-implicit:class\fP. To suppress class file generation, use \f3\-implicit:none\fP. If this option is not specified, the default is to automatically generate class files. In this case, the compiler will issue a warning if any such class files are generated when also doing annotation processing. The warning will not be issued if this option is set explicitly. See Searching For Types.
+ .TP 3
+-\-Joption
++\-Joption
+ Pass \f2option\fP to the \f3java\fP launcher called by \f3javac\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
+ .br
+ .br
+-\f3Note:\fP \f3CLASSPATH\fP, \f3\-classpath\fP, \f3\-bootclasspath\fP, and \f3\-extdirs\fP do \f2not\fP specify the classes used to run \f3javac\fP. Fiddling with the implementation of the compiler in this way is usually pointless and always risky. If you do need to do this, use the \f3\-J\fP option to pass through options to the underlying \f3java\fP launcher.
++\f3Note:\fP \f3CLASSPATH\fP, \f3\-classpath\fP, \f3\-bootclasspath\fP, and \f3\-extdirs\fP do \f2not\fP specify the classes used to run \f3javac\fP. Fiddling with the implementation of the compiler in this way is usually pointless and always risky. If you do need to do this, use the \f3\-J\fP option to pass through options to the underlying \f3java\fP launcher.
+ .TP 3
+-\-nowarn
+-Disable warning messages. This has the same meaning as \f3\-Xlint:none\fP.
++\-nowarn
++Disable warning messages. This has the same meaning as \f3\-Xlint:none\fP.
+ .TP 3
+-\-proc: {none,only}
+-Controls whether annotation processing and/or compilation is done. \f3\-proc:none\fP means that compilation takes place without annotation processing. \f3\-proc:only\fP means that only annotation processing is done, without any subsequent compilation.
++\-proc: {none,only}
++Controls whether annotation processing and/or compilation is done. \f3\-proc:none\fP means that compilation takes place without annotation processing. \f3\-proc:only\fP means that only annotation processing is done, without any subsequent compilation.
+ .TP 3
+-\-processor class1[,class2,class3...]
+-Names of the annotation processors to run. This bypasses the default discovery process.
++\-processor class1[,class2,class3...]
++Names of the annotation processors to run. This bypasses the default discovery process.
+ .TP 3
+-\-processorpath path
+-Specify where to find annotation processors; if this option is not used, the class path will be searched for processors.
++\-processorpath path
++Specify where to find annotation processors; if this option is not used, the class path will be searched for processors.
+ .TP 3
+-\-s dir
+-Specify the directory where to place generated source files. The directory must already exist; \f3javac\fP will not create it. If a class is part of a package, the compiler puts the source file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify \f3\-s /home/mysrc\fP and the class is called \f2com.mypackage.MyClass\fP, then the source file will be placed in \f2/home/mysrc/com/mypackage/MyClass.java\fP.
++\-s dir
++Specify the directory where to place generated source files. The directory must already exist; \f3javac\fP will not create it. If a class is part of a package, the compiler puts the source file in a subdirectory reflecting the package name, creating directories as needed. For example, if you specify \f3\-s /home/mysrc\fP and the class is called \f2com.mypackage.MyClass\fP, then the source file will be placed in \f2/home/mysrc/com/mypackage/MyClass.java\fP.
+ .TP 3
+-\-source release
+-Specifies the version of source code accepted. The following values for \f2release\fP are allowed:
++\-source release
++Specifies the version of source code accepted. The following values for \f2release\fP are allowed:
+ .RS 3
+ .TP 3
+-1.3
+-The compiler does \f2not\fP support assertions, generics, or other language features introduced after JDK 1.3.
++1.3
++The compiler does \f2not\fP support assertions, generics, or other language features introduced after Java SE 1.3.
+ .TP 3
+-1.4
+-The compiler accepts code containing assertions, which were introduced in JDK 1.4.
++1.4
++The compiler accepts code containing assertions, which were introduced in Java SE 1.4.
+ .TP 3
+-1.5
+-The compiler accepts code containing generics and other language features introduced in JDK 5.
++1.5
++The compiler accepts code containing generics and other language features introduced in Java SE 5.
+ .TP 3
+-5
+-Synonym for 1.5.
++5
++Synonym for 1.5.
+ .TP 3
+-1.6
+-This is the default value. No language changes were introduced in Java SE 6. However, encoding errors in source files are now reported as errors, instead of warnings, as previously.
++1.6
++No language changes were introduced in Java SE 6. However, encoding errors in source files are now reported as errors instead of warnings as in previous releases of Java SE.
+ .TP 3
+-6
+-Synonym for 1.6.
++6
++Synonym for 1.6.
+ .TP 3
+-1.7
+-The compiler accepts code with features introduced in JDK 7.
++1.7
++This is the default value. The compiler accepts code with features introduced in Java SE 7.
+ .TP 3
+-7
+-Synonym for 1.7.
++7
++Synonym for 1.7.
+ .RE
+ .TP 3
+-\-sourcepath sourcepath
++\-sourcepath sourcepath
+ Specify the source code path to search for class or interface definitions. As with the user class path, source path entries are separated by colons (\f3:\fP) and can be directories, JAR archives, or ZIP archives. If packages are used, the local path name within the directory or archive must reflect the package name.
+ .br
+ .br
+-\f3Note:\fP Classes found through the class path may be subject to automatic recompilation if their sources are also found. See Searching For Types.
++\f3Note:\fP Classes found through the class path may be subject to automatic recompilation if their sources are also found. See Searching For Types.
+ .TP 3
+-\-verbose
+-Verbose output. This includes information about each class loaded and each source file compiled.
++\-verbose
++Verbose output. This includes information about each class loaded and each source file compiled.
+ .TP 3
+-\-version
+-Print version information.
++\-version
++Print version information.
+ .TP 3
+-\-Werror
+-Terminate compilation if warnings occur.
++\-Werror
++Terminate compilation if warnings occur.
+ .TP 3
+-\-X
+-Display information about non\-standard options and exit.
++\-X
++Display information about non\-standard options and exit.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Cross\-Compilation Options
+ .LP
+ .LP
+@@ -242,87 +242,92 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-target version
+-Generate class files that target a specified version of the VM. Class files will run on the specified target and on later versions, but not on earlier versions of the VM. Valid targets are \f31.1\fP \f31.2\fP \f31.3\fP \f31.4\fP \f31.5\fP (also \f35\fP) \f31.6\fP (also \f36\fP) and \f31.7\fP (also \f37\fP).
+-.br
+-.br
+-The default for \f3\-target\fP depends on the value of \f3\-source\fP:
++\-target version
++Generate class files that target a specified version of the VM. Class files will run on the specified target and on later versions, but not on earlier versions of the VM. Valid targets are \f31.1\fP, \f31.2\fP, \f31.3\fP, \f31.4\fP, \f31.5\fP (also \f35\fP), \f31.6\fP (also \f36\fP), and \f31.7\fP (also \f37\fP).
++.LP
++The default for \f3\-target\fP depends on the value of \f3\-source\fP:
+ .RS 3
+ .TP 2
+ o
+-If \-source is \f3not specified\fP, the value of \-target is \f31.7\fP
++If \-source is \f3not specified\fP, the value of \-target is \f31.7\fP
++.TP 2
++o
++If \-source is \f31.2\fP, the value of \-target is \f31.4\fP
+ .TP 2
+ o
+-If \-source is \f31.2\fP, the value of \-target is \f31.4\fP
++If \-source is \f31.3\fP, the value of \-target is \f31.4\fP
+ .TP 2
+ o
+-If \-source is \f31.3\fP, the value of \-target is \f31.4\fP
++If \-source is \f31.5\fP, the value of \-target is \f31.7\fP
+ .TP 2
+ o
+-For \f3all other values\fP of \-source, the value of \f3\-target\fP is the value of \f3\-source\fP.
++If \-source is \f31.6\fP, the value of \-target is \f31.7\fP
++.TP 2
++o
++For \f3all other values\fP of \-source, the value of \f3\-target\fP is the value of \f3\-source\fP.
+ .RE
+ .TP 3
+-\-bootclasspath bootclasspath
+-Cross\-compile against the specified set of boot classes. As with the user class path, boot class path entries are separated by colons (\f3:\fP) and can be directories, JAR archives, or ZIP archives.
++\-bootclasspath bootclasspath
++Cross\-compile against the specified set of boot classes. As with the user class path, boot class path entries are separated by colons (\f3:\fP) and can be directories, JAR archives, or ZIP archives.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Non\-Standard Options
+ .LP
+ .RS 3
+ .TP 3
+-\-Xbootclasspath/p:path
+-Prepend to the bootstrap class path.
++\-Xbootclasspath/p:path
++Prepend to the bootstrap class path.
+ .TP 3
+-\-Xbootclasspath/a:path
+-Append to the bootstrap class path.
++\-Xbootclasspath/a:path
++Append to the bootstrap class path.
+ .TP 3
+-\-Xbootclasspath/:path
+-Override location of bootstrap class files.
++\-Xbootclasspath/:path
++Override location of bootstrap class files.
+ .TP 3
+-\-Xlint
+-Enable all recommended warnings. In this release, enabling all available warnings is recommended.
++\-Xlint
++Enable all recommended warnings. In this release, enabling all available warnings is recommended.
+ .TP 3
+-\-Xlint:all
+-Enable all recommended warnings. In this release, enabling all available warnings is recommended.
++\-Xlint:all
++Enable all recommended warnings. In this release, enabling all available warnings is recommended.
+ .TP 3
+-\-Xlint:none
+-Disable all warnings.
++\-Xlint:none
++Disable all warnings.
+ .TP 3
+-\-Xlint:name
+-Enable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can enable with this option.
++\-Xlint:name
++Enable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can enable with this option.
+ .TP 3
+-\-Xlint:\-name
+-Disable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can disable with this option.
++\-Xlint:\-name
++Disable warning \f2name\fP. See the section Warnings That Can Be Enabled or Disabled with \-Xlint Option for a list of warnings you can disable with this option.
+ .TP 3
+-\-Xmaxerrs number
+-Set the maximum number of errors to print.
++\-Xmaxerrs number
++Set the maximum number of errors to print.
+ .TP 3
+-\-Xmaxwarns number
+-Set the maximum number of warnings to print.
++\-Xmaxwarns number
++Set the maximum number of warnings to print.
+ .TP 3
+-\-Xstdout filename
+-Send compiler messages to the named file. By default, compiler messages go to \f2System.err\fP.
++\-Xstdout filename
++Send compiler messages to the named file. By default, compiler messages go to \f2System.err\fP.
+ .TP 3
+-\-Xprefer:{newer,source}
+-Specify which file to read when both a source file and class file are found for a type. (See Searching For Types). If \f2\-Xprefer:newer\fP is used, it reads the newer of the source or class file for a type (default). If the \f2\-Xprefer:source\fP option is used, it reads source file. Use \f2\-Xprefer:source\fP when you want to be sure that any annotation processors can access annotations declared with a retention policy of \f2SOURCE\fP.
++\-Xprefer:{newer,source}
++Specify which file to read when both a source file and class file are found for a type. (See Searching For Types). If \f2\-Xprefer:newer\fP is used, it reads the newer of the source or class file for a type (default). If the \f2\-Xprefer:source\fP option is used, it reads source file. Use \f2\-Xprefer:source\fP when you want to be sure that any annotation processors can access annotations declared with a retention policy of \f2SOURCE\fP.
+ .TP 3
+-\-Xpkginfo:{always,legacy,nonempty}
+-Specify handling of package\-info files
++\-Xpkginfo:{always,legacy,nonempty}
++Specify handling of package\-info files
+ .TP 3
+-\-Xprint
+-Print out textual representation of specified types for debugging purposes; perform neither annotation processing nor compilation. The format of the output may change.
++\-Xprint
++Print out textual representation of specified types for debugging purposes; perform neither annotation processing nor compilation. The format of the output may change.
+ .TP 3
+-\-XprintProcessorInfo
+-Print information about which annotations a processor is asked to process.
++\-XprintProcessorInfo
++Print information about which annotations a processor is asked to process.
+ .TP 3
+-\-XprintRounds
+-Print information about initial and subsequent annotation processing rounds.
++\-XprintRounds
++Print information about initial and subsequent annotation processing rounds.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Warnings That Can Be Enabled or Disabled with \-Xlint Option
+ .LP
+ .LP
+@@ -330,8 +335,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-cast
+-Warn about unnecessary and redundant casts. For example:
++cast
++Warn about unnecessary and redundant casts. For example:
+ .nf
+ \f3
+ .fl
+@@ -340,11 +345,11 @@
+ \fP
+ .fi
+ .TP 3
+-classfile
+-Warn about issues related to classfile contents.
++classfile
++Warn about issues related to classfile contents.
+ .TP 3
+-deprecation
+-Warn about use of deprecated items. For example:
++deprecation
++Warn about use of deprecated items. For example:
+ .nf
+ \f3
+ .fl
+@@ -354,10 +359,10 @@
+ .fl
+ \fP
+ .fi
+-The method \f2java.util.Date.getDay\fP has been deprecated since JDK 1.1.
++The method \f2java.util.Date.getDay\fP has been deprecated since JDK 1.1.
+ .TP 3
+-dep\-ann
+-Warn about items that are documented with an \f2@deprecated\fP Javadoc comment, but do not have a \f2@Deprecated\fP annotation. For example:
++dep\-ann
++Warn about items that are documented with an \f2@deprecated\fP Javadoc comment, but do not have a \f2@Deprecated\fP annotation. For example:
+ .nf
+ \f3
+ .fl
+@@ -378,8 +383,8 @@
+ \fP
+ .fi
+ .TP 3
+-divzero
+-Warn about division by constant integer 0. For example:
++divzero
++Warn about division by constant integer 0. For example:
+ .nf
+ \f3
+ .fl
+@@ -388,8 +393,8 @@
+ \fP
+ .fi
+ .TP 3
+-empty
+-Warn about empty statements after \f2if\fP statements. For example:
++empty
++Warn about empty statements after \f2if\fP statements. For example:
+ .nf
+ \f3
+ .fl
+@@ -406,8 +411,8 @@
+ \fP
+ .fi
+ .TP 3
+-fallthrough
+-Check \f2switch\fP blocks for fall\-through cases and provide a warning message for any that are found. Fall\-through cases are cases in a \f2switch\fP block, other than the last case in the block, whose code does not include a \f2break\fP statement, allowing code execution to "fall through" from that case to the next case. For example, the code following the \f2case 1\fP label in this \f2switch\fP block does not end with a \f2break\fP statement:
++fallthrough
++Check \f2switch\fP blocks for fall\-through cases and provide a warning message for any that are found. Fall\-through cases are cases in a \f2switch\fP block, other than the last case in the block, whose code does not include a \f2break\fP statement, allowing code execution to "fall through" from that case to the next case. For example, the code following the \f2case 1\fP label in this \f2switch\fP block does not end with a \f2break\fP statement:
+ .nf
+ \f3
+ .fl
+@@ -427,10 +432,10 @@
+ .fl
+ \fP
+ .fi
+-If the \f2\-Xlint:fallthrough\fP flag were used when compiling this code, the compiler would emit a warning about "possible fall\-through into case," along with the line number of the case in question.
++If the \f2\-Xlint:fallthrough\fP flag were used when compiling this code, the compiler would emit a warning about "possible fall\-through into case," along with the line number of the case in question.
+ .TP 3
+-finally
+-Warn about \f2finally\fP clauses that cannot complete normally. For example:
++finally
++Warn about \f2finally\fP clauses that cannot complete normally. For example:
+ .nf
+ \f3
+ .fl
+@@ -456,13 +461,13 @@
+ .fl
+ \fP
+ .fi
+-The compiler generates a warning for \f2finally\fP block in this example. When this method is called, it returns a value of \f20\fP, not \f21\fP. A \f2finally\fP block always executes when the \f2try\fP block exits. In this example, if control is transferred to the \f2catch\fP, then the method exits. However, the \f2finally\fP block must be executed, so it is executed, even though control has already been transferred outside the method.
++The compiler generates a warning for \f2finally\fP block in this example. When this method is called, it returns a value of \f20\fP, not \f21\fP. A \f2finally\fP block always executes when the \f2try\fP block exits. In this example, if control is transferred to the \f2catch\fP, then the method exits. However, the \f2finally\fP block must be executed, so it is executed, even though control has already been transferred outside the method.
+ .TP 3
+-options
+-Warn about issues relating to the use of command line options. See Cross\-Compilation Example for an example of this kind of warning.
++options
++Warn about issues relating to the use of command line options. See Cross\-Compilation Example for an example of this kind of warning.
+ .TP 3
+-overrides
+-Warn about issues regarding method overrides. For example, consider the following two classes:
++overrides
++Warn about issues regarding method overrides. For example, consider the following two classes:
+ .nf
+ \f3
+ .fl
+@@ -493,10 +498,10 @@
+ \f2warning: [override] varargsMethod(String[]) in ClassWithOverridingMethod overrides varargsMethod(String...) in ClassWithVarargsMethod; overriding method is missing '...'\fP
+ .br
+ .br
+-When the compiler encounters a varargs method, it translates the varargs formal parameter into an array. In the method \f2ClassWithVarargsMethod.varargsMethod\fP, the compiler translates the varargs formal parameter \f2String... s\fP to the formal parameter \f2String[] s\fP, an array, which matches the formal parameter of the method \f2ClassWithOverridingMethod.varargsMethod\fP. Consequently, this example compiles.
++When the compiler encounters a varargs method, it translates the varargs formal parameter into an array. In the method \f2ClassWithVarargsMethod.varargsMethod\fP, the compiler translates the varargs formal parameter \f2String... s\fP to the formal parameter \f2String[] s\fP, an array, which matches the formal parameter of the method \f2ClassWithOverridingMethod.varargsMethod\fP. Consequently, this example compiles.
+ .TP 3
+-path
+-Warn about invalid path elements and nonexistent path directories on the command line (with regards to the class path, the source path, and other paths). Such warnings cannot be suppressed with the \f2@SuppressWarnings\fP annotation. For example:
++path
++Warn about invalid path elements and nonexistent path directories on the command line (with regards to the class path, the source path, and other paths). Such warnings cannot be suppressed with the \f2@SuppressWarnings\fP annotation. For example:
+ .nf
+ \f3
+ .fl
+@@ -505,11 +510,11 @@
+ \fP
+ .fi
+ .TP 3
+-processing
++processing
+ Warn about issues regarding annotation processing. The compiler generates this warning if you have a class that has an annotation, and you use an annotation processor that cannot handle that type of exception. For example, the following is a simple annotation processor:
+ .br
+ .br
+-\f3Source file \fP\f4AnnoProc.java\fP:
++\f3Source file \fP\f4AnnoProc.java\fP:
+ .nf
+ \f3
+ .fl
+@@ -545,7 +550,7 @@
+ .fl
+ \fP
+ .fi
+-\f3Source file \fP\f4AnnosWithoutProcessors.java\fP\f3:\fP
++\f3Source file \fP\f4AnnosWithoutProcessors.java\fP\f3:\fP
+ .nf
+ \f3
+ .fl
+@@ -559,15 +564,14 @@
+ .fl
+ \fP
+ .fi
+-The following commands compile the annotation processor \f2AnnoProc\fP, then run this annotation processor against the source file \f2AnnosWithoutProcessors.java\fP:
++The following commands compile the annotation processor \f2AnnoProc\fP, then run this annotation processor against the source file \f2AnnosWithoutProcessors.java\fP:
+ .nf
+ \f3
+ .fl
+-% javac AnnoProc.java
++% \fP\f3javac AnnoProc.java\fP
+ .fl
+-% javac \-cp . \-Xlint:processing \-processor AnnoProc \-proc:only AnnosWithoutProcessors.java
++% \f3javac \-cp . \-Xlint:processing \-processor AnnoProc \-proc:only AnnosWithoutProcessors.java\fP
+ .fl
+-\fP
+ .fi
+ When the compiler runs the annotation processor against the source file \f2AnnosWithoutProcessors.java\fP, it generates the following warning:
+ .br
+@@ -575,10 +579,10 @@
+ \f2warning: [processing] No processor claimed any of these annotations: Anno\fP
+ .br
+ .br
+-To resolve this issue, you can rename the annotation defined and used in the class \f2AnnosWithoutProcessors\fP from \f2Anno\fP to \f2NotAnno\fP.
++To resolve this issue, you can rename the annotation defined and used in the class \f2AnnosWithoutProcessors\fP from \f2Anno\fP to \f2NotAnno\fP.
+ .TP 3
+-rawtypes
+-Warn about unchecked operations on raw types. The following statement generates a \f2rawtypes\fP warning:
++rawtypes
++Warn about unchecked operations on raw types. The following statement generates a \f2rawtypes\fP warning:
+ .nf
+ \f3
+ .fl
+@@ -586,7 +590,7 @@
+ .fl
+ \fP
+ .fi
+-The following does not generate a \f2rawtypes\fP warning:
++The following does not generate a \f2rawtypes\fP warning:
+ .nf
+ \f3
+ .fl
+@@ -594,10 +598,10 @@
+ .fl
+ \fP
+ .fi
+-\f2List\fP is a raw type. However, \f2List<?>\fP is a unbounded wildcard parameterized type. Because \f2List\fP is a parameterized interface, you should always specify its type argument. In this example, the \f2List\fP formal argument is specified with a unbounded wildcard (\f2?\fP) as its formal type parameter, which means that the \f2countElements\fP method can accept any instantiation of the \f2List\fP interface.
++\f2List\fP is a raw type. However, \f2List<?>\fP is a unbounded wildcard parameterized type. Because \f2List\fP is a parameterized interface, you should always specify its type argument. In this example, the \f2List\fP formal argument is specified with a unbounded wildcard (\f2?\fP) as its formal type parameter, which means that the \f2countElements\fP method can accept any instantiation of the \f2List\fP interface.
+ .TP 3
+-serial
+-Warn about missing \f2serialVersionUID\fP definitions on serializable classes. For example:
++serial
++Warn about missing \f2serialVersionUID\fP definitions on serializable classes. For example:
+ .nf
+ \f3
+ .fl
+@@ -633,10 +637,10 @@
+ \f2warning: [serial] serializable class PersistentTime has no definition of serialVersionUID\fP
+ .br
+ .br
+-If a serializable class does not explicitly declare a field named \f2serialVersionUID\fP, then the serialization runtime will calculate a default \f2serialVersionUID\fP value for that class based on various aspects of the class, as described in the Java Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare \f2serialVersionUID\fP values because the default process of computing \f2serialVersionUID\fP vales is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected \f2InvalidClassExceptions\fP during deserialization. Therefore, to guarantee a consistent \f2serialVersionUID\fP value across different Java compiler implementations, a serializable class must declare an explicit \f2serialVersionUID\fP value.
++If a serializable class does not explicitly declare a field named \f2serialVersionUID\fP, then the serialization runtime will calculate a default \f2serialVersionUID\fP value for that class based on various aspects of the class, as described in the Java Object Serialization Specification. However, it is strongly recommended that all serializable classes explicitly declare \f2serialVersionUID\fP values because the default process of computing \f2serialVersionUID\fP vales is highly sensitive to class details that may vary depending on compiler implementations, and can thus result in unexpected \f2InvalidClassExceptions\fP during deserialization. Therefore, to guarantee a consistent \f2serialVersionUID\fP value across different Java compiler implementations, a serializable class must declare an explicit \f2serialVersionUID\fP value.
+ .TP 3
+-static
+-Warn about issues relating to use of statics. For example:
++static
++Warn about issues relating to use of statics. For example:
+ .nf
+ \f3
+ .fl
+@@ -650,7 +654,7 @@
+ .fl
+ \fP
+ .fi
+-The compiler generates the following warning:
++The compiler generates the following warning:
+ .nf
+ \f3
+ .fl
+@@ -658,7 +662,7 @@
+ .fl
+ \fP
+ .fi
+-To resolve this issue, you can call the static method \f2m1\fP as follows:
++To resolve this issue, you can call the static method \f2m1\fP as follows:
+ .nf
+ \f3
+ .fl
+@@ -666,10 +670,10 @@
+ .fl
+ \fP
+ .fi
+-Alternatively, you can remove the \f2static\fP keyword from the declaration of the method \f2m1\fP.
++Alternatively, you can remove the \f2static\fP keyword from the declaration of the method \f2m1\fP.
+ .TP 3
+-try
+-Warn about issues relating to use of \f2try\fP blocks, including try\-with\-resources statements. For example, a warning is generated for the following statement because the resource \f2ac\fP declared in the \f2try\fP statement is not used:
++try
++Warn about issues relating to use of \f2try\fP blocks, including try\-with\-resources statements. For example, a warning is generated for the following statement because the resource \f2ac\fP declared in the \f2try\fP statement is not used:
+ .nf
+ \f3
+ .fl
+@@ -682,8 +686,8 @@
+ \fP
+ .fi
+ .TP 3
+-unchecked
+-Give more detail for unchecked conversion warnings that are mandated by the Java Language Specification. For example:
++unchecked
++Give more detail for unchecked conversion warnings that are mandated by the Java Language Specification. For example:
+ .nf
+ \f3
+ .fl
+@@ -699,10 +703,10 @@
+ The variable \f2ls\fP has the parameterized type \f2List<String>\fP. When the \f2List\fP referenced by \f2l\fP is assigned to \f2ls\fP, the compiler generates an unchecked warning; the compiler is unable to determine at compile time, and moreover knows that the JVM will not be able to determine at runtime, if \f2l\fP refers to a \f2List<String>\fP type; it does not. Consequently, heap pollution occurs.
+ .br
+ .br
+-In detail, a heap pollution situation occurs when the \f2List\fP object \f2l\fP, whose static type is \f2List<Number>\fP, is assigned to another \f2List\fP object, \f2ls\fP, that has a different static type, \f2List<String>\fP. However, the compiler still allows this assignment. It must allow this assignment to preserve backwards compatibility with versions of Java SE that do not support generics. Because of type erasure, \f2List<Number>\fP and \f2List<String>\fP both become \f2List\fP. Consequently, the compiler allows the assignment of the object \f2l\fP, which has a raw type of \f2List\fP, to the object \f2ls\fP.
++In detail, a heap pollution situation occurs when the \f2List\fP object \f2l\fP, whose static type is \f2List<Number>\fP, is assigned to another \f2List\fP object, \f2ls\fP, that has a different static type, \f2List<String>\fP. However, the compiler still allows this assignment. It must allow this assignment to preserve backwards compatibility with versions of Java SE that do not support generics. Because of type erasure, \f2List<Number>\fP and \f2List<String>\fP both become \f2List\fP. Consequently, the compiler allows the assignment of the object \f2l\fP, which has a raw type of \f2List\fP, to the object \f2ls\fP.
+ .TP 3
+-varargs
+-Warn about unsafe usages of variable arguments (varargs) methods, in particular, those that contain non\-reifiable arguments. For example:
++varargs
++Warn about unsafe usages of variable arguments (varargs) methods, in particular, those that contain non\-reifiable arguments. For example:
+ .nf
+ \f3
+ .fl
+@@ -722,7 +726,7 @@
+ .fl
+ \fP
+ .fi
+-The compiler generates the following warning for the definition of the method \f2ArrayBuilder.addToList\fP:
++The compiler generates the following warning for the definition of the method \f2ArrayBuilder.addToList\fP:
+ .nf
+ \f3
+ .fl
+@@ -730,7 +734,7 @@
+ .fl
+ \fP
+ .fi
+-When the compiler encounters a varargs method, it translates the varargs formal parameter into an array. However, the Java programming language does not permit the creation of arrays of parameterized types. In the method \f2ArrayBuilder.addToList\fP, the compiler translates the varargs formal parameter \f2T... elements\fP to the formal parameter \f2T[] elements\fP, an array. However, because of type erasure, the compiler converts the varargs formal parameter to \f2Object[] elements\fP. Consequently, there is a possibility of heap pollution.
++When the compiler encounters a varargs method, it translates the varargs formal parameter into an array. However, the Java programming language does not permit the creation of arrays of parameterized types. In the method \f2ArrayBuilder.addToList\fP, the compiler translates the varargs formal parameter \f2T... elements\fP to the formal parameter \f2T[] elements\fP, an array. However, because of type erasure, the compiler converts the varargs formal parameter to \f2Object[] elements\fP. Consequently, there is a possibility of heap pollution.
+ .RE
+
+ .LP
+@@ -748,7 +752,7 @@
+ .LP
+ When executing javac, pass in the path and name of each argument file with the '\f2@\fP' leading character. When javac encounters an argument beginning with the character `\f2@\fP', it expands the contents of that file into the argument list.
+ .LP
+-.SS
++.SS
+ Example \- Single Arg File
+ .LP
+ .LP
+@@ -765,7 +769,7 @@
+ .LP
+ This argument file could contain the contents of both files shown in the next example.
+ .LP
+-.SS
++.SS
+ Example \- Two Arg Files
+ .LP
+ .LP
+@@ -820,7 +824,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Example \- Arg Files with Paths
+ .LP
+ .LP
+@@ -842,7 +846,7 @@
+ .LP
+ The API for annotation processors is defined in the \f2javax.annotation.processing\fP and \f2javax.lang.model\fP packages and subpackages.
+ .LP
+-.SS
++.SS
+ Overview of annotation processing
+ .LP
+ .LP
+@@ -857,7 +861,7 @@
+ .LP
+ After a round occurs where no new source files are generated, the annotation processors will be invoked one last time, to give them a chance to complete any work they may need to do. Finally, unless the \f3\-proc:only\fP option is used, the compiler will compile the original and all the generated source files.
+ .LP
+-.SS
++.SS
+ Implicitly loaded source files
+ .LP
+ .LP
+@@ -894,7 +898,7 @@
+ .LP
+ \f3javac\fP supports the new Java Compiler API defined by the classes and interfaces in the \f2javax.tools\fP package.
+ .LP
+-.SS
++.SS
+ Example
+ .LP
+ .LP
+@@ -917,7 +921,7 @@
+ .LP
+ You can use other methods on the \f2javax.tools.JavaCompiler\fP interface to handle diagnostics, control where files are read from and written to, and so on.
+ .LP
+-.SS
++.SS
+ Old Interface
+ .LP
+ .LP
+@@ -951,7 +955,7 @@
+ .LP
+ .SH "EXAMPLES"
+ .LP
+-.SS
++.SS
+ Compiling a Simple Program
+ .LP
+ .LP
+@@ -1005,7 +1009,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Compiling Multiple Source Files
+ .LP
+ .LP
+@@ -1033,7 +1037,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Specifying a User Class Path
+ .LP
+ .LP
+@@ -1068,7 +1072,7 @@
+ .nf
+ \f3
+ .fl
+-% \fP\f3javac \-classpath /examples:/lib/Banners.jar \\
++% \fP\f3javac \-classpath /examples:/lib/Banners.jar \\
+ .fl
+ /examples/greetings/Hi.java\fP
+ .fl
+@@ -1086,7 +1090,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Separating Source Files and Class Files
+ .LP
+ .LP
+@@ -1113,7 +1117,7 @@
+ .fl
+ % \f3ls classes\fP
+ .fl
+-% \f3javac \-sourcepath src \-classpath classes:lib/Banners.jar \\
++% \f3javac \-sourcepath src \-classpath classes:lib/Banners.jar \\
+ .fl
+ src/farewells/GoodBye.java \-d classes\fP
+ .fl
+@@ -1131,16 +1135,16 @@
+ .LP
+ \f3Note:\fP The compiler compiled \f2src/farewells/Base.java\fP, even though we didn't specify it on the command line. To trace automatic compiles, use the \f3\-verbose\fP option.
+ .LP
+-.SS
++.SS
+ Cross\-Compilation Example
+ .LP
+ .LP
+-Here we use \f3javac\fP to compile code that will run on a 1.6 VM.
++The following example uses \f3javac\fP to compile code that will run on a 1.6 VM.
+ .LP
+ .nf
+ \f3
+ .fl
+-% \fP\f3javac \-source 1.6 \-target 1.6 \-bootclasspath jdk1.6.0/lib/rt.jar \\
++% \fP\f3javac \-source 1.6 \-target 1.6 \-bootclasspath jdk1.6.0/lib/rt.jar \\
+ .fl
+ \-extdirs "" OldCode.java\fP
+ .fl
+@@ -1174,32 +1178,32 @@
+ .na
+ \f2The javac Guide\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javac/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/javac/index.html
+ .TP 2
+ o
+-java(1) \- the Java Application Launcher
++java(1) \- the Java Application Launcher
+ .TP 2
+ o
+-jdb(1) \- Java Application Debugger
++jdb(1) \- Java Application Debugger
+ .TP 2
+ o
+-javah(1) \- C Header and Stub File Generator
++javah(1) \- C Header and Stub File Generator
+ .TP 2
+ o
+-javap(1) \- Class File Disassembler
++javap(1) \- Class File Disassembler
+ .TP 2
+ o
+-javadoc(1) \- API Documentation Generator
++javadoc(1) \- API Documentation Generator
+ .TP 2
+ o
+-jar(1) \- JAR Archive Tool
++jar(1) \- JAR Archive Tool
+ .TP 2
+ o
+ .na
+ \f2The Java Extensions Framework\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/extensions/index.html
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/javadoc.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/javadoc.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javadoc 1 "10 May 2011"
++.TH javadoc 1 "16 Mar 2012"
+ .SH "Name"
+ javadoc \- The Java API Documentation Generator
+ .LP
+@@ -31,68 +31,68 @@
+ Arguments can be in any order. See processing of Source Files for details on how the Javadoc tool determines which "\f2.java\fP" files to process.
+ .RS 3
+ .TP 3
+-options
+-Command\-line options, as specified in this document. To see a typical use of javadoc options, see Real\-World Example.
++options
++Command\-line options, as specified in this document. To see a typical use of javadoc options, see Real\-World Example.
+ .TP 3
+-packagenames
+-A series of names of packages, separated by spaces, such as \f2java.lang\ java.lang.reflect\ java.awt\fP. You must separately specify each package you want to document. Wildcards are not allowed; use \-subpackages for recursion. The Javadoc tool uses \f2\-sourcepath\fP to look for these package names. See Example \- Documenting One or More Packages
++packagenames
++A series of names of packages, separated by spaces, such as \f2java.lang\ java.lang.reflect\ java.awt\fP. You must separately specify each package you want to document. Wildcards are not allowed; use \-subpackages for recursion. The Javadoc tool uses \f2\-sourcepath\fP to look for these package names. See Example \- Documenting One or More Packages
+ .TP 3
+-sourcefilenames
+-A series of source file names, separated by spaces, each of which can begin with a path and contain a wildcard such as asterisk (*). The Javadoc tool will process every file whose name ends with ".java", and whose name, when stripped of that suffix, is actually a legal class name (see the Java Language Specification). Therefore, you can name files with dashes (such as \f2X\-Buffer\fP), or other illegal characters, to prevent them from being documented. This is useful for test files and template files The path that precedes the source file name determines where javadoc will look for the file. (The Javadoc tool does \f2not\fP use \f2\-sourcepath\fP to look for these source file names.) Relative paths are relative to the current directory, so passing in \f2Button.java\fP is identical to \f2./Button.java\fP. A source file name with an absolute path and a wildcard, for example, is \f2/home/src/java/awt/Graphics*.java\fP. See Example\ \-\ Documenting One or More Classes. You can also mix packagenames and sourcefilenames, as in Example\ \-\ Documenting Both Packages and Classes
++sourcefilenames
++A series of source file names, separated by spaces, each of which can begin with a path and contain a wildcard such as asterisk (*). The Javadoc tool will process every file whose name ends with ".java", and whose name, when stripped of that suffix, is actually a legal class name (see the Java Language Specification). Therefore, you can name files with dashes (such as \f2X\-Buffer\fP), or other illegal characters, to prevent them from being documented. This is useful for test files and template files The path that precedes the source file name determines where javadoc will look for the file. (The Javadoc tool does \f2not\fP use \f2\-sourcepath\fP to look for these source file names.) Relative paths are relative to the current directory, so passing in \f2Button.java\fP is identical to \f2./Button.java\fP. A source file name with an absolute path and a wildcard, for example, is \f2/home/src/java/awt/Graphics*.java\fP. See Example\ \-\ Documenting One or More Classes. You can also mix packagenames and sourcefilenames, as in Example\ \-\ Documenting Both Packages and Classes
+ .TP 3
+-\-subpackages pkg1:pkg2:...
+-Generates documentation from source files in the specified packages and recursively in their subpackages. An alternative to supplying packagenames or sourcefilenames.
++\-subpackages pkg1:pkg2:...
++Generates documentation from source files in the specified packages and recursively in their subpackages. An alternative to supplying packagenames or sourcefilenames.
+ .TP 3
+-@argfiles
+-One or more files that contain a list of Javadoc options, packagenames and sourcefilenames in any order. Wildcards (*) and \f2\-J\fP options are not allowed in these files.
++@argfiles
++One or more files that contain a list of Javadoc options, packagenames and sourcefilenames in any order. Wildcards (*) and \f2\-J\fP options are not allowed in these files.
+ .RE
+ .SH "DESCRIPTION"
+ .LP
+ The \f3Javadoc\fP tool parses the declarations and documentation comments in a set of Java source files and produces a corresponding set of HTML pages describing (by default) the public and protected classes, nested classes (but not anonymous inner classes), interfaces, constructors, methods, and fields. You can use it to generate the API (Application Programming Interface) documentation or the implementation documentation for a set of source files.
+ .LP
+ You can run the Javadoc tool on entire packages, individual source files, or both. When documenting entire packages, you can either use \f2\-subpackages\fP for traversing recursively down from a top\-level directory, or pass in an explicit list of package names. When documenting individual source files, you pass in a list of source (\f2.java\fP) filenames. Examples are given at the end of this document. How Javadoc processes source files is covered next.
+-.SS
++.SS
+ Processing of source files
+ .LP
+ The Javadoc tool processes files that end in "\f2.java\fP" plus other files described under Source Files. If you run the Javadoc tool by explicitly passing in individual source filenames, you can determine exactly which "\f2.java\fP" files are processed. However, that is not how most developers want to work, as it is simpler to pass in package names. The Javadoc tool can be run three ways without explicitly specifying the source filenames. You can (1) pass in package names, (2) use \f2\-subpackages\fP, and (3) use wildcards with source filenames (\f2*.java\fP). In these cases, the Javadoc tool processes a "\f2.java\fP" file only if it fulfills all of the following requirements:
+ .RS 3
+ .TP 2
+ o
+-Its name, after stripping off the "\f2.java\fP" suffix, is actually a legal class name (see the Java Language Specification for legal characters)
++Its name, after stripping off the "\f2.java\fP" suffix, is actually a legal class name (see the Java Language Specification for legal characters)
+ .TP 2
+ o
+-Its directory path relative to the root of the source tree is actually a legal package name (after converting its separators to dots)
++Its directory path relative to the root of the source tree is actually a legal package name (after converting its separators to dots)
+ .TP 2
+ o
+-Its package statement contains the legal package name (specified in the previous bullet)
++Its package statement contains the legal package name (specified in the previous bullet)
+ .RE
+ .LP
+ \f3Processing of links\fP \- During a run, the Javadoc tool automatically adds cross\-reference links to package, class and member names that are being documented as part of that run. Links appear in several places:
+ .RS 3
+ .TP 2
+ o
+-Declarations (return types, argument types, field types)
++Declarations (return types, argument types, field types)
+ .TP 2
+ o
+-"See Also" sections generated from \f2@see\fP tags
++"See Also" sections generated from \f2@see\fP tags
+ .TP 2
+ o
+-In\-line text generated from \f2{@link}\fP tags
++In\-line text generated from \f2{@link}\fP tags
+ .TP 2
+ o
+-Exception names generated from \f2@throws\fP tags
++Exception names generated from \f2@throws\fP tags
+ .TP 2
+ o
+-"Specified by" links to members in interfaces and "Overrides" links to members in classes
++"Specified by" links to members in interfaces and "Overrides" links to members in classes
+ .TP 2
+ o
+-Summary tables listing packages, classes and members
++Summary tables listing packages, classes and members
+ .TP 2
+ o
+-Package and class inheritance trees
++Package and class inheritance trees
+ .TP 2
+ o
+-The index
++The index
+ .RE
+ .LP
+ You can add hyperlinks to existing text for classes not included on the command line (but generated separately) by way of the \f2\-link\fP and \f2\-linkoffline\fP options.
+@@ -107,12 +107,12 @@
+ .LP
+ In many cases, the Javadoc tool allows you to generate documentation for source files whose code is incomplete or erroneous. This is a benefit that enables you to generate documentation before all debugging and troubleshooting is done. For example, according to the \f2Java Language Specification\fP, a class that contains an abstract method should itself be declared abstract. The Javadoc tool does not check for this, and would proceed without a warning, whereas the javac compiler stops on this error. The Javadoc tool does do some primitive checking of doc comments. Use the DocCheck doclet to check the doc comments more thoroughly.
+ .LP
+-When the Javadoc tool builds its internal structure for the documentation, it loads all referenced classes. Because of this, the Javadoc tool must be able to find all referenced classes, whether bootstrap classes, extensions, or user classes. For more about this, see
++When the Javadoc tool builds its internal structure for the documentation, it loads all referenced classes. Because of this, the Javadoc tool must be able to find all referenced classes, whether bootstrap classes, extensions, or user classes. For more about this, see
+ .na
+ \f2How Classes Are Found\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/findingclasses.html. Generally speaking, classes you create must either be loaded as an extension or in the Javadoc tool's class path.
+-.SS
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html. Generally speaking, classes you create must either be loaded as an extension or in the Javadoc tool's class path.
++.SS
+ Javadoc Doclets
+ .LP
+ You can customize the content and format of the Javadoc tool's output by using doclets. The Javadoc tool has a default "built\-in" doclet, called the standard doclet, that generates HTML\-formatted API documentation. You can modify or subclass the standard doclet, or write your own doclet to generate HTML, XML, MIF, RTF or whatever output format you'd like. Information about doclets and their use is at the following locations:
+@@ -122,14 +122,14 @@
+ .na
+ \f2Javadoc Doclets\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html
+ .TP 2
+ o
+-The \f2\-doclet\fP command\-line option
++The \f2\-doclet\fP command\-line option
+ .RE
+ .LP
+ When a custom doclet is not specified with the \f2\-doclet\fP command line option, the Javadoc tool will use the default standard doclet. The javadoc tool has several command line options that are available regardless of which doclet is being used. The standard doclet adds a supplementary set of command line options. Both sets of options are described below in the options section.
+-.SS
++.SS
+ Related Documentation and Doclets
+ .RS 3
+ .TP 2
+@@ -137,89 +137,89 @@
+ .na
+ \f2Javadoc Enhancements\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html for details about improvements added in Javadoc.
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/index.html for details about improvements added in Javadoc.
+ .TP 2
+ o
+ .na
+ \f2Javadoc FAQ\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/faq/index.html for answers to common questions, information about Javadoc\-related tools, and workarounds for bugs.
++http://java.sun.com/j2se/javadoc/faq/index.html for answers to common questions, information about Javadoc\-related tools, and workarounds for bugs.
+ .TP 2
+ o
+ .na
+ \f2How to Write Doc Comments for Javadoc\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html for more information about Sun conventions for writing documentation comments.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html for more information about Sun conventions for writing documentation comments.
+ .TP 2
+ o
+ .na
+ \f2Requirements for Writing API Specifications\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/writingapispecs/index.html \- Standard requirements used when writing the Java SE Platform Specification. It can be useful whether you are writing API specifications in source file documentation comments or in other formats. It covers requirements for packages, classes, interfaces, fields and methods to satisfy testable assertions.
++http://java.sun.com/j2se/javadoc/writingapispecs/index.html \- Standard requirements used when writing the Java SE Platform Specification. It can be useful whether you are writing API specifications in source file documentation comments or in other formats. It covers requirements for packages, classes, interfaces, fields and methods to satisfy testable assertions.
+ .TP 2
+ o
+ .na
+ \f2Documentation Comment Specification\fP @
+ .fi
+-http://java.sun.com/docs/books/jls/first_edition/html/18.doc.html \- The original specification on documentation comments, Chapter 18, Documentation Comments, in the \f2Java Language Specification\fP, First Edition, by James Gosling, Bill Joy, and Guy Steele. (This chapter was removed from the second edition.)
++http://java.sun.com/docs/books/jls/first_edition/html/18.doc.html \- The original specification on documentation comments, Chapter 18, Documentation Comments, in the \f2Java Language Specification\fP, First Edition, by James Gosling, Bill Joy, and Guy Steele. (This chapter was removed from the second edition.)
+ .TP 2
+ o
+ .na
+ \f2DocCheck Doclet\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-141437.html \- Checks doc comments in source files and generates a report listing the errors and irregularities it finds. It is part of the Doc Check Utilities.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-141437.html \- Checks doc comments in source files and generates a report listing the errors and irregularities it finds. It is part of the Doc Check Utilities.
+ .TP 2
+ o
+ .na
+ \f2MIF Doclet\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/mifdoclet/ \- Can automate the generation of API documentation in MIF, FrameMaker and PDF formats. MIF is Adobe FrameMaker's interchange format.
++http://java.sun.com/j2se/javadoc/mifdoclet/ \- Can automate the generation of API documentation in MIF, FrameMaker and PDF formats. MIF is Adobe FrameMaker's interchange format.
+ .RE
+-.SS
++.SS
+ Terminology
+ .LP
+ The terms \f2documentation comment\fP, \f2doc comment\fP, \f2main description\fP, \f2tag\fP, \f2block tag\fP, and \f2in\-line tag\fP are described at Documentation Comments. These other terms have specific meanings within the context of the Javadoc tool:
+ .RS 3
+ .TP 3
+-generated document
+-The document generated by the javadoc tool from the doc comments in Java source code. The default generated document is in HTML and is created by the standard doclet.
++generated document
++The document generated by the javadoc tool from the doc comments in Java source code. The default generated document is in HTML and is created by the standard doclet.
+ .LP
+ .TP 3
+-name
+-A name of a program element written in the Java Language \-\- that is, the name of a package, class, interface, field, constructor or method. A name can be fully\-qualified, such as \f2java.lang.String.equals(java.lang.Object)\fP, or partially\-qualified, such as \f2equals(Object)\fP.
++name
++A name of a program element written in the Java Language \-\- that is, the name of a package, class, interface, field, constructor or method. A name can be fully\-qualified, such as \f2java.lang.String.equals(java.lang.Object)\fP, or partially\-qualified, such as \f2equals(Object)\fP.
+ .LP
+ .TP 3
+-documented classes
+-The classes and interfaces for which detailed documentation is generated during a javadoc run. To be documented, the source files must be available, their source filenames or package names must be passed into the javadoc command, and they must not be filtered out by their access modifier (public, protected, package\-private or private). We also refer to these as the classes included in the javadoc output, or the \f2included classes\fP.
++documented classes
++The classes and interfaces for which detailed documentation is generated during a javadoc run. To be documented, the source files must be available, their source filenames or package names must be passed into the javadoc command, and they must not be filtered out by their access modifier (public, protected, package\-private or private). We also refer to these as the classes included in the javadoc output, or the \f2included classes\fP.
+ .LP
+ .TP 3
+-included classes
+-Classes and interfaces whose details are documented during a run of the Javadoc tool. Same as \f2documented classes\fP.
++included classes
++Classes and interfaces whose details are documented during a run of the Javadoc tool. Same as \f2documented classes\fP.
+ .LP
+ .TP 3
+-excluded classes
+-Classes and interfaces whose details are \f2not\fP documented during a run of the Javadoc tool.
++excluded classes
++Classes and interfaces whose details are \f2not\fP documented during a run of the Javadoc tool.
+ .LP
+ .TP 3
+-referenced classes
+-The classes and interfaces that are explicitly referred to in the definition (implementation) or doc comments of the documented classes and interfaces. Examples of references include return type, parameter type, cast type, extended class, implemented interface, imported classes, classes used in method bodies, @see, {@link}, {@linkplain}, and {@inheritDoc} tags. (Notice this definition has changed since
++referenced classes
++The classes and interfaces that are explicitly referred to in the definition (implementation) or doc comments of the documented classes and interfaces. Examples of references include return type, parameter type, cast type, extended class, implemented interface, imported classes, classes used in method bodies, @see, {@link}, {@linkplain}, and {@inheritDoc} tags. (Notice this definition has changed since
+ .na
+ \f21.3\fP @
+ .fi
+-http://download.oracle.com/javase/1.3/docs/tooldocs/solaris/javadoc.html#referencedclasses.) When the Javadoc tool is run, it should load into memory all of the referenced classes in javadoc's bootclasspath and classpath. (The Javadoc tool prints a "Class not found" warning for referenced classes not found.) The Javadoc tool can derive enough information from the .class files to determine their existence and the fully\-qualified names of their members.
++http://docs.oracle.com/javase/1.3/docs/tooldocs/solaris/javadoc.html#referencedclasses.) When the Javadoc tool is run, it should load into memory all of the referenced classes in javadoc's bootclasspath and classpath. (The Javadoc tool prints a "Class not found" warning for referenced classes not found.) The Javadoc tool can derive enough information from the .class files to determine their existence and the fully\-qualified names of their members.
+ .LP
+ .TP 3
+-external referenced classes
+-The referenced classes whose documentation is not being generated during a javadoc run. In other words, these classes are not passed into the Javadoc tool on the command line. Links in the generated documentation to those classes are said to be \f2external references\fP or \f2external links\fP. For example, if you run the Javadoc tool on only the \f2java.awt\fP package, then any class in \f2java.lang\fP, such as \f2Object\fP, is an external referenced class. External referenced classes can be linked to using the \f2\-link\fP and \f2\-linkoffline\fP options. An important property of an external referenced class is that its source comments are normally not available to the Javadoc run. In this case, these comments cannot be inherited.
++external referenced classes
++The referenced classes whose documentation is not being generated during a javadoc run. In other words, these classes are not passed into the Javadoc tool on the command line. Links in the generated documentation to those classes are said to be \f2external references\fP or \f2external links\fP. For example, if you run the Javadoc tool on only the \f2java.awt\fP package, then any class in \f2java.lang\fP, such as \f2Object\fP, is an external referenced class. External referenced classes can be linked to using the \f2\-link\fP and \f2\-linkoffline\fP options. An important property of an external referenced class is that its source comments are normally not available to the Javadoc run. In this case, these comments cannot be inherited.
+ .RE
+ .SH "SOURCE FILES"
+ .LP
+ The Javadoc tool will generate output originating from four different types of "source" files: Java language source files for classes (\f2.java\fP), package comment files, overview comment files, and miscellaneous unprocessed files. This section also covers test files and template files that can also be in the source tree, but which you want to be sure not to document.
+-.SS
++.SS
+ Class Source Code Files
+ .LP
+ Each class or interface and its members can have their own documentation comments, contained in a \f2.java\fP file. For more details about these doc comments, see Documentation Comments.
+-.SS
++.SS
+ Package Comment Files
+ .LP
+ Each package can have its own documentation comment, contained in its own "source" file, that the Javadoc tool will merge into the package summary page that it generates. You typically include in this comment any documentation that applies to the entire package.
+@@ -228,10 +228,10 @@
+ .RS 3
+ .TP 2
+ o
+-\f2package\-info.java\fP \- Can contain a package declaration, package annotations, package comments and Javadoc tags. This file is generally preferred over package.html.
++\f2package\-info.java\fP \- Can contain a package declaration, package annotations, package comments and Javadoc tags. This file is generally preferred over package.html.
+ .TP 2
+ o
+-\f2package.html\fP \- Can contain only package comments and Javadoc tags, no package annotations.
++\f2package.html\fP \- Can contain only package comments and Javadoc tags, no package annotations.
+ .RE
+ .LP
+ A package may have a single \f2package.html\fP file or a single \f2package\-info.java\fP file but not both. Place either file in the package directory in the source tree along with your \f2.java\fP files.
+@@ -244,9 +244,9 @@
+ .fl
+ /**
+ .fl
+- * Provides the classes necessary to create an
++ * Provides the classes necessary to create an
+ .fl
+- * applet and the classes an applet uses
++ * applet and the classes an applet uses
+ .fl
+ * to communicate with its applet context.
+ .fl
+@@ -260,7 +260,7 @@
+ .fl
+ * {@link java.awt.Panel} class) with a few extra
+ .fl
+- * methods that the applet context can use to
++ * methods that the applet context can use to
+ .fl
+ * initialize, start, and stop the applet.
+ .fl
+@@ -289,7 +289,7 @@
+ .fl
+ <BODY>
+ .fl
+-Provides the classes necessary to create an applet and the
++Provides the classes necessary to create an applet and the
+ .fl
+ classes an applet uses to communicate with its applet context.
+ .fl
+@@ -303,11 +303,11 @@
+ .fl
+ few extra methods that the applet context can use to
+ .fl
+-initialize, start, and stop the applet.
++initialize, start, and stop the applet.
+ .fl
+
+ .fl
+-@since 1.0
++@since 1.0
+ .fl
+ @see java.awt
+ .fl
+@@ -318,7 +318,7 @@
+ \fP
+ .fi
+ .LP
+-Notice this is just a normal HTML file and does not include a package declaration. The content of the package comment file is written in HTML, like all other comments, with one exception: The documentation comment should not include the comment separators \f2/**\fP and \f2*/\fP or leading asterisks. When writing the comment, you should make the first sentence a summary about the package, and not put a title or any other text between \f2<body>\fP and the first sentence. You can include package tags; as with any documentation comment, all block tags must appear after the main description. If you add a \f2@see\fP tag in a package comment file, it must have a fully\-qualified name. For more details, see the
++Notice this is just a normal HTML file and does not include a package declaration. The content of the package comment file is written in HTML, like all other comments, with one exception: The documentation comment should not include the comment separators \f2/**\fP and \f2*/\fP or leading asterisks. When writing the comment, you should make the first sentence a summary about the package, and not put a title or any other text between \f2<body>\fP and the first sentence. You can include package tags; as with any documentation comment, all block tags must appear after the main description. If you add a \f2@see\fP tag in a package comment file, it must have a fully\-qualified name. For more details, see the
+ .na
+ \f2example of \fP\f2package.html\fP @
+ .fi
+@@ -328,26 +328,26 @@
+ .RS 3
+ .TP 2
+ o
+-Copies the comment for processing. (For \f2package.html\fP, copies all content between \f2<body>\fP and \f2</body>\fP HTML tags. You can include a \f2<head>\fP section to put a \f2<title>\fP, source file copyright statement, or other information, but none of these will appear in the generated documentation.)
++Copies the comment for processing. (For \f2package.html\fP, copies all content between \f2<body>\fP and \f2</body>\fP HTML tags. You can include a \f2<head>\fP section to put a \f2<title>\fP, source file copyright statement, or other information, but none of these will appear in the generated documentation.)
+ .TP 2
+ o
+-Processes any package tags that are present.
++Processes any package tags that are present.
+ .TP 2
+ o
+-Inserts the processed text at the bottom of the package summary page it generates, as shown in
++Inserts the processed text at the bottom of the package summary page it generates, as shown in
+ .na
+ \f2Package Summary\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/applet/package\-summary.html.
++http://docs.oracle.com/javase/7/docs/api/java/applet/package\-summary.html.
+ .TP 2
+ o
+-Copies the first sentence of the package comment to the top of the package summary page. It also adds the package name and this first sentence to the list of packages on the overview page, as shown in
++Copies the first sentence of the package comment to the top of the package summary page. It also adds the package name and this first sentence to the list of packages on the overview page, as shown in
+ .na
+ \f2Overview Summary\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/overview\-summary.html. The end\-of\-sentence is determined by the same rules used for the end of the first sentence of class and member main descriptions.
++http://docs.oracle.com/javase/7/docs/api/overview\-summary.html. The end\-of\-sentence is determined by the same rules used for the end of the first sentence of class and member main descriptions.
+ .RE
+-.SS
++.SS
+ Overview Comment File
+ .LP
+ Each application or set of packages that you are documenting can have its own overview documentation comment, kept in its own "source" file, that the Javadoc tool will merge into the overview page that it generates. You typically include in this comment any documentation that applies to the entire application or set of packages.
+@@ -362,22 +362,22 @@
+ .RS 3
+ .TP 2
+ o
+-Copies all content between \f2<body>\fP and \f2</body>\fP tags for processing.
++Copies all content between \f2<body>\fP and \f2</body>\fP tags for processing.
+ .TP 2
+ o
+-Processes any overview tags that are present.
++Processes any overview tags that are present.
+ .TP 2
+ o
+-Inserts the processed text at the bottom of the overview page it generates, as shown in
++Inserts the processed text at the bottom of the overview page it generates, as shown in
+ .na
+ \f2Overview Summary\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/overview\-summary.html.
++http://docs.oracle.com/javase/7/docs/api/overview\-summary.html.
+ .TP 2
+ o
+-Copies the first sentence of the overview comment to the top of the overview summary page.
++Copies the first sentence of the overview comment to the top of the overview summary page.
+ .RE
+-.SS
++.SS
+ Miscellaneous Unprocessed Files
+ .LP
+ You can also include in your source any miscellaneous files that you want the Javadoc tool to copy to the destination directory. These typically includes graphic files, example Java source (.java) and class (.class) files, and self\-standing HTML files whose content would overwhelm the documentation comment of a normal Java source file.
+@@ -390,7 +390,7 @@
+ .fl
+ /**
+ .fl
+- * This button looks like this:
++ * This button looks like this:
+ .fl
+ * <img src="doc\-files/Button.gif">
+ .fl
+@@ -398,7 +398,7 @@
+ .fl
+ \fP
+ .fi
+-.SS
++.SS
+ Test Files and Template Files
+ .LP
+ Some developers have indicated they want to store test files and templates files in the source tree near their corresponding source files. That is, they would like to put them in the same directory, or a subdirectory, of those source files.
+@@ -429,60 +429,60 @@
+ .RS 3
+ .TP 2
+ o
+-One \f3class or interface page\fP (\f2classname\fP\f2.html\fP) for each class or interface it is documenting.
++One \f3class or interface page\fP (\f2classname\fP\f2.html\fP) for each class or interface it is documenting.
+ .TP 2
+ o
+-One \f3package page\fP (\f2package\-summary.html\fP) for each package it is documenting. The Javadoc tool will include any HTML text provided in a file named \f2package.html\fP or \f2package\-info.java\fP in the package directory of the source tree.
++One \f3package page\fP (\f2package\-summary.html\fP) for each package it is documenting. The Javadoc tool will include any HTML text provided in a file named \f2package.html\fP or \f2package\-info.java\fP in the package directory of the source tree.
+ .TP 2
+ o
+-One \f3overview page\fP (\f2overview\-summary.html\fP) for the entire set of packages. This is the front page of the generated document. The Javadoc tool will include any HTML text provided in a file specified with the \f2\-overview\fP option. Note that this file is created only if you pass into javadoc two or more package names. For further explanation, see HTML Frames.)
++One \f3overview page\fP (\f2overview\-summary.html\fP) for the entire set of packages. This is the front page of the generated document. The Javadoc tool will include any HTML text provided in a file specified with the \f2\-overview\fP option. Note that this file is created only if you pass into javadoc two or more package names. For further explanation, see HTML Frames.)
+ .RE
+ .LP
+ \f3Cross\-Reference Pages\fP
+ .RS 3
+ .TP 2
+ o
+-One \f3class hierarchy page for the entire set of packages\fP (\f2overview\-tree.html\fP). To view this, click on "Overview" in the navigation bar, then click on "Tree".
++One \f3class hierarchy page for the entire set of packages\fP (\f2overview\-tree.html\fP). To view this, click on "Overview" in the navigation bar, then click on "Tree".
+ .TP 2
+ o
+-One \f3class hierarchy page for each package\fP (\f2package\-tree.html\fP) To view this, go to a particular package, class or interface page; click "Tree" to display the hierarchy for that package.
++One \f3class hierarchy page for each package\fP (\f2package\-tree.html\fP) To view this, go to a particular package, class or interface page; click "Tree" to display the hierarchy for that package.
+ .TP 2
+ o
+-One \f3"use" page\fP for each package (\f2package\-use.html\fP) and a separate one for each class and interface (\f2class\-use/\fP\f2classname\fP\f2.html\fP). This page describes what packages, classes, methods, constructors and fields use any part of the given class, interface or package. Given a class or interface A, its "use" page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
++One \f3"use" page\fP for each package (\f2package\-use.html\fP) and a separate one for each class and interface (\f2class\-use/\fP\f2classname\fP\f2.html\fP). This page describes what packages, classes, methods, constructors and fields use any part of the given class, interface or package. Given a class or interface A, its "use" page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
+ .TP 2
+ o
+-A \f3deprecated API page\fP (\f2deprecated\-list.html\fP) listing all deprecated names. (A deprecated name is not recommended for use, generally due to improvements, and a replacement name is usually given. Deprecated APIs may be removed in future implementations.)
++A \f3deprecated API page\fP (\f2deprecated\-list.html\fP) listing all deprecated names. (A deprecated name is not recommended for use, generally due to improvements, and a replacement name is usually given. Deprecated APIs may be removed in future implementations.)
+ .TP 2
+ o
+-A \f3constant field values page\fP (\f2constant\-values.html\fP) for the values of static fields.
++A \f3constant field values page\fP (\f2constant\-values.html\fP) for the values of static fields.
+ .TP 2
+ o
+-A \f3serialized form page\fP (\f2serialized\-form.html\fP) for information about serializable and externalizable classes. Each such class has a description of its serialization fields and methods. This information is of interest to re\-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class comment. The standard doclet automatically generates a serialized form page: any class (public or non\-public) that implements Serializable is included, along with \f2readObject\fP and \f2writeObject\fP methods, the fields that are serialized, and the doc comments from the \f2@serial\fP, \f2@serialField\fP, and \f2@serialData\fP tags. Public serializable classes can be excluded by marking them (or their package) with \f2@serial exclude\fP, and package\-private serializable classes can be included by marking them (or their package) with \f2@serial include\fP. As of 1.4, you can generate the complete serialized form for public and private classes by running javadoc \f2without\fP specifying the \f2\-private\fP option.
++A \f3serialized form page\fP (\f2serialized\-form.html\fP) for information about serializable and externalizable classes. Each such class has a description of its serialization fields and methods. This information is of interest to re\-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class comment. The standard doclet automatically generates a serialized form page: any class (public or non\-public) that implements Serializable is included, along with \f2readObject\fP and \f2writeObject\fP methods, the fields that are serialized, and the doc comments from the \f2@serial\fP, \f2@serialField\fP, and \f2@serialData\fP tags. Public serializable classes can be excluded by marking them (or their package) with \f2@serial exclude\fP, and package\-private serializable classes can be included by marking them (or their package) with \f2@serial include\fP. As of 1.4, you can generate the complete serialized form for public and private classes by running javadoc \f2without\fP specifying the \f2\-private\fP option.
+ .TP 2
+ o
+-An \f3index\fP (\f2index\-*.html\fP) of all class, interface, constructor, field and method names, alphabetically arranged. This is internationalized for Unicode and can be generated as a single file or as a separate file for each starting character (such as A\-Z for English).
++An \f3index\fP (\f2index\-*.html\fP) of all class, interface, constructor, field and method names, alphabetically arranged. This is internationalized for Unicode and can be generated as a single file or as a separate file for each starting character (such as A\-Z for English).
+ .RE
+ .LP
+ \f3Support Files\fP
+ .RS 3
+ .TP 2
+ o
+-A \f3help page\fP (\f2help\-doc.html\fP) that describes the navigation bar and the above pages. You can provide your own custom help file to override the default using \f2\-helpfile\fP.
++A \f3help page\fP (\f2help\-doc.html\fP) that describes the navigation bar and the above pages. You can provide your own custom help file to override the default using \f2\-helpfile\fP.
+ .TP 2
+ o
+-One \f3index.html file\fP which creates the HTML frames for display. This is the file you load to display the front page with frames. This file itself contains no text content.
++One \f3index.html file\fP which creates the HTML frames for display. This is the file you load to display the front page with frames. This file itself contains no text content.
+ .TP 2
+ o
+-Several \f3frame files\fP (\f2*\-frame.html\fP) containing lists of packages, classes and interfaces, used when HTML frames are being displayed.
++Several \f3frame files\fP (\f2*\-frame.html\fP) containing lists of packages, classes and interfaces, used when HTML frames are being displayed.
+ .TP 2
+ o
+-A \f3package list\fP file (\f2package\-list\fP), used by the \f2\-link\fP and \f2\-linkoffline\fP options. This is a text file, not HTML, and is not reachable through any links.
++A \f3package list\fP file (\f2package\-list\fP), used by the \f2\-link\fP and \f2\-linkoffline\fP options. This is a text file, not HTML, and is not reachable through any links.
+ .TP 2
+ o
+-A \f3style sheet\fP file (\f2stylesheet.css\fP) that controls a limited amount of color, font family, font size, font style and positioning on the generated pages.
++A \f3style sheet\fP file (\f2stylesheet.css\fP) that controls a limited amount of color, font family, font size, font style and positioning on the generated pages.
+ .TP 2
+ o
+-A \f3doc\-files\fP directory that holds any image, example, source code or other files that you want copied to the destination directory. These files are not processed by the Javadoc tool in any manner \-\- that is, any javadoc tags in them will be ignored. This directory is not generated unless it exists in the source tree.
++A \f3doc\-files\fP directory that holds any image, example, source code or other files that you want copied to the destination directory. These files are not processed by the Javadoc tool in any manner \-\- that is, any javadoc tags in them will be ignored. This directory is not generated unless it exists in the source tree.
+ .RE
+ .LP
+ \f3HTML Frames\fP
+@@ -495,10 +495,10 @@
+ .RS 3
+ .TP 2
+ o
+-\f2index.html\fP (for frames)
++\f2index.html\fP (for frames)
+ .TP 2
+ o
+-\f2overview\-summary.html\fP (for no frames)
++\f2overview\-summary.html\fP (for no frames)
+ .RE
+ .LP
+ \f3Generated File Structure\fP
+@@ -590,7 +590,7 @@
+ AudioClip.html Page for AudioClip source code
+ .fl
+ .fi
+-.SS
++.SS
+ Generated API Declarations
+ .LP
+ The Javadoc tool generates a declaration at the start of each class, interface, field, constructor, and method description for that API item. For example, the declaration for the \f2Boolean\fP class is:
+@@ -611,7 +611,7 @@
+ .SH "DOCUMENTATION COMMENTS"
+ .LP
+ The original "Documentation Comment Specification" can be found under related documentation.
+-.SS
++.SS
+ Commenting the Source Code
+ .LP
+ You can include \f2documentation comments\fP ("doc comments") in the source code, ahead of declarations for any class, interface, method, constructor, or field. You can also create doc comments for each package and another one for the overview, though their syntax is slightly different. Doc comments are also known informally as "Javadoc comments" (but this term violates its trademark usage). A doc comment consists of the characters between the characters \f2/**\fP that begin the comment and the characters \f2*/\fP that end it. Leading asterisks are allowed on each line and are described further below. The text in a comment can continue onto multiple lines.
+@@ -718,13 +718,13 @@
+ .nf
+ \f3
+ .fl
+-/**
++/**
+ .fl
+ * The horizontal and vertical distances of point (x,y)
+ .fl
+ */
+ .fl
+-public int x, y; // Avoid this
++public int x, y; // Avoid this
+ .fl
+ \fP
+ .fi
+@@ -737,7 +737,7 @@
+ .fl
+ .fi
+ .RS 3
+-The horizontal and vertical distances of point (x,y)
++The horizontal and vertical distances of point (x,y)
+ .RE
+ .nf
+ \f3
+@@ -746,25 +746,25 @@
+ .fl
+ .fi
+ .RS 3
+-The horizontal and vertical distances of point (x,y)
++The horizontal and vertical distances of point (x,y)
+ .RE
+ .LP
+ \f3Use header tags carefully\fP \- When writing documentation comments for members, it's best not to use HTML heading tags such as <H1> and <H2>, because the Javadoc tool creates an entire structured document and these structural tags might interfere with the formatting of the generated document. However, it is fine to use these headings in class and package comments to provide your own structure.
+-.SS
++.SS
+ Automatic Copying of Method Comments
+ .LP
+ The Javadoc tool has the ability to copy or "inherit" method comments in classes and interfaces under the following two circumstances. Constructors, fields and nested classes do not inherit doc comments.
+ .RS 3
+ .TP 2
+ o
+-\f3Automatically inherit comment to fill in missing text\fP \- When a main description, or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag is missing from a method comment, the Javadoc tool copies the corresponding main description or tag comment from the method it overrides or implements (if any), according to the algorithm below.
++\f3Automatically inherit comment to fill in missing text\fP \- When a main description, or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag is missing from a method comment, the Javadoc tool copies the corresponding main description or tag comment from the method it overrides or implements (if any), according to the algorithm below.
+ .LP
+-More specifically, when a \f2@param\fP tag for a particular parameter is missing, then the comment for that parameter is copied from the method further up the inheritance hierarchy. When a \f2@throws\fP tag for a particular exception is missing, the \f2@throws\fP tag is copied \f2only if that exception is declared\fP.
++More specifically, when a \f2@param\fP tag for a particular parameter is missing, then the comment for that parameter is copied from the method further up the inheritance hierarchy. When a \f2@throws\fP tag for a particular exception is missing, the \f2@throws\fP tag is copied \f2only if that exception is declared\fP.
+ .LP
+-This behavior contrasts with version 1.3 and earlier, where the presence of any main description or tag would prevent all comments from being inherited.
++This behavior contrasts with version 1.3 and earlier, where the presence of any main description or tag would prevent all comments from being inherited.
+ .TP 2
+ o
+-\f3Explicitly inherit comment with {@inheritDoc} tag\fP \- Insert the inline tag \f2{@inheritDoc}\fP in a method main description or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag comment \-\- the corresponding inherited main description or tag comment is copied into that spot.
++\f3Explicitly inherit comment with {@inheritDoc} tag\fP \- Insert the inline tag \f2{@inheritDoc}\fP in a method main description or \f2@return\fP, \f2@param\fP or \f2@throws\fP tag comment \-\- the corresponding inherited main description or tag comment is copied into that spot.
+ .RE
+ .LP
+ The source file for the inherited method need only be on the path specified by \-sourcepath for the doc comment to actually be available to copy. Neither the class nor its package needs to be passed in on the command line. This contrasts with 1.3.x and earlier releases, where the class had to be a documented class
+@@ -773,13 +773,13 @@
+ .RS 3
+ .TP 2
+ o
+-When a method in a class overrides a method in a superclass
++When a method in a class overrides a method in a superclass
+ .TP 2
+ o
+-When a method in an interface overrides a method in a superinterface
++When a method in an interface overrides a method in a superinterface
+ .TP 2
+ o
+-When a method in a class implements a method in an interface
++When a method in a class implements a method in an interface
+ .RE
+ .LP
+ In the first two cases, for method overrides, the Javadoc tool generates a subheading "Overrides" in the documentation for the overriding method, with a link to the method it is overriding, whether or not the comment is inherited.
+@@ -790,37 +790,37 @@
+ .RS 3
+ .TP 3
+ 1.
+-Look in each directly implemented (or extended) interface in the order they appear following the word implements (or extends) in the method declaration. Use the first doc comment found for this method.
++Look in each directly implemented (or extended) interface in the order they appear following the word implements (or extends) in the method declaration. Use the first doc comment found for this method.
+ .TP 3
+ 2.
+-If step 1 failed to find a doc comment, recursively apply this entire algorithm to each directly implemented (or extended) interface, in the same order they were examined in step 1.
++If step 1 failed to find a doc comment, recursively apply this entire algorithm to each directly implemented (or extended) interface, in the same order they were examined in step 1.
+ .TP 3
+ 3.
+-If step 2 failed to find a doc comment and this is a class other than Object (not an interface):
++If step 2 failed to find a doc comment and this is a class other than Object (not an interface):
+ .RS 3
+ .TP 3
+ a.
+-If the superclass has a doc comment for this method, use it.
++If the superclass has a doc comment for this method, use it.
+ .TP 3
+ b.
+-If step 3a failed to find a doc comment, recursively apply this entire algorithm to the superclass.
++If step 3a failed to find a doc comment, recursively apply this entire algorithm to the superclass.
+ .RE
+ .RE
+ .SH "JAVADOC TAGS"
+ .LP
+-The Javadoc tool parses special tags when they are embedded within a Java doc comment. These doc tags enable you to autogenerate a complete, well\-formatted API from your source code. The tags start with an "at" sign (\f2@\fP) and are case\-sensitive \-\- they must be typed with the uppercase and lowercase letters as shown. A tag must start at the beginning of a line (after any leading spaces and an optional asterisk) or it is treated as normal text. By convention, tags with the same name are grouped together. For example, put all \f2@see\fP tags together.
++The Javadoc tool parses special tags when they are embedded within a Java doc comment. These doc tags enable you to autogenerate a complete, well\-formatted API from your source code. The tags start with an "at" sign (\f2@\fP) and are case\-sensitive \-\- they must be typed with the uppercase and lowercase letters as shown. A tag must start at the beginning of a line (after any leading spaces and an optional asterisk) or it is treated as normal text. By convention, tags with the same name are grouped together. For example, put all \f2@see\fP tags together.
+ .LP
+ Tags come in two types:
+ .RS 3
+ .TP 2
+ o
+-\f3Block tags\fP \- Can be placed only in the tag section that follows the main description. Block tags are of the form: \f2@tag\fP.
++\f3Block tags\fP \- Can be placed only in the tag section that follows the main description. Block tags are of the form: \f2@tag\fP.
+ .TP 2
+ o
+-\f3Inline tags\fP \- Can be placed anywhere in the main description or in the comments for block tags. Inline tags are denoted by curly braces: \f2{@tag}\fP.
++\f3Inline tags\fP \- Can be placed anywhere in the main description or in the comments for block tags. Inline tags are denoted by curly braces: \f2{@tag}\fP.
+ .RE
+ .LP
+-For information about tags we might introduce in future releases, see
++For information about tags we might introduce in future releases, see
+ .na
+ \f2Proposed Tags\fP @
+ .fi
+@@ -828,6 +828,7 @@
+ .LP
+ The current tags are:
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -952,83 +953,83 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Tag\fP\h'|\n(41u'\f3Introduced in JDK/SDK\fP
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@author\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@code}\fP\h'|\n(41u'1.5
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@docRoot}\fP\h'|\n(41u'1.3
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@deprecated\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@exception\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@inheritDoc}\fP\h'|\n(41u'1.4
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@link}\fP\h'|\n(41u'1.2
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@linkplain}\fP\h'|\n(41u'1.4
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@literal}\fP\h'|\n(41u'1.5
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@param\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@return\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@see\fP\h'|\n(41u'1.0
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@serial\fP\h'|\n(41u'1.2
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@serialData\fP\h'|\n(41u'1.2
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@serialField\fP\h'|\n(41u'1.2
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@since\fP\h'|\n(41u'1.1
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@throws\fP\h'|\n(41u'1.2
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2{@value}\fP\h'|\n(41u'1.4
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f2@version\fP\h'|\n(41u'1.0
+@@ -1036,16 +1037,17 @@
+ .nr T. 1
+ .T# 1
+ .35
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-42
+ .LP
+ For custom tags, see the \-tag option.
+ .RS 3
+ .TP 3
+-@author\ name\-text
+-Adds an "Author" entry with the specified \f2name\-text\fP to the generated docs when the \-author option is used. A doc comment may contain multiple \f2@author\fP tags. You can specify one name per \f2@author\fP tag or multiple names per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
++@author\ name\-text
++Adds an "Author" entry with the specified \f2name\-text\fP to the generated docs when the \-author option is used. A doc comment may contain multiple \f2@author\fP tags. You can specify one name per \f2@author\fP tag or multiple names per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
+ .RE
+ .LP
+-For more details, see Where Tags Can Be Used and
++For more details, see Where Tags Can Be Used and
+ .na
+ \f2writing @author tags\fP @
+ .fi
+@@ -1053,14 +1055,14 @@
+ .LP
+ .RS 3
+ .TP 3
+-@deprecated\ deprecated\-text Note: You can deprecate a program element using the @Deprecated annotation.
++@deprecated\ deprecated\-text Note: You can deprecate a program element using the @Deprecated annotation.
+ .RE
+ .LP
+ Adds a comment indicating that this API should no longer be used (even though it may continue to work). The Javadoc tool moves the \f2deprecated\-text\fP ahead of the main description, placing it in italics and preceding it with a bold warning: "Deprecated". This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field.
+ .LP
+ The first sentence of \f2deprecated\-text\fP should at least tell the user when the API was deprecated and what to use as a replacement. The Javadoc tool copies just the first sentence to the summary section and index. Subsequent sentences can also explain why it has been deprecated. You should include a \f2{@link}\fP tag (for Javadoc 1.2 or later) that points to the replacement API:
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @deprecated tags\fP @
+ .fi
+@@ -1068,7 +1070,7 @@
+ .RS 3
+ .TP 2
+ o
+-For Javadoc 1.2 and later, use a \f2{@link}\fP tag. This creates the link in\-line, where you want it. For example:
++For Javadoc 1.2 and later, use a \f2{@link}\fP tag. This creates the link in\-line, where you want it. For example:
+ .nf
+ \f3
+ .fl
+@@ -1078,75 +1080,75 @@
+ .fl
+ */
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .TP 2
+ o
+-For Javadoc 1.1, the standard format is to create a \f2@see\fP tag (which cannot be in\-line) for each \f2@deprecated\fP tag.
++For Javadoc 1.1, the standard format is to create a \f2@see\fP tag (which cannot be in\-line) for each \f2@deprecated\fP tag.
+ .RE
+ .LP
+-For more about deprecation, see
++For more about deprecation, see
+ .na
+ \f2The @deprecated tag\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/deprecation/index.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/deprecation/index.html.
+ .LP
+ .RS 3
+ .TP 3
+-{@code\ text}
+-Equivalent to \f2<code>{@literal}</code>\fP.
++{@code\ text}
++Equivalent to \f2<code>{@literal}</code>\fP.
+ .LP
+-Displays \f2text\fP in \f2code\fP font without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
++Displays \f2text\fP in \f2code\fP font without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
+ .nf
+ \f3
+ .fl
+ \fP\f4{@code A<B>C}\fP\f3
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-displays in the generated HTML page unchanged, as:
++displays in the generated HTML page unchanged, as:
+ .nf
+ \f3
+ .fl
+ \fP\f4A<B>C\fP\f3
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-The noteworthy point is that the \f2<B>\fP is not interpreted as bold and is in code font.
++The noteworthy point is that the \f2<B>\fP is not interpreted as bold and is in code font.
+ .LP
+-If you want the same functionality without the code font, use \f2{@literal}\fP.
++If you want the same functionality without the code font, use \f2{@literal}\fP.
+ .LP
+ .TP 3
+-{@docRoot}
+-Represents the relative path to the generated document's (destination) root directory from any generated page. It is useful when you want to include a file, such as a copyright page or company logo, that you want to reference from all generated pages. Linking to the copyright page from the bottom of each page is common.
++{@docRoot}
++Represents the relative path to the generated document's (destination) root directory from any generated page. It is useful when you want to include a file, such as a copyright page or company logo, that you want to reference from all generated pages. Linking to the copyright page from the bottom of each page is common.
+ .LP
+-This \f2{@docRoot}\fP tag can be used both on the command line and in a doc comment: This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
++This \f2{@docRoot}\fP tag can be used both on the command line and in a doc comment: This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
+ .RS 3
+ .TP 3
+ 1.
+-On the command line, where the header/footer/bottom are defined:
++On the command line, where the header/footer/bottom are defined:
+ .nf
+ \f3
+ .fl
+ javadoc \-bottom '<a href="{@docRoot}/copyright.html">Copyright</a>'
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-NOTE \- When using \f2{@docRoot}\fP this way in a make file, some makefile programs require special escaping for the brace {} characters. For example, the Inprise MAKE version 5.2 running on Windows requires double braces: \f2{{@docRoot}}\fP. It also requires double (rather than single) quotes to enclose arguments to options such as \f2\-bottom\fP (with the quotes around the \f2href\fP argument omitted).
++NOTE \- When using \f2{@docRoot}\fP this way in a make file, some makefile programs require special escaping for the brace {} characters. For example, the Inprise MAKE version 5.2 running on Windows requires double braces: \f2{{@docRoot}}\fP. It also requires double (rather than single) quotes to enclose arguments to options such as \f2\-bottom\fP (with the quotes around the \f2href\fP argument omitted).
+ .TP 3
+ 2.
+-In a doc comment:
++In a doc comment:
+ .nf
+ \f3
+ .fl
+@@ -1156,159 +1158,159 @@
+ .fl
+ */
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .RE
+ .LP
+-The reason this tag is needed is because the generated docs are in hierarchical directories, as deep as the number of subpackages. This expression:
++The reason this tag is needed is because the generated docs are in hierarchical directories, as deep as the number of subpackages. This expression:
+ .nf
+ \f3
+ .fl
+ <a href="{@docRoot}/copyright.html">
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-would resolve to:
++would resolve to:
+ .nf
+ \f3
+ .fl
+ <a href="../../copyright.html"> for java/lang/Object.java
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-and
++and
+ .nf
+ \f3
+ .fl
+ <a href="../../../copyright.html"> for java/lang/ref/Reference.java
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+ .TP 3
+-@exception\ class\-name\ description
+-The \f2@exception\fP tag is a synonym for \f2@throws\fP.
++@exception\ class\-name\ description
++The \f2@exception\fP tag is a synonym for \f2@throws\fP.
+ .LP
+ .TP 3
+-{@inheritDoc}\
+-Inherits (copies) documentation from the "nearest" inheritable class or implementable interface into the current doc comment at this tag's location. This allows you to write more general comments higher up the inheritance tree, and to write around the copied text.
++{@inheritDoc}\
++Inherits (copies) documentation from the "nearest" inheritable class or implementable interface into the current doc comment at this tag's location. This allows you to write more general comments higher up the inheritance tree, and to write around the copied text.
+ .LP
+-This tag is valid only in these places in a doc comment:
++This tag is valid only in these places in a doc comment:
+ .RS 3
+ .TP 2
+ o
+-In the main description block of a method. In this case, the main description is copied from a class or interface up the hierarchy.
++In the main description block of a method. In this case, the main description is copied from a class or interface up the hierarchy.
+ .TP 2
+ o
+-In the text arguments of the @return, @param and @throws tags of a method. In this case, the tag text is copied from the corresponding tag up the hierarchy.
++In the text arguments of the @return, @param and @throws tags of a method. In this case, the tag text is copied from the corresponding tag up the hierarchy.
+ .RE
+ .LP
+-See Automatic Copying of Method Comments for a more precise description of how comments are found in the inheritance hierarchy. Note that if this tag is missing, the comment is or is not automatically inherited according to rules described in that section.
++See Automatic Copying of Method Comments for a more precise description of how comments are found in the inheritance hierarchy. Note that if this tag is missing, the comment is or is not automatically inherited according to rules described in that section.
+ .LP
+ .TP 3
+-{@link\ package.class#member\ label}
+-Inserts an in\-line link with visible text \f2label\fP that points to the documentation for the specified package, class or member name of a referenced class. This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
++{@link\ package.class#member\ label}
++Inserts an in\-line link with visible text \f2label\fP that points to the documentation for the specified package, class or member name of a referenced class. This tag is valid in all doc comments: overview, package, class, interface, constructor, method and field, including the text portion of any tag (such as @return, @param and @deprecated).
+ .LP
+-This tag is very simliar to \f2@see\fP \-\- both require the same references and accept exactly the same syntax for \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. The main difference is that \f2{@link}\fP generates an in\-line link rather than placing the link in the "See Also" section. Also, the \f2{@link}\fP tag begins and ends with curly braces to separate it from the rest of the in\-line text. If you need to use "}" inside the label, use the HTML entity notation &#125;
++This tag is very simliar to \f2@see\fP \-\- both require the same references and accept exactly the same syntax for \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. The main difference is that \f2{@link}\fP generates an in\-line link rather than placing the link in the "See Also" section. Also, the \f2{@link}\fP tag begins and ends with curly braces to separate it from the rest of the in\-line text. If you need to use "}" inside the label, use the HTML entity notation &#125;
+ .LP
+-There is no limit to the number of \f2{@link}\fP tags allowed in a sentence. You can use this tag in the main description part of any documentation comment or in the text portion of any tag (such as @deprecated, @return or @param).
++There is no limit to the number of \f2{@link}\fP tags allowed in a sentence. You can use this tag in the main description part of any documentation comment or in the text portion of any tag (such as @deprecated, @return or @param).
+ .LP
+-For example, here is a comment that refers to the \f2getComponentAt(int, int)\fP method:
++For example, here is a comment that refers to the \f2getComponentAt(int, int)\fP method:
+ .nf
+ \f3
+ .fl
+ Use the {@link #getComponentAt(int, int) getComponentAt} method.
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-From this, the standard doclet would generate the following HTML (assuming it refers to another class in the same package):
++From this, the standard doclet would generate the following HTML (assuming it refers to another class in the same package):
+ .nf
+ \f3
+ .fl
+ Use the <a href="Component.html#getComponentAt(int, int)">getComponentAt</a> method.
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-Which appears on the web page as:
++Which appears on the web page as:
+ .nf
+ \f3
+ .fl
+ Use the getComponentAt method.
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-You can extend \f2{@link}\fP to link to classes not being documented by using the \f2\-link\fP option.
++You can extend \f2{@link}\fP to link to classes not being documented by using the \f2\-link\fP option.
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing {@link} tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#{@link}.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#{@link}.
+ .LP
+ .TP 3
+-{@linkplain\ package.class#member\ label}
+-Identical to \f2{@link}\fP, except the link's label is displayed in plain text than code font. Useful when the label is plain text. Example:
++{@linkplain\ package.class#member\ label}
++Identical to \f2{@link}\fP, except the link's label is displayed in plain text than code font. Useful when the label is plain text. Example:
+ .nf
+ \f3
+ .fl
+ Refer to {@linkplain add() the overridden method}.
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-This would display as:
++This would display as:
+ .LP
+-Refer to the overridden method.
++Refer to the overridden method.
+ .LP
+ .TP 3
+-{@literal\ text}
+-Displays \f2text\fP without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
++{@literal\ text}
++Displays \f2text\fP without interpreting the text as HTML markup or nested javadoc tags. This enables you to use regular angle brackets (\f2<\fP and \f2>\fP) instead of the HTML entities (\f2<\fP and \f2>\fP) in doc comments, such as in parameter types (\f2<Object>\fP), inequalities (\f23 < 4\fP), or arrows (\f2<\-\fP). For example, the doc comment text:
+ .nf
+ \f3
+ .fl
+ \fP\f4{@literal A<B>C}\fP\f3
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-displays unchanged in the generated HTML page in your browser, as:
++displays unchanged in the generated HTML page in your browser, as:
+ .LP
+-\f2\ \ \ \ \ \fPA<B>C
++\f2\ \ \ \ \ \fPA<B>C
+ .LP
+-The noteworthy point is that the \f2<B>\fP is not interpreted as bold (and it is not in code font).
++The noteworthy point is that the \f2<B>\fP is not interpreted as bold (and it is not in code font).
+ .LP
+-If you want the same functionality but with the text in code font, use \f2{@code}\fP.
++If you want the same functionality but with the text in code font, use \f2{@code}\fP.
+ .LP
+ .TP 3
+-@param\ parameter\-name description
+-Adds a parameter with the specified \f2parameter\-name\fP followed by the specified \f2description\fP to the "Parameters" section. When writing the doc comment, you may continue the \f2description\fP onto multiple lines. This tag is valid only in a doc comment for a method, constructor or class.
++@param\ parameter\-name description
++Adds a parameter with the specified \f2parameter\-name\fP followed by the specified \f2description\fP to the "Parameters" section. When writing the doc comment, you may continue the \f2description\fP onto multiple lines. This tag is valid only in a doc comment for a method, constructor or class.
+ .LP
+-The \f2parameter\-name\fP can be the name of a parameter in a method or constructor, or the name of a type parameter of a class, method or constructor. Use angle brackets around this parameter name to specify the use of a type parameter.
++The \f2parameter\-name\fP can be the name of a parameter in a method or constructor, or the name of a type parameter of a class, method or constructor. Use angle brackets around this parameter name to specify the use of a type parameter.
+ .LP
+-Example of a type parameter of a class:
++Example of a type parameter of a class:
+ .nf
+ \f3
+ .fl
+@@ -1322,12 +1324,12 @@
+ .fl
+ }
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-Example of a type parameter of a method:
++Example of a type parameter of a method:
+ .nf
+ \f3
+ .fl
+@@ -1347,45 +1349,45 @@
+ .fl
+ }
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @param tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@param.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@param.
+ .LP
+ .TP 3
+-@return\ description
+-Adds a "Returns" section with the \f2description\fP text. This text should describe the return type and permissible range of values. This tag is valid only in a doc comment for a method.
++@return\ description
++Adds a "Returns" section with the \f2description\fP text. This text should describe the return type and permissible range of values. This tag is valid only in a doc comment for a method.
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @return tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@return.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@return.
+ .LP
+ .TP 3
+-@see\ reference
+-Adds a "See Also" heading with a link or text entry that points to \f2reference\fP. A doc comment may contain any number of \f2@see\fP tags, which are all grouped under the same heading. The \f2@see\fP tag has three variations; the third form below is the most common. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. For inserting an in\-line link within a sentence to a package, class or member, see \f2{@link}\fP.
++@see\ reference
++Adds a "See Also" heading with a link or text entry that points to \f2reference\fP. A doc comment may contain any number of \f2@see\fP tags, which are all grouped under the same heading. The \f2@see\fP tag has three variations; the third form below is the most common. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. For inserting an in\-line link within a sentence to a package, class or member, see \f2{@link}\fP.
+ .RS 3
+ .TP 3
+-@see "string"
+-Adds a text entry for \f2string\fP. No link is generated. The \f2string\fP is a book or other reference to information not available by URL. The Javadoc tool distinguishes this from the previous cases by looking for a double\-quote (\f2"\fP) as the first character. For example:
++@see "string"
++Adds a text entry for \f2string\fP. No link is generated. The \f2string\fP is a book or other reference to information not available by URL. The Javadoc tool distinguishes this from the previous cases by looking for a double\-quote (\f2"\fP) as the first character. For example:
+ .nf
+ \f3
+ .fl
+ @see "The Java Programming Language"
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-This generates text such as:
++This generates text such as:
+ .RE
+ .RE
+ .RS 3
+@@ -1393,13 +1395,13 @@
+ .RS 3
+ .RS 3
+ .TP 3
+-See Also:
+-"The Java Programming Language"
++See Also:
++"The Java Programming Language"
+ .RE
+ .RE
+ .TP 3
+-@see <a href="URL#value">label</a>
+-Adds a link as defined by \f2URL\fP#\f2value\fP. The \f2URL\fP#\f2value\fP is a relative or absolute URL. The Javadoc tool distinguishes this from other cases by looking for a less\-than symbol (\f2<\fP) as the first character. For example:
++@see <a href="URL#value">label</a>
++Adds a link as defined by \f2URL\fP#\f2value\fP. The \f2URL\fP#\f2value\fP is a relative or absolute URL. The Javadoc tool distinguishes this from other cases by looking for a less\-than symbol (\f2<\fP) as the first character. For example:
+ .nf
+ \f3
+ .fl
+@@ -1407,31 +1409,31 @@
+ .fl
+ \fP
+ .fi
+-This generates a link such as:
++This generates a link such as:
+ .RS 3
+ .TP 3
+-See Also:
+-Java Spec
++See Also:
++Java Spec
+ .RE
+ .TP 3
+-@see\ package.class#member\ label
+-Adds a link, with visible text \f2label\fP, that points to the documentation for the specified name in the Java Language that is referenced. The \f2label\fP is optional; if omitted, the name appears instead as the visible text, suitably shortened \-\- see How a name is displayed. Use \-noqualifier to globally remove the package name from this visible text. Use the label when you want the visible text to be different from the auto\-generated visible text.
++@see\ package.class#member\ label
++Adds a link, with visible text \f2label\fP, that points to the documentation for the specified name in the Java Language that is referenced. The \f2label\fP is optional; if omitted, the name appears instead as the visible text, suitably shortened \-\- see How a name is displayed. Use \-noqualifier to globally remove the package name from this visible text. Use the label when you want the visible text to be different from the auto\-generated visible text.
+ .LP
+-Only in version 1.2, just the name but not the label would automatically appear in <code> HTML tags, Starting with 1.2.2, the <code> is always included around the visible text, whether or not a label is used.
++Only in version 1.2, just the name but not the label would automatically appear in <code> HTML tags, Starting with 1.2.2, the <code> is always included around the visible text, whether or not a label is used.
+ .LP
+ .RS 3
+ .TP 2
+ o
+-\f4package.class\fP\f4#\fP\f4member\fP is any valid program element name that is referenced \-\- a package, class, interface, constructor, method or field name \-\- except that the character ahead of the member name should be a hash character (\f2#\fP). The \f2class\fP represents any top\-level or nested class or interface. The \f2member\fP represents any constructor, method or field (not a nested class or interface). If this name is in the documented classes, the Javadoc tool will automatically create a link to it. To create links to external referenced classes, use the \f2\-link\fP option. Use either of the other two \f2@see\fP forms for referring to documentation of a name that does not belong to a referenced class. This argument is described at greater length below under Specifying a Name.
++\f4package.class\fP\f4#\fP\f4member\fP is any valid program element name that is referenced \-\- a package, class, interface, constructor, method or field name \-\- except that the character ahead of the member name should be a hash character (\f2#\fP). The \f2class\fP represents any top\-level or nested class or interface. The \f2member\fP represents any constructor, method or field (not a nested class or interface). If this name is in the documented classes, the Javadoc tool will automatically create a link to it. To create links to external referenced classes, use the \f2\-link\fP option. Use either of the other two \f2@see\fP forms for referring to documentation of a name that does not belong to a referenced class. This argument is described at greater length below under Specifying a Name.
+ .TP 2
+ o
+-\f4label\fP is optional text that is visible as the link's label. The \f2label\fP can contain whitespace. If \f2label\fP is omitted, then \f2package.class.member\fP will appear, suitably shortened relative to the current class and package \-\- see How a name is displayed.
++\f4label\fP is optional text that is visible as the link's label. The \f2label\fP can contain whitespace. If \f2label\fP is omitted, then \f2package.class.member\fP will appear, suitably shortened relative to the current class and package \-\- see How a name is displayed.
+ .TP 2
+ o
+-A space is the delimiter between \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. A space inside parentheses does not indicate the start of a label, so spaces may be used between parameters in a method.
++A space is the delimiter between \f2package.class\fP\f2#\fP\f2member\fP and \f2label\fP. A space inside parentheses does not indicate the start of a label, so spaces may be used between parameters in a method.
+ .RE
+ .LP
+-\f3Example\fP \- In this example, an \f2@see\fP tag (in the \f2Character\fP class) refers to the \f2equals\fP method in the \f2String\fP class. The tag includes both arguments: the name "\f2String#equals(Object)\fP" and the label "\f2equals\fP".
++\f3Example\fP \- In this example, an \f2@see\fP tag (in the \f2Character\fP class) refers to the \f2equals\fP method in the \f2String\fP class. The tag includes both arguments: the name "\f2String#equals(Object)\fP" and the label "\f2equals\fP".
+ .nf
+ \f3
+ .fl
+@@ -1443,7 +1445,7 @@
+ .fl
+ \fP
+ .fi
+-The standard doclet produces HTML something like this:
++The standard doclet produces HTML something like this:
+ .nf
+ \f3
+ .fl
+@@ -1457,18 +1459,19 @@
+ .fl
+ \fP
+ .fi
+-Which looks something like this in a browser, where the label is the visible link text:
++Which looks something like this in a browser, where the label is the visible link text:
+ .RS 3
+ .TP 3
+-See Also:
+-equals
++See Also:
++equals
+ .RE
+ .LP
+-\f3Specifying a name\fP \- This \f2package.class\fP\f2#\fP\f2member\fP name can be either fully\-qualified, such as \f2java.lang.String#toUpperCase()\fP or not, such as \f2String#toUpperCase()\fP or \f2#toUpperCase()\fP. If less than fully\-qualified, the Javadoc tool uses the normal Java compiler search order to find it, further described below in Search order for @see. The name can contain whitespace within parentheses, such as between method arguments.
++\f3Specifying a name\fP \- This \f2package.class\fP\f2#\fP\f2member\fP name can be either fully\-qualified, such as \f2java.lang.String#toUpperCase()\fP or not, such as \f2String#toUpperCase()\fP or \f2#toUpperCase()\fP. If less than fully\-qualified, the Javadoc tool uses the normal Java compiler search order to find it, further described below in Search order for @see. The name can contain whitespace within parentheses, such as between method arguments.
+ .LP
+-Of course the advantage of providing shorter, "partially\-qualified" names is that they are shorter to type and there is less clutter in the source code. The following table shows the different forms of the name, where \f2Class\fP can be a class or interface, \f2Type\fP can be a class, interface, array, or primitive, and \f2method\fP can be a method or constructor.
++Of course the advantage of providing shorter, "partially\-qualified" names is that they are shorter to type and there is less clutter in the source code. The following table shows the different forms of the name, where \f2Class\fP can be a class or interface, \f2Type\fP can be a class, interface, array, or primitive, and \f2method\fP can be a method or constructor.
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -1629,7 +1632,7 @@
+ .ec
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u
++.ta \n(80u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'
+@@ -1645,7 +1648,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u
++.ta \n(80u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'
+@@ -1661,7 +1664,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u
++.ta \n(80u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'
+@@ -1677,7 +1680,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u
++.ta \n(80u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'
+@@ -1699,54 +1702,56 @@
+ .rm b+
+ .rm c+
+ .rm d+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-58
+ .LP
+-The following notes apply to the above table:
++The following notes apply to the above table:
+ .RS 3
+ .TP 2
+ o
+-The first set of forms (with no class or package) will cause the Javadoc tool to search only through the current class's hierarchy. It will find a member of the current class or interface, one of its superclasses or superinterfaces, or one of its enclosing classes or interfaces (search steps 1\-3). It will not search the rest of the current package or other packages (search steps 4\-5).
++The first set of forms (with no class or package) will cause the Javadoc tool to search only through the current class's hierarchy. It will find a member of the current class or interface, one of its superclasses or superinterfaces, or one of its enclosing classes or interfaces (search steps 1\-3). It will not search the rest of the current package or other packages (search steps 4\-5).
+ .TP 2
+ o
+-If any method or constructor is entered as a name with no parentheses, such as \f2getValue\fP, and if there is no field with the same name, the Javadoc tool will correctly create a link to it, but will print a warning message reminding you to add the parentheses and arguments. If this method is overloaded, the Javadoc tool will link to the first method its search encounters, which is unspecified.
++If any method or constructor is entered as a name with no parentheses, such as \f2getValue\fP, and if there is no field with the same name, the Javadoc tool will correctly create a link to it, but will print a warning message reminding you to add the parentheses and arguments. If this method is overloaded, the Javadoc tool will link to the first method its search encounters, which is unspecified.
+ .TP 2
+ o
+-Nested classes must be specified as \f2outer\fP\f2.\fP\f2inner\fP, not simply \f2inner\fP, for all forms.
++Nested classes must be specified as \f2outer\fP\f2.\fP\f2inner\fP, not simply \f2inner\fP, for all forms.
+ .TP 2
+ o
+-As stated, the hash character (\f2#\fP), rather than a dot (\f2.\fP) separates a member from its class. This enables the Javadoc tool to resolve ambiguities, since the dot also separates classes, nested classes, packages, and subpackages. However, the Javadoc tool is generally lenient and will properly parse a dot if you know there is no ambiguity, though it will print a warning.
++As stated, the hash character (\f2#\fP), rather than a dot (\f2.\fP) separates a member from its class. This enables the Javadoc tool to resolve ambiguities, since the dot also separates classes, nested classes, packages, and subpackages. However, the Javadoc tool is generally lenient and will properly parse a dot if you know there is no ambiguity, though it will print a warning.
+ .RE
+ .LP
+-\f3Search order for @see\fP \- the Javadoc tool will process a \f2@see\fP tag that appears in a source file (.java), package file (package.html or package\-info.java) or overview file (overview.html). In the latter two files, you must fully\-qualify the name you supply with \f2@see\fP. In a source file, you can specify a name that is fully\-qualified or partially\-qualified.
++\f3Search order for @see\fP \- the Javadoc tool will process a \f2@see\fP tag that appears in a source file (.java), package file (package.html or package\-info.java) or overview file (overview.html). In the latter two files, you must fully\-qualify the name you supply with \f2@see\fP. In a source file, you can specify a name that is fully\-qualified or partially\-qualified.
+ .LP
+-When the Javadoc tool encounters a \f2@see\fP tag in a \f2.java\fP file that is \f2not\fP fully qualified, it searches for the specified name in the same order as the Java compiler would (except the Javadoc tool will not detect certain namespace ambiguities, since it assumes the source code is free of these errors). This search order is formally defined in the \f2Java Language Specification\fP. The Javadoc tool searches for that name through all related and imported classes and packages. In particular, it searches in this order:
++When the Javadoc tool encounters a \f2@see\fP tag in a \f2.java\fP file that is \f2not\fP fully qualified, it searches for the specified name in the same order as the Java compiler would (except the Javadoc tool will not detect certain namespace ambiguities, since it assumes the source code is free of these errors). This search order is formally defined in the \f2Java Language Specification\fP. The Javadoc tool searches for that name through all related and imported classes and packages. In particular, it searches in this order:
+ .RS 3
+ .TP 3
+ 1.
+-the current class or interface
++the current class or interface
+ .TP 3
+ 2.
+-any enclosing classes and interfaces, searching closest first
++any enclosing classes and interfaces, searching closest first
+ .TP 3
+ 3.
+-any superclasses and superinterfaces, searching closest first
++any superclasses and superinterfaces, searching closest first
+ .TP 3
+ 4.
+-the current package
++the current package
+ .TP 3
+ 5.
+-any imported packages, classes and interfaces, searching in the order of the import statement
++any imported packages, classes and interfaces, searching in the order of the import statement
+ .RE
+ .LP
+-The Javadoc tool continues to search recursively through steps 1\-3 for each class it encounters until it finds a match. That is, after it searches through the current class and its enclosing class E, it will search through E's superclasses before E's enclosing classes. In steps 4 and 5, the Javadoc tool does not search classes or interfaces within a package in any specified order (that order depends on the particular compiler). In step 5, the Javadoc tool looks in java.lang, since that is automatically imported by all programs.
++The Javadoc tool continues to search recursively through steps 1\-3 for each class it encounters until it finds a match. That is, after it searches through the current class and its enclosing class E, it will search through E's superclasses before E's enclosing classes. In steps 4 and 5, the Javadoc tool does not search classes or interfaces within a package in any specified order (that order depends on the particular compiler). In step 5, the Javadoc tool looks in java.lang, since that is automatically imported by all programs.
+ .LP
+-The Javadoc tool does not necessarily look in subclasses, nor will it look in other packages even if their documentation is being generated in the same run. For example, if the \f2@see\fP tag is in the \f2java.awt.event.KeyEvent\fP class and refers to a name in the \f2java.awt\fP package, javadoc does not look in that package unless that class imports it.
++The Javadoc tool does not necessarily look in subclasses, nor will it look in other packages even if their documentation is being generated in the same run. For example, if the \f2@see\fP tag is in the \f2java.awt.event.KeyEvent\fP class and refers to a name in the \f2java.awt\fP package, javadoc does not look in that package unless that class imports it.
+ .LP
+-\f3How a name is displayed\fP \- If \f2label\fP is omitted, then \f2package.class.member\fP appears. In general, it is suitably shortened relative to the current class and package. By "shortened", we mean the Javadoc tool displays only the minimum name necessary. For example, if the \f2String.toUpperCase()\fP method contains references to a member of the same class and to a member of a different class, the class name is displayed only in the latter case, as shown in the following table.
++\f3How a name is displayed\fP \- If \f2label\fP is omitted, then \f2package.class.member\fP appears. In general, it is suitably shortened relative to the current class and package. By "shortened", we mean the Javadoc tool displays only the minimum name necessary. For example, if the \f2String.toUpperCase()\fP method contains references to a member of the same class and to a member of a different class, the class name is displayed only in the latter case, as shown in the following table.
+ .LP
+ Use \-noqualifier to globally remove the package names.
+ .br
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -1973,7 +1978,7 @@
+ .ec
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u
++.ta \n(80u \n(81u \n(82u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Type of Reference\fP\h'|\n(41u'\h'|\n(42u'\f3Displays As\fP
+@@ -1991,7 +1996,7 @@
+ .ne \n(c|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u
++.ta \n(80u \n(81u \n(82u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'\f2@see String#toLowerCase()\fP\h'|\n(42u'
+@@ -2018,7 +2023,7 @@
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u
++.ta \n(80u \n(81u \n(82u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
+@@ -2052,7 +2057,7 @@
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u
++.ta \n(80u \n(81u \n(82u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
+@@ -2093,125 +2098,126 @@
+ .rm g+
+ .rm h+
+ .rm i+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-28
+ .LP
+ \f3Examples of @see\fP
+ .br
+-The comment to the right shows how the name would be displayed if the \f2@see\fP tag is in a class in another package, such as \f2java.applet.Applet\fP.
++The comment to the right shows how the name would be displayed if the \f2@see\fP tag is in a class in another package, such as \f2java.applet.Applet\fP.
+ .nf
+ \f3
+ .fl
+- See also:
++ See also:
+ .fl
+-@see java.lang.String // String \fP\f3
++@see java.lang.String // String \fP\f3
+ .fl
+-@see java.lang.String The String class // The String class \fP\f3
++@see java.lang.String The String class // The String class \fP\f3
+ .fl
+-@see String // String \fP\f3
++@see String // String \fP\f3
+ .fl
+-@see String#equals(Object) // String.equals(Object) \fP\f3
++@see String#equals(Object) // String.equals(Object) \fP\f3
+ .fl
+-@see String#equals // String.equals(java.lang.Object) \fP\f3
++@see String#equals // String.equals(java.lang.Object) \fP\f3
+ .fl
+-@see java.lang.Object#wait(long) // java.lang.Object.wait(long) \fP\f3
++@see java.lang.Object#wait(long) // java.lang.Object.wait(long) \fP\f3
+ .fl
+-@see Character#MAX_RADIX // Character.MAX_RADIX \fP\f3
++@see Character#MAX_RADIX // Character.MAX_RADIX \fP\f3
+ .fl
+-@see <a href="spec.html">Java Spec</a> // Java Spec \fP\f3
++@see <a href="spec.html">Java Spec</a> // Java Spec \fP\f3
+ .fl
+-@see "The Java Programming Language" // "The Java Programming Language" \fP\f3
++@see "The Java Programming Language" // "The Java Programming Language" \fP\f3
+ .fl
+ \fP
+ .fi
+-You can extend \f2@see\fP to link to classes not being documented by using the \f2\-link\fP option.
++You can extend \f2@see\fP to link to classes not being documented by using the \f2\-link\fP option.
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @see tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@see.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@see.
+ .RE
+ .RE
+ .LP
+ .RS 3
+ .TP 3
+-@serial\ field\-description | include | exclude
+-Used in the doc comment for a default serializable field.
++@serial\ field\-description | include | exclude
++Used in the doc comment for a default serializable field.
+ .LP
+-An optional \f2field\-description\fP should explain the meaning of the field and list the acceptable values. If needed, the description can span multiple lines. The standard doclet adds this information to the serialized form page.
++An optional \f2field\-description\fP should explain the meaning of the field and list the acceptable values. If needed, the description can span multiple lines. The standard doclet adds this information to the serialized form page.
+ .LP
+-If a serializable field was added to a class some time after the class was made serializable, a statement should be added to its main description to identify at which version it was added.
++If a serializable field was added to a class some time after the class was made serializable, a statement should be added to its main description to identify at which version it was added.
+ .LP
+-The \f2include\fP and \f2exclude\fP arguments identify whether a class or package should be included or excluded from the serialized form page. They work as follows:
++The \f2include\fP and \f2exclude\fP arguments identify whether a class or package should be included or excluded from the serialized form page. They work as follows:
+ .RS 3
+ .TP 2
+ o
+-A public or protected class that implements \f2Serializable\fP is \f2included\fP unless that class (or its package) is marked \f2@serial exclude\fP.
++A public or protected class that implements \f2Serializable\fP is \f2included\fP unless that class (or its package) is marked \f2@serial exclude\fP.
+ .TP 2
+ o
+-A private or package\-private class that implements \f2Serializable\fP is \f2excluded\fP unless that class (or its package) is marked \f2@serial include\fP.
++A private or package\-private class that implements \f2Serializable\fP is \f2excluded\fP unless that class (or its package) is marked \f2@serial include\fP.
+ .RE
+ .LP
+-Examples: The \f2javax.swing\fP package is marked \f2@serial exclude\fP (in \f2package.html\fP or \f2package\-info.java\fP). The public class \f2java.security.BasicPermission\fP is marked \f2@serial exclude\fP. The package\-private class \f2java.util.PropertyPermissionCollection\fP is marked \f2@serial include\fP.
++Examples: The \f2javax.swing\fP package is marked \f2@serial exclude\fP (in \f2package.html\fP or \f2package\-info.java\fP). The public class \f2java.security.BasicPermission\fP is marked \f2@serial exclude\fP. The package\-private class \f2java.util.PropertyPermissionCollection\fP is marked \f2@serial include\fP.
+ .LP
+-The tag @serial at a class level overrides @serial at a package level.
++The tag @serial at a class level overrides @serial at a package level.
+ .LP
+ For more information about how to use these tags, along with an example, see "
+ .na
+ \f2Documenting Serializable Fields and Data for a Class\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/platform/serialization/spec/serial\-arch.html," Section 1.6 of the \f2Java Object Serialization Specification\fP. Also see the
++http://docs.oracle.com/javase/7/docs/platform/serialization/spec/serial\-arch.html," Section 1.6 of the \f2Java Object Serialization Specification\fP. Also see the
+ .na
+ \f2Serialization FAQ\fP @
+ .fi
+-http://java.sun.com/javase/technologies/core/basic/serializationFAQ.jsp#javadoc_warn_missing, which covers common questions, such as "Why do I see javadoc warnings stating that I am missing @serial tags for private fields if I am not running javadoc with the \-private switch?". Also see
++http://java.sun.com/javase/technologies/core/basic/serializationFAQ.jsp#javadoc_warn_missing, which covers common questions, such as "Why do I see javadoc warnings stating that I am missing @serial tags for private fields if I am not running javadoc with the \-private switch?". Also see
+ .na
+ \f2Sun's criteria\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/writingapispecs/serialized\-criteria.html for including classes in the serialized form specification.
++http://java.sun.com/j2se/javadoc/writingapispecs/serialized\-criteria.html for including classes in the serialized form specification.
+ .LP
+ .TP 3
+-@serialField\ field\-name\ field\-type\ field\-description
+-Documents an \f2ObjectStreamField\fP component of a \f2Serializable\fP class's \f2serialPersistentFields\fP member. One \f2@serialField\fP tag should be used for each \f2ObjectStreamField\fP component.
++@serialField\ field\-name\ field\-type\ field\-description
++Documents an \f2ObjectStreamField\fP component of a \f2Serializable\fP class's \f2serialPersistentFields\fP member. One \f2@serialField\fP tag should be used for each \f2ObjectStreamField\fP component.
+ .LP
+ .TP 3
+-@serialData\ data\-description
+-The \f2data\-description\fP documents the types and order of data in the serialized form. Specifically, this data includes the optional data written by the \f2writeObject\fP method and all data (including base classes) written by the \f2Externalizable.writeExternal\fP method.
++@serialData\ data\-description
++The \f2data\-description\fP documents the types and order of data in the serialized form. Specifically, this data includes the optional data written by the \f2writeObject\fP method and all data (including base classes) written by the \f2Externalizable.writeExternal\fP method.
+ .LP
+-The \f2@serialData\fP tag can be used in the doc comment for the \f2writeObject\fP, \f2readObject\fP, \f2writeExternal\fP, \f2readExternal\fP, \f2writeReplace\fP, and \f2readResolve\fP methods.
++The \f2@serialData\fP tag can be used in the doc comment for the \f2writeObject\fP, \f2readObject\fP, \f2writeExternal\fP, \f2readExternal\fP, \f2writeReplace\fP, and \f2readResolve\fP methods.
+ .LP
+ .TP 3
+-@since\ since\-text
+-Adds a "Since" heading with the specified \f2since\-text\fP to the generated documentation. The text has no special internal structure. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. This tag means that this change or feature has existed since the software release specified by the \f2since\-text\fP. For example:
++@since\ since\-text
++Adds a "Since" heading with the specified \f2since\-text\fP to the generated documentation. The text has no special internal structure. This tag is valid in any doc comment: overview, package, class, interface, constructor, method or field. This tag means that this change or feature has existed since the software release specified by the \f2since\-text\fP. For example:
+ .nf
+ \f3
+ .fl
+ @since 1.5
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-For source code in the Java platform, this tag indicates the version of the Java platform API specification (not necessarily when it was added to the reference implementation). Multiple @since tags are allowed and are treated like multiple @author tags. You could use multiple tags if the prgram element is used by more than one API.
++For source code in the Java platform, this tag indicates the version of the Java platform API specification (not necessarily when it was added to the reference implementation). Multiple @since tags are allowed and are treated like multiple @author tags. You could use multiple tags if the prgram element is used by more than one API.
+ .LP
+ .TP 3
+-@throws\ class\-name\ description
+-The \f2@throws\fP and \f2@exception\fP tags are synonyms. Adds a "Throws" subheading to the generated documentation, with the \f2class\-name\fP and \f2description\fP text. The \f2class\-name\fP is the name of the exception that may be thrown by the method. This tag is valid only in the doc comment for a method or constructor. If this class is not fully\-specified, the Javadoc tool uses the search order to look up this class. Multiple \f2@throws\fP tags can be used in a given doc comment for the same or different exceptions.
++@throws\ class\-name\ description
++The \f2@throws\fP and \f2@exception\fP tags are synonyms. Adds a "Throws" subheading to the generated documentation, with the \f2class\-name\fP and \f2description\fP text. The \f2class\-name\fP is the name of the exception that may be thrown by the method. This tag is valid only in the doc comment for a method or constructor. If this class is not fully\-specified, the Javadoc tool uses the search order to look up this class. Multiple \f2@throws\fP tags can be used in a given doc comment for the same or different exceptions.
+ .LP
+-To ensure that all checked exceptions are documented, if a \f2@throws\fP tag does not exist for an exception in the throws clause, the Javadoc tool automatically adds that exception to the HTML output (with no description) as if it were documented with @throws tag.
++To ensure that all checked exceptions are documented, if a \f2@throws\fP tag does not exist for an exception in the throws clause, the Javadoc tool automatically adds that exception to the HTML output (with no description) as if it were documented with @throws tag.
+ .LP
+-The \f2@throws\fP documentation is copied from an overridden method to a subclass only when the exception is explicitly declared in the overridden method. The same is true for copying from an interface method to an implementing method. You can use {@inheritDoc} to force @throws to inherit documentation.
++The \f2@throws\fP documentation is copied from an overridden method to a subclass only when the exception is explicitly declared in the overridden method. The same is true for copying from an interface method to an implementing method. You can use {@inheritDoc} to force @throws to inherit documentation.
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @throws tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@exception.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@exception.
+ .LP
+ .TP 3
+-{@value\ package.class#field}
+-When \f2{@value}\fP is used (without any argument) in the doc comment of a static field, it displays the value of that constant:
++{@value\ package.class#field}
++When \f2{@value}\fP is used (without any argument) in the doc comment of a static field, it displays the value of that constant:
+ .nf
+ \f3
+ .fl
+@@ -2223,12 +2229,12 @@
+ .fl
+ public static final String SCRIPT_START = "<script>"
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-When used with argument \f2package.class#field\fP in any doc comment, it displays the value of the specified constant:
++When used with argument \f2package.class#field\fP in any doc comment, it displays the value of the specified constant:
+ .nf
+ \f3
+ .fl
+@@ -2242,36 +2248,36 @@
+ .fl
+ }
+ .fl
+-
++
+ .fl
+ \fP
+ .fi
+ .LP
+-The argument \f2package.class#field\fP takes a form identical to that of the @see argument, except that the member must be a static field.
++The argument \f2package.class#field\fP takes a form identical to that of the @see argument, except that the member must be a static field.
+ .LP
+-These values of these constants are also displayed on the
++These values of these constants are also displayed on the
+ .na
+ \f2Constant Field Values\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/constant\-values.html page.
++http://docs.oracle.com/javase/7/docs/api/constant\-values.html page.
+ .LP
+ .TP 3
+-@version\ version\-text
+-Adds a "Version" subheading with the specified \f2version\-text\fP to the generated docs when the \-version option is used. This tag is intended to hold the current version number of the software that this code is part of (as opposed to @since, which holds the version number where this code was introduced). The \f2version\-text\fP has no special internal structure. To see where the version tag can be used, see Where Tags Can Be Used.
++@version\ version\-text
++Adds a "Version" subheading with the specified \f2version\-text\fP to the generated docs when the \-version option is used. This tag is intended to hold the current version number of the software that this code is part of (as opposed to @since, which holds the version number where this code was introduced). The \f2version\-text\fP has no special internal structure. To see where the version tag can be used, see Where Tags Can Be Used.
+ .LP
+-A doc comment may contain multiple \f2@version\fP tags. If it makes sense, you can specify one version number per \f2@version\fP tag or multiple version numbers per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
++A doc comment may contain multiple \f2@version\fP tags. If it makes sense, you can specify one version number per \f2@version\fP tag or multiple version numbers per tag. In the former case, the Javadoc tool inserts a comma (\f2,\fP) and space between names. In the latter case, the entire text is simply copied to the generated document without being parsed. Therefore, you can use multiple names per line if you want a localized name separator other than comma.
+ .LP
+-For more details, see
++For more details, see
+ .na
+ \f2writing @version tags\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@version.
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#@version.
+ .RE
+-.SS
++.SS
+ Where Tags Can Be Used
+ .LP
+ The following sections describe where the tags can be used. Note that these tags can be used in all doc comments: \f2@see\fP, \f2@since\fP, \f2@deprecated\fP, \f2{@link}\fP, \f2{@linkplain}\fP, and \f2{@docroot}\fP.
+-.SS
++.SS
+ Overview Documentation Tags
+ .LP
+ Overview tags are tags that can appear in the documentation comment for the overview page (which resides in the source file typically named \f2overview.html\fP). Like in any other documentation comments, these tags must appear after the main description.
+@@ -2282,27 +2288,27 @@
+ .RS 3
+ .TP 2
+ o
+-\f2@see\fP
++\f2@see\fP
+ .TP 2
+ o
+-\f2@since\fP
++\f2@since\fP
+ .TP 2
+ o
+-\f2@author\fP
++\f2@author\fP
+ .TP 2
+ o
+-\f2@version\fP
++\f2@version\fP
+ .TP 2
+ o
+-\f2{@link}\fP
++\f2{@link}\fP
+ .TP 2
+ o
+-\f2{@linkplain}\fP
++\f2{@linkplain}\fP
+ .TP 2
+ o
+-\f2{@docRoot}\fP
++\f2{@docRoot}\fP
+ .RE
+-.SS
++.SS
+ Package Documentation Tags
+ .LP
+ Package tags are tags that can appear in the documentation comment for a package (which resides in the source file named \f2package.html\fP or \f2package\-info.java\fP). The \f2@serial\fP tag can only be used here with the \f2include\fP or \f2exclude\fP argument.
+@@ -2311,30 +2317,30 @@
+ .RS 3
+ .TP 2
+ o
+-\f2@see\fP
++\f2@see\fP
+ .TP 2
+ o
+-\f2@since\fP
++\f2@since\fP
+ .TP 2
+ o
+-\f2@serial\fP
++\f2@serial\fP
+ .TP 2
+ o
+-\f2@author\fP
++\f2@author\fP
+ .TP 2
+ o
+-\f2@version\fP
++\f2@version\fP
+ .TP 2
+ o
+-\f2{@link}\fP
++\f2{@link}\fP
+ .TP 2
+ o
+-\f2{@linkplain}\fP
++\f2{@linkplain}\fP
+ .TP 2
+ o
+-\f2{@docRoot}\fP
++\f2{@docRoot}\fP
+ .RE
+-.SS
++.SS
+ Class and Interface Documentation Tags
+ .LP
+ The following are tags that can appear in the documentation comment for a class or interface. The \f2@serial\fP tag can only be used here with the \f2include\fP or \f2exclude\fP argument.
+@@ -2343,31 +2349,31 @@
+ .RS 3
+ .TP 2
+ o
+-\f2@see\fP
++\f2@see\fP
+ .TP 2
+ o
+-\f2@since\fP
++\f2@since\fP
+ .TP 2
+ o
+-\f2@deprecated\fP
++\f2@deprecated\fP
+ .TP 2
+ o
+-\f2@serial\fP
++\f2@serial\fP
+ .TP 2
+ o
+-\f2@author\fP
++\f2@author\fP
+ .TP 2
+ o
+-\f2@version\fP
++\f2@version\fP
+ .TP 2
+ o
+-\f2{@link}\fP
++\f2{@link}\fP
+ .TP 2
+ o
+-\f2{@linkplain}\fP
++\f2{@linkplain}\fP
+ .TP 2
+ o
+-\f2{@docRoot}\fP
++\f2{@docRoot}\fP
+ .RE
+ \f3An example of a class comment:\fP
+ .nf
+@@ -2407,7 +2413,7 @@
+ .fl
+ \fP
+ .fi
+-.SS
++.SS
+ Field Documentation Tags
+ .LP
+ The following are the tags that can appear in
+@@ -2416,31 +2422,31 @@
+ .RS 3
+ .TP 2
+ o
+-\f2@see\fP
++\f2@see\fP
+ .TP 2
+ o
+-\f2@since\fP
++\f2@since\fP
+ .TP 2
+ o
+-\f2@deprecated\fP
++\f2@deprecated\fP
+ .TP 2
+ o
+-\f2@serial\fP
++\f2@serial\fP
+ .TP 2
+ o
+-\f2@serialField\fP
++\f2@serialField\fP
+ .TP 2
+ o
+-\f2{@link}\fP
++\f2{@link}\fP
+ .TP 2
+ o
+-\f2{@linkplain}\fP
++\f2{@linkplain}\fP
+ .TP 2
+ o
+-\f2{@docRoot}\fP
++\f2{@docRoot}\fP
+ .TP 2
+ o
+-\f2{@value}\fP
++\f2{@value}\fP
+ .RE
+ \f3An example of a field comment:\fP
+ .nf
+@@ -2460,7 +2466,7 @@
+ .fl
+ \fP
+ .fi
+-.SS
++.SS
+ Constructor and Method Documentation Tags
+ .LP
+ The following are the tags that can appear in the documentation comment for a constructor or method, except for \f2@return\fP, which cannot appear in a constructor, and \f2{@inheritDoc}\fP, which has certain restrictions. The \f2@serialData\fP tag can only be used in the doc comment for certain serialization methods.
+@@ -2469,37 +2475,37 @@
+ .RS 3
+ .TP 2
+ o
+-\f2@see\fP
++\f2@see\fP
+ .TP 2
+ o
+-\f2@since\fP
++\f2@since\fP
+ .TP 2
+ o
+-\f2@deprecated\fP
++\f2@deprecated\fP
+ .TP 2
+ o
+-\f2@param\fP
++\f2@param\fP
+ .TP 2
+ o
+-\f2@return\fP
++\f2@return\fP
+ .TP 2
+ o
+-\f2@throws\fP and \f2@exception\fP
++\f2@throws\fP and \f2@exception\fP
+ .TP 2
+ o
+-\f2@serialData\fP
++\f2@serialData\fP
+ .TP 2
+ o
+-\f2{@link}\fP
++\f2{@link}\fP
+ .TP 2
+ o
+-\f2{@linkplain}\fP
++\f2{@linkplain}\fP
+ .TP 2
+ o
+-\f2{@inheritDoc}\fP
++\f2{@inheritDoc}\fP
+ .TP 2
+ o
+-\f2{@docRoot}\fP
++\f2{@docRoot}\fP
+ .RE
+ \f3An example of a method doc comment:\fP
+ .nf
+@@ -2507,7 +2513,7 @@
+ .fl
+ /**
+ .fl
+- * Returns the character at the specified index. An index
++ * Returns the character at the specified index. An index
+ .fl
+ * ranges from <code>0</code> to <code>length() \- 1</code>.
+ .fl
+@@ -2517,9 +2523,9 @@
+ .fl
+ * @return the desired character.
+ .fl
+- * @exception StringIndexOutOfRangeException
++ * @exception StringIndexOutOfRangeException
+ .fl
+- * if the index is not in the range <code>0</code>
++ * if the index is not in the range <code>0</code>
+ .fl
+ * to <code>length()\-1</code>.
+ .fl
+@@ -2541,6 +2547,7 @@
+ .LP
+ The options are:
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -2774,7 +2781,7 @@
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u \n(82u
++.ta \n(80u \n(81u \n(82u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'\h'|\n(42u'
+@@ -2809,14 +2816,15 @@
+ .rm a+
+ .rm b+
+ .rm c+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-127
+ .LP
+ Options shown in \f2italic\fP are the Javadoc core options, which are provided by the front end of the Javadoc tool and are available to all doclets. The standard doclet itself provides the non\-italic options.
+-.SS
++.SS
+ Javadoc Options
+ .RS 3
+ .TP 3
+-\-overview \ path/filename
++\-overview \ path/filename
+ Specifies that javadoc should retrieve the text for the overview documentation from the "source" file specified by \f2path/filename\fP and place it on the Overview page (\f2overview\-summary.html\fP). The \f2path/filename\fP is relative to the current directory.
+ .br
+ .br
+@@ -2829,28 +2837,28 @@
+ Note that the overview page is created only if you pass into javadoc two or more package names. For further explanation, see HTML Frames.)
+ .br
+ .br
+-The title on the overview page is set by \f2\-doctitle\fP.
++The title on the overview page is set by \f2\-doctitle\fP.
+ .TP 3
+-\-public
+-Shows only public classes and members.
++\-public
++Shows only public classes and members.
+ .TP 3
+-\-protected
+-Shows only protected and public classes and members. This is the default.
++\-protected
++Shows only protected and public classes and members. This is the default.
+ .TP 3
+-\-package
+-Shows only package, protected, and public classes and members.
++\-package
++Shows only package, protected, and public classes and members.
+ .TP 3
+-\-private
+-Shows all classes and members.
++\-private
++Shows all classes and members.
+ .TP 3
+-\-help
+-Displays the online help, which lists these javadoc and doclet command line options.
++\-help
++Displays the online help, which lists these javadoc and doclet command line options.
+ .TP 3
+-\-doclet\ class
++\-doclet\ class
+ Specifies the class file that starts the doclet used in generating the documentation. Use the fully\-qualified name. This doclet defines the content and formats the output. If the \f4\-doclet\fP option is not used, javadoc uses the standard doclet for generating the default HTML format. This class must contain the \f2start(Root)\fP method. The path to this starting class is defined by the \f2\-docletpath\fP option.
+ .br
+ .br
+-For example, to call the MIF doclet, use:
++For example, to call the MIF doclet, use:
+ .nf
+ \f3
+ .fl
+@@ -2858,17 +2866,17 @@
+ .fl
+ \fP
+ .fi
+-For full, working examples of running a particular doclet, see the
++For full, working examples of running a particular doclet, see the
+ .na
+ \f2MIF Doclet documentation\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html.
++http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html.
+ .TP 3
+-\-docletpath\ classpathlist
++\-docletpath\ classpathlist
+ Specifies the path to the doclet starting class file (specified with the \f2\-doclet\fP option) and any jar files it depends on. If the starting class file is in a jar file, then this specifies the path to that jar file, as shown in the example below. You can specify an absolute path or a path relative to the current directory. If \f2classpathlist\fP contains multiple paths or jar files, they should be separated with a colon (:) on Solaris and a semi\-colon (;) on Windows. This option is not necessary if the doclet starting class is already in the search path.
+ .br
+ .br
+-Example of path to jar file that contains the starting doclet class file. Notice the jar filename is included.
++Example of path to jar file that contains the starting doclet class file. Notice the jar filename is included.
+ .nf
+ \f3
+ .fl
+@@ -2876,7 +2884,7 @@
+ .fl
+ \fP
+ .fi
+-Example of path to starting doclet class file. Notice the class filename is omitted.
++Example of path to starting doclet class file. Notice the class filename is omitted.
+ .nf
+ \f3
+ .fl
+@@ -2884,38 +2892,38 @@
+ .fl
+ \fP
+ .fi
+-For full, working examples of running a particular doclet, see the
++For full, working examples of running a particular doclet, see the
+ .na
+ \f2MIF Doclet documentation\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html.
++http://java.sun.com/j2se/javadoc/mifdoclet/docs/mifdoclet.html.
+ .TP 3
+-\-1.1
+-\f2This feature has been removed from Javadoc 1.4. There is no replacement for it. This option created documentation with the appearance and functionality of documentation generated by Javadoc 1.1 (it never supported nested classes). If you need this option, use Javadoc 1.2 or 1.3 instead.\fP
++\-1.1
++\f2This feature has been removed from Javadoc 1.4. There is no replacement for it. This option created documentation with the appearance and functionality of documentation generated by Javadoc 1.1 (it never supported nested classes). If you need this option, use Javadoc 1.2 or 1.3 instead.\fP
+ .TP 3
+-\-source release
+-Specifies the version of source code accepted. The following values for \f2release\fP are allowed:
++\-source release
++Specifies the version of source code accepted. The following values for \f2release\fP are allowed:
+ .RS 3
+ .TP 2
+ o
+-\f31.5\fP \- javadoc accepts code containing generics and other language features introduced in JDK 1.5. The compiler defaults to the 1.5 behavior if the \f3\-source\fP flag is not used.
++\f31.5\fP \- javadoc accepts code containing generics and other language features introduced in JDK 1.5. The compiler defaults to the 1.5 behavior if the \f3\-source\fP flag is not used.
+ .TP 2
+ o
+-\f31.4\fP \- javadoc accepts code containing assertions, which were introduced in JDK 1.4.
++\f31.4\fP \- javadoc accepts code containing assertions, which were introduced in JDK 1.4.
+ .TP 2
+ o
+-\f31.3\fP \- javadoc does \f2not\fP support assertions, generics, or other language features introduced after JDK 1.3.
++\f31.3\fP \- javadoc does \f2not\fP support assertions, generics, or other language features introduced after JDK 1.3.
+ .RE
+-Use the value of \f2release\fP corresponding to that used when compiling the code with javac.
++Use the value of \f2release\fP corresponding to that used when compiling the code with javac.
+ .TP 3
+-\-sourcepath\ sourcepathlist
++\-sourcepath\ sourcepathlist
+ Specifies the search paths for finding source files (\f2.java\fP) when passing package names or \f2\-subpackages\fP into the \f2javadoc\fP command. The \f2sourcepathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths. Note that this option is not only used to locate the source files being documented, but also to find source files that are not being documented but whose comments are inherited by the source files being documented.
+ .br
+ .br
+ Note that you can use the \f2\-sourcepath\fP option only when passing package names into the javadoc command \-\- it will not locate \f2.java\fP files passed into the \f2javadoc\fP command. (To locate \f2.java\fP files, cd to that directory or include the path ahead of each file, as shown at Documenting One or More Classes.) If \f2\-sourcepath\fP is omitted, javadoc uses the class path to find the source files (see \-classpath). Therefore, the default \-sourcepath is the value of class path. If \-classpath is omitted and you are passing package names into javadoc, it looks in the current directory (and subdirectories) for the source files.
+ .br
+ .br
+-Set \f2sourcepathlist\fP to the root directory of the source tree for the package you are documenting. For example, suppose you want to document a package called \f2com.mypackage\fP whose source files are located at:
++Set \f2sourcepathlist\fP to the root directory of the source tree for the package you are documenting. For example, suppose you want to document a package called \f2com.mypackage\fP whose source files are located at:
+ .nf
+ \f3
+ .fl
+@@ -2923,7 +2931,7 @@
+ .fl
+ \fP
+ .fi
+-In this case you would specify the \f2sourcepath\fP to \f2/home/user/src\fP, the directory that contains \f2com/mypackage\fP, and then supply the package name \f2com.mypackage\fP:
++In this case you would specify the \f2sourcepath\fP to \f2/home/user/src\fP, the directory that contains \f2com/mypackage\fP, and then supply the package name \f2com.mypackage\fP:
+ .nf
+ \f3
+ .fl
+@@ -2933,7 +2941,7 @@
+ This is easy to remember by noticing that if you concatenate the value of sourcepath and the package name together and change the dot to a slash "/", you end up with the full path to the package: \f2/home/user/src/com/mypackage\fP.
+ .br
+ .br
+-To point to two source paths:
++To point to two source paths:
+ .nf
+ \f3
+ .fl
+@@ -2941,18 +2949,18 @@
+ .fl
+ .fi
+ .TP 3
+-\-classpath\ classpathlist
+-Specifies the paths where javadoc will look for referenced classes (\f2.class\fP files) \-\- these are the documented classes plus any classes referenced by those classes. The \f2classpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths. Follow the instructions in
++\-classpath\ classpathlist
++Specifies the paths where javadoc will look for referenced classes (\f2.class\fP files) \-\- these are the documented classes plus any classes referenced by those classes. The \f2classpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths. Follow the instructions in
+ .na
+ \f2class path\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#general documentation for specifying \f2classpathlist\fP.
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general documentation for specifying \f2classpathlist\fP.
+ .br
+ .br
+ If \f2\-sourcepath\fP is omitted, the Javadoc tool uses \f2\-classpath\fP to find the source files as well as class files (for backward compatibility). Therefore, if you want to search for source and class files in separate paths, use both \f2\-sourcepath\fP and \f2\-classpath\fP.
+ .br
+ .br
+-For example, if you want to document \f2com.mypackage\fP, whose source files reside in the directory \f2/home/user/src/com/mypackage\fP, and if this package relies on a library in \f2/home/user/lib\fP, you would specify:
++For example, if you want to document \f2com.mypackage\fP, whose source files reside in the directory \f2/home/user/src/com/mypackage\fP, and if this package relies on a library in \f2/home/user/lib\fP, you would specify:
+ .nf
+ \f3
+ .fl
+@@ -2962,23 +2970,23 @@
+ As with other tools, if you do not specify \f2\-classpath\fP, the Javadoc tool uses the CLASSPATH environment variable, if it is set. If both are not set, the Javadoc tool searches for classes from the current directory.
+ .br
+ .br
+-For an in\-depth description of how the Javadoc tool uses \f2\-classpath\fP to find user classes as it relates to extension classes and bootstrap classes, see
++For an in\-depth description of how the Javadoc tool uses \f2\-classpath\fP to find user classes as it relates to extension classes and bootstrap classes, see
+ .na
+ \f2How Classes Are Found\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/findingclasses.html.
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html.
+ .br
+ .br
+ As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a Java program cannot tell the difference between the two invocations).
+ .br
+ .br
+-For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
++For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
+ .TP 3
+-\-subpackages\ \ package1:package2:...
++\-subpackages\ \ package1:package2:...
+ Generates documentation from source files in the specified packages and recursively in their subpackages. This option is useful when adding new subpackages to the source code, as they are automatically included. Each \f2package\fP argument is any top\-level subpackage (such as \f2java\fP) or fully qualified package (such as \f2javax.swing\fP) that does not need to contain source files. Arguments are separated by colons (on all operating systmes). Wildcards are not needed or allowed. Use \f2\-sourcepath\fP to specify where to find the packages. This option is smart about not processing source files that are in the source tree but do not belong to the packages, as described at processing of source files.
+ .br
+ .br
+-For example:
++For example:
+ .nf
+ \f3
+ .fl
+@@ -2988,77 +2996,77 @@
+ This command generates documentation for packages named "java" and "javax.swing" and all their subpackages.
+ .br
+ .br
+-You can use \f2\-subpackages\fP in conjunction with \f2\-exclude\fP to exclude specific packages.
++You can use \f2\-subpackages\fP in conjunction with \f2\-exclude\fP to exclude specific packages.
+ .TP 3
+-\-exclude\ \ packagename1:packagename2:...
+-Unconditionally excludes the specified packages and their subpackages from the list formed by \f2\-subpackages\fP. It excludes those packages even if they would otherwise be included by some previous or later \f2\-subpackages\fP option. For example:
++\-exclude\ \ packagename1:packagename2:...
++Unconditionally excludes the specified packages and their subpackages from the list formed by \f2\-subpackages\fP. It excludes those packages even if they would otherwise be included by some previous or later \f2\-subpackages\fP option. For example:
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-sourcepath /home/user/src \-subpackages java \-exclude java.net:java.lang\fP
+ .fl
+ .fi
+-would include \f2java.io\fP, \f2java.util\fP, and \f2java.math\fP (among others), but would exclude packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
++would include \f2java.io\fP, \f2java.util\fP, and \f2java.math\fP (among others), but would exclude packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
+ .TP 3
+-\-bootclasspath\ classpathlist
+-Specifies the paths where the boot classes reside. These are nominally the Java platform classes. The bootclasspath is part of the search path the Javadoc tool will use to look up source and class files. See
++\-bootclasspath\ classpathlist
++Specifies the paths where the boot classes reside. These are nominally the Java platform classes. The bootclasspath is part of the search path the Javadoc tool will use to look up source and class files. See
+ .na
+ \f2How Classes Are Found\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles. for more details. Separate directories in \f2classpathlist\fP with colons (:).
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles. for more details. Separate directories in \f2classpathlist\fP with colons (:).
+ .TP 3
+-\-extdirs\ dirlist
+-Specifies the directories where extension classes reside. These are any classes that use the Java Extension mechanism. The extdirs is part of the search path the Javadoc tool will use to look up source and class files. See \f2\-classpath\fP (above) for more details. Separate directories in \f2dirlist\fP with colons (:).
++\-extdirs\ dirlist
++Specifies the directories where extension classes reside. These are any classes that use the Java Extension mechanism. The extdirs is part of the search path the Javadoc tool will use to look up source and class files. See \f2\-classpath\fP (above) for more details. Separate directories in \f2dirlist\fP with colons (:).
+ .TP 3
+-\-verbose
+-Provides more detailed messages while javadoc is running. Without the verbose option, messages appear for loading the source files, generating the documentation (one message per source file), and sorting. The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
++\-verbose
++Provides more detailed messages while javadoc is running. Without the verbose option, messages appear for loading the source files, generating the documentation (one message per source file), and sorting. The verbose option causes the printing of additional messages specifying the number of milliseconds to parse each java source file.
+ .TP 3
+-\-quiet
+-Shuts off non\-error and non\-warning messages, leaving only the warnings and errors appear, making them easier to view. Also suppresses the version string.
++\-quiet
++Shuts off non\-error and non\-warning messages, leaving only the warnings and errors appear, making them easier to view. Also suppresses the version string.
+ .TP 3
+-\-breakiterator\
+-Uses the internationalized sentence boundary of
++\-breakiterator\
++Uses the internationalized sentence boundary of
+ .na
+ \f2java.text.BreakIterator\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/text/BreakIterator.html to determine the end of the first sentence for English (all other locales already use \f2BreakIterator\fP), rather than an English language, locale\-specific algorithm. By \f2first sentence\fP, we mean the first sentence in the main description of a package, class or member. This sentence is copied to the package, class or member summary, and to the alphabetic index.
++http://docs.oracle.com/javase/7/docs/api/java/text/BreakIterator.html to determine the end of the first sentence for English (all other locales already use \f2BreakIterator\fP), rather than an English language, locale\-specific algorithm. By \f2first sentence\fP, we mean the first sentence in the main description of a package, class or member. This sentence is copied to the package, class or member summary, and to the alphabetic index.
+ .br
+ .br
+-From JDK 1.2 forward, the BreakIterator class is already used to determine the end of sentence for all languages but English. Therefore, the \f2\-breakiterator\fP option has no effect except for English from 1.2 forward. English has its own default algorithm:
++From JDK 1.2 forward, the BreakIterator class is already used to determine the end of sentence for all languages but English. Therefore, the \f2\-breakiterator\fP option has no effect except for English from 1.2 forward. English has its own default algorithm:
+ .RS 3
+ .TP 2
+ o
+-English default sentence\-break algorithm \- Stops at a period followed by a space or a HTML block tag, such as \f2<P>\fP.
++English default sentence\-break algorithm \- Stops at a period followed by a space or a HTML block tag, such as \f2<P>\fP.
+ .TP 2
+ o
+-Breakiterator sentence\-break algorithm \- In general, stops at a period, question mark or exclamation mark followed by a space if the next word starts with a capital letter. This is meant to handle most abbreviations (such as "The serial no. is valid", but won't handle "Mr. Smith"). Doesn't stop at HTML tags or sentences that begin with numbers or symbols. Stops at the last period in "../filename", even if embedded in an HTML tag.
++Breakiterator sentence\-break algorithm \- In general, stops at a period, question mark or exclamation mark followed by a space if the next word starts with a capital letter. This is meant to handle most abbreviations (such as "The serial no. is valid", but won't handle "Mr. Smith"). Doesn't stop at HTML tags or sentences that begin with numbers or symbols. Stops at the last period in "../filename", even if embedded in an HTML tag.
+ .RE
+-NOTE: We have removed from 1.5.0 the breakiterator warning messages that were in 1.4.x and have left the default sentence\-break algorithm unchanged. That is, the \-breakiterator option is not the default in 1.5.0, nor do we expect it to become the default. This is a reversal from our former intention that the default would change in the "next major release" (1.5.0). This means if you have not modified your source code to eliminate the breakiterator warnings in 1.4.x, then you don't have to do anything, and the warnings go away starting with 1.5.0. The reason for this reversal is because any benefit to having breakiterator become the default would be outweighed by the incompatible source change it would require. We regret any extra work and confusion this has caused.
++NOTE: We have removed from 1.5.0 the breakiterator warning messages that were in 1.4.x and have left the default sentence\-break algorithm unchanged. That is, the \-breakiterator option is not the default in 1.5.0, nor do we expect it to become the default. This is a reversal from our former intention that the default would change in the "next major release" (1.5.0). This means if you have not modified your source code to eliminate the breakiterator warnings in 1.4.x, then you don't have to do anything, and the warnings go away starting with 1.5.0. The reason for this reversal is because any benefit to having breakiterator become the default would be outweighed by the incompatible source change it would require. We regret any extra work and confusion this has caused.
+ .TP 3
+-\-locale\ language_country_variant
++\-locale\ language_country_variant
+ \f3Important\fP \- The \f2\-locale\fP option must be placed \f2ahead\fP (to the left) of any options provided by the standard doclet or any other doclet. Otherwise, the navigation bars will appear in English. This is the only command\-line option that is order\-dependent.
+ .br
+ .br
+ Specifies the locale that javadoc uses when generating documentation. The argument is the name of the locale, as described in java.util.Locale documentation, such as \f2en_US\fP (English, United States) or \f2en_US_WIN\fP (Windows variant).
+ .br
+ .br
+-Specifying a locale causes javadoc to choose the resource files of that locale for messages (strings in the navigation bar, headings for lists and tables, help file contents, comments in stylesheet.css, and so forth). It also specifies the sorting order for lists sorted alphabetically, and the sentence separator to determine the end of the first sentence. It does not determine the locale of the doc comment text specified in the source files of the documented classes.
++Specifying a locale causes javadoc to choose the resource files of that locale for messages (strings in the navigation bar, headings for lists and tables, help file contents, comments in stylesheet.css, and so forth). It also specifies the sorting order for lists sorted alphabetically, and the sentence separator to determine the end of the first sentence. It does not determine the locale of the doc comment text specified in the source files of the documented classes.
+ .TP 3
+-\-encoding\ name
++\-encoding\ name
+ Specifies the encoding name of the source files, such as \f2EUCJIS/SJIS\fP. If this option is not specified, the platform default converter is used.
+ .br
+ .br
+-Also see \-docencoding and \-charset.
++Also see \-docencoding and \-charset.
+ .TP 3
+-\-Jflag
+-Passes \f2flag\fP directly to the runtime system java that runs javadoc. Notice there must be no space between the \f2J\fP and the \f2flag\fP. For example, if you need to ensure that the system sets aside 32 megabytes of memory in which to process the generated documentation, then you would call the \f2\-Xmx\fP option of java as follows (\f2\-Xms\fP is optional, as it only sets the size of initial memory, which is useful if you know the minimum amount of memory required):
++\-Jflag
++Passes \f2flag\fP directly to the runtime system java that runs javadoc. Notice there must be no space between the \f2J\fP and the \f2flag\fP. For example, if you need to ensure that the system sets aside 32 megabytes of memory in which to process the generated documentation, then you would call the \f2\-Xmx\fP option of java as follows (\f2\-Xms\fP is optional, as it only sets the size of initial memory, which is useful if you know the minimum amount of memory required):
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-J\-Xmx32m \-J\-Xms32m\fP \f3com.mypackage\fP
+ .fl
+ .fi
+-To tell what version of javadoc you are using, call the "\f2\-version\fP" option of java:
++To tell what version of javadoc you are using, call the "\f2\-version\fP" option of java:
+ .nf
+ \f3
+ .fl
+@@ -3069,17 +3077,17 @@
+ Classic VM (build JDK\-1.2\-V, green threads, sunwjit)
+ .fl
+ .fi
+-(The version number of the standard doclet appears in its output stream.)
++(The version number of the standard doclet appears in its output stream.)
+ .RE
+-.SS
++.SS
+ Options Provided by the Standard Doclet
+ .RS 3
+ .TP 3
+-\-d\ directory
++\-d\ directory
+ Specifies the destination directory where javadoc saves the generated HTML files. (The "d" means "destination.") Omitting this option causes the files to be saved to the current directory. The value \f2directory\fP can be absolute, or relative to the current working directory. As of 1.4, the destination directory is automatically created when javadoc is run.
+ .br
+ .br
+-For example, the following generates the documentation for the package \f2com.mypackage\fP and saves the results in the \f2/home/user/doc/\fP directory:
++For example, the following generates the documentation for the package \f2com.mypackage\fP and saves the results in the \f2/home/user/doc/\fP directory:
+ .nf
+ \f3
+ .fl
+@@ -3087,7 +3095,7 @@
+ .fl
+ .fi
+ .TP 3
+-\-use
++\-use
+ Includes one "Use" page for each documented class and package. The page describes what packages, classes, methods, constructors and fields use any API of the given class or package. Given class C, things that use class C would include subclasses of C, fields declared as C, methods that return C, and methods and constructors with parameters of type C.
+ .br
+ .br
+@@ -3097,19 +3105,19 @@
+ Note that this documents only uses of the API, not the implementation. If a method uses \f2String\fP in its implementation but does not take a string as an argument or return a string, that is not considered a "use" of \f2String\fP.
+ .br
+ .br
+-You can access the generated "Use" page by first going to the class or package, then clicking on the "Use" link in the navigation bar.
++You can access the generated "Use" page by first going to the class or package, then clicking on the "Use" link in the navigation bar.
+ .TP 3
+-\-version
+-Includes the @version text in the generated docs. This text is omitted by default. To tell what version of the Javadoc tool you are using, use the \f2\-J\-version\fP option.
++\-version
++Includes the @version text in the generated docs. This text is omitted by default. To tell what version of the Javadoc tool you are using, use the \f2\-J\-version\fP option.
+ .TP 3
+-\-author
+-Includes the @author text in the generated docs.
++\-author
++Includes the @author text in the generated docs.
+ .TP 3
+-\-splitindex
+-Splits the index file into multiple files, alphabetically, one file per letter, plus a file for any index entries that start with non\-alphabetical characters.
++\-splitindex
++Splits the index file into multiple files, alphabetically, one file per letter, plus a file for any index entries that start with non\-alphabetical characters.
+ .TP 3
+-\-windowtitle\ title
+-Specifies the title to be placed in the HTML <title> tag. This appears in the window title and in any browser bookmarks (favorite places) that someone creates for this page. This title should not contain any HTML tags, as the browser will not properly interpret them. Any internal quotation marks within \f2title\fP may have to be escaped. If \-windowtitle is omitted, the Javadoc tool uses the value of \-doctitle for this option.
++\-windowtitle\ title
++Specifies the title to be placed in the HTML <title> tag. This appears in the window title and in any browser bookmarks (favorite places) that someone creates for this page. This title should not contain any HTML tags, as the browser will not properly interpret them. Any internal quotation marks within \f2title\fP may have to be escaped. If \-windowtitle is omitted, the Javadoc tool uses the value of \-doctitle for this option.
+ .nf
+ \f3
+ .fl
+@@ -3117,8 +3125,8 @@
+ .fl
+ .fi
+ .TP 3
+-\-doctitle\ title
+-Specifies the title to be placed near the top of the overview summary file. The title will be placed as a centered, level\-one heading directly beneath the upper navigation bar. The \f2title\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2title\fP may have to be escaped.
++\-doctitle\ title
++Specifies the title to be placed near the top of the overview summary file. The title will be placed as a centered, level\-one heading directly beneath the upper navigation bar. The \f2title\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2title\fP may have to be escaped.
+ .nf
+ \f3
+ .fl
+@@ -3126,11 +3134,11 @@
+ .fl
+ .fi
+ .TP 3
+-\-title\ title
+-\f3This option no longer exists.\fP It existed only in Beta versions of Javadoc 1.2. It has been renamed to \f2\-doctitle\fP. This option is being renamed to make it clear that it defines the document title rather than the window title.
++\-title\ title
++\f3This option no longer exists.\fP It existed only in Beta versions of Javadoc 1.2. It has been renamed to \f2\-doctitle\fP. This option is being renamed to make it clear that it defines the document title rather than the window title.
+ .TP 3
+-\-header\ header
+-Specifies the header text to be placed at the top of each output file. The header will be placed to the right of the upper navigation bar. \f2header\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2header\fP may have to be escaped.
++\-header\ header
++Specifies the header text to be placed at the top of each output file. The header will be placed to the right of the upper navigation bar. \f2header\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2header\fP may have to be escaped.
+ .nf
+ \f3
+ .fl
+@@ -3138,17 +3146,17 @@
+ .fl
+ .fi
+ .TP 3
+-\-footer\ footer
+-Specifies the footer text to be placed at the bottom of each output file. The footer will be placed to the right of the lower navigation bar. \f2footer\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2footer\fP may have to be escaped.
++\-footer\ footer
++Specifies the footer text to be placed at the bottom of each output file. The footer will be placed to the right of the lower navigation bar. \f2footer\fP may contain html tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2footer\fP may have to be escaped.
+ .TP 3
+-\-top
+-Specifies the text to be placed at the top of each output file.
++\-top
++Specifies the text to be placed at the top of each output file.
+ .TP 3
+-\-bottom\ text
+-Specifies the text to be placed at the bottom of each output file. The text will be placed at the bottom of the page, below the lower navigation bar. The \f2text\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2text\fP may have to be escaped.
++\-bottom\ text
++Specifies the text to be placed at the bottom of each output file. The text will be placed at the bottom of the page, below the lower navigation bar. The \f2text\fP may contain HTML tags and white space, though if it does, it must be enclosed in quotes. Any internal quotation marks within \f2text\fP may have to be escaped.
+ .TP 3
+-\-link\ extdocURL
+-Creates links to existing javadoc\-generated documentation of external referenced classes. It takes one argument:
++\-link\ extdocURL
++Creates links to existing javadoc\-generated documentation of external referenced classes. It takes one argument:
+ .RS 3
+ .TP 2
+ o
+@@ -3161,21 +3169,21 @@
+ When specifying an absolute link you normally use an \f2http:\fP link. However, if you want to link to a file system that has no web server, you can use a \f2file:\fP link \-\- however, do this only if everyone wanting to access the generated documentation shares the same file system.
+ .br
+ .br
+-In all cases, and on all operating systems, you should use a forward slash as the separator, whether the URL is absolute or relative, and "http:" or "file:" based (as specified in the
++In all cases, and on all operating systems, you should use a forward slash as the separator, whether the URL is absolute or relative, and "http:" or "file:" based (as specified in the
+ .na
+ \f2URL Memo\fP @
+ .fi
+-http://www.ietf.org/rfc/rfc1738.txt).
++http://www.ietf.org/rfc/rfc1738.txt).
+ .RS 3
+ .TP 3
+-Absolute http: based link:
+-\f2\-link http://<host>/<directory>/<directory>/.../<name>\fP
++Absolute http: based link:
++\f2\-link http://<host>/<directory>/<directory>/.../<name>\fP
+ .TP 3
+-Absolute file: based link:
+-\f2\-link file://<host>/<directory>/<directory>/.../<name>\fP
++Absolute file: based link:
++\f2\-link file://<host>/<directory>/<directory>/.../<name>\fP
+ .TP 3
+-Relative link:
+-\f2\-link <directory>/<directory>/.../<name>\fP
++Relative link:
++\f2\-link <directory>/<directory>/.../<name>\fP
+ .RE
+ .RE
+ You can specify multiple \f2\-link\fP options in a given javadoc run to link to multiple documents.
+@@ -3184,35 +3192,35 @@
+ \f3Choosing between \-linkoffline and \-link\fP:
+ .br
+ .br
+-Use \f2\-link\fP:
++Use \f2\-link\fP:
+ .RS 3
+ .TP 2
+ o
+-when using a relative path to the external API document, or
++when using a relative path to the external API document, or
+ .TP 2
+ o
+-when using an absolute URL to the external API document, if your shell allows a program to open a connection to that URL for reading.
++when using an absolute URL to the external API document, if your shell allows a program to open a connection to that URL for reading.
+ .RE
+-Use \f2\-linkoffline\fP:
++Use \f2\-linkoffline\fP:
+ .RS 3
+ .TP 2
+ o
+-when using an absolute URL to the external API document, if your shell \f2does not allow\fP a program to open a connection to that URL for reading. This can occur if you are behind a firewall and the document you want to link to is on the other side.
++when using an absolute URL to the external API document, if your shell \f2does not allow\fP a program to open a connection to that URL for reading. This can occur if you are behind a firewall and the document you want to link to is on the other side.
+ .RE
+ .br
+ .br
+-\f3Example using absolute links to the external docs\fP \- Let us say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java Platform packages at
++\f3Example using absolute links to the external docs\fP \- Let us say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java Platform packages at
+ .na
+-\f2http://download.oracle.com/javase/7/docs/api/\fP @
++\f2http://docs.oracle.com/javase/7/docs/api/\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/. The following command generates documentation for the package \f2com.mypackage\fP with links to the Java SE Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other options, such as \f2\-sourcepath\fP and \f2\-d\fP, are not shown.)
++http://docs.oracle.com/javase/7/docs/api/. The following command generates documentation for the package \f2com.mypackage\fP with links to the Java SE Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other options, such as \f2\-sourcepath\fP and \f2\-d\fP, are not shown.)
+ .nf
+ \f3
+ .fl
+- % \fP\f3javadoc \-link http://download.oracle.com/javase/7/docs/api/ com.mypackage\fP
++ % \fP\f3javadoc \-link http://docs.oracle.com/javase/7/docs/api/ com.mypackage\fP
+ .fl
+ .fi
+-\f3Example using relative links to the external docs\fP \- Let us say you have two packages whose docs are generated in different runs of the Javadoc tool, and those docs are separated by a relative path. In this example, the packages are \f2com.apipackage\fP, an API, and \f2com.spipackage\fP, an SPI (Service Provide Interface). You want the documentation to reside in \f2docs/api/com/apipackage\fP and \f2docs/spi/com/spipackage\fP. Assuming the API package documentation is already generated, and that \f2docs\fP is the current directory, you would document the SPI package with links to the API documentation by running:
++\f3Example using relative links to the external docs\fP \- Let us say you have two packages whose docs are generated in different runs of the Javadoc tool, and those docs are separated by a relative path. In this example, the packages are \f2com.apipackage\fP, an API, and \f2com.spipackage\fP, an SPI (Service Provide Interface). You want the documentation to reside in \f2docs/api/com/apipackage\fP and \f2docs/spi/com/spipackage\fP. Assuming the API package documentation is already generated, and that \f2docs\fP is the current directory, you would document the SPI package with links to the API documentation by running:
+ .nf
+ \f3
+ .fl
+@@ -3234,7 +3242,7 @@
+ Another use is for cross\-links between sets of packages: Execute javadoc on one set of packages, then run javadoc again on another set of packages, creating links both ways between both sets.
+ .br
+ .br
+-\f3How a Class Must be Referenced\fP \- For a link to an external referenced class to actually appear (and not just its text label), the class must be referenced in the following way. It is not sufficient for it to be referenced in the body of a method. It must be referenced in either an \f2import\fP statement or in a declaration. Here are examples of how the class \f2java.io.File\fP can be referenced:
++\f3How a Class Must be Referenced\fP \- For a link to an external referenced class to actually appear (and not just its text label), the class must be referenced in the following way. It is not sufficient for it to be referenced in the body of a method. It must be referenced in either an \f2import\fP statement or in a declaration. Here are examples of how the class \f2java.io.File\fP can be referenced:
+ .RS 3
+ .TP 2
+ o
+@@ -3242,30 +3250,30 @@
+ .br
+ \f2import java.io.*;\fP
+ .br
+-In 1.3.x and 1.2.x, only an explicit import by name works \-\- a wildcard import statement does not work, nor does the automatic import \f2java.lang.*\fP.
++In 1.3.x and 1.2.x, only an explicit import by name works \-\- a wildcard import statement does not work, nor does the automatic import \f2java.lang.*\fP.
+ .TP 2
+ o
+ In a declaration:
+ .br
+ \f2void foo(File f) {}\fP
+ .br
+-The reference and be in the return type or parameter type of a method, constructor, field, class or interface, or in an \f2implements\fP, \f2extends\fP or \f2throws\fP statement.
++The reference and be in the return type or parameter type of a method, constructor, field, class or interface, or in an \f2implements\fP, \f2extends\fP or \f2throws\fP statement.
+ .RE
+-An important corollary is that when you use the \f2\-link\fP option, there may be many links that unintentionally do not appear due to this constraint. (The text would appear without a hypertext link.) You can detect these by the warnings they emit. The most innocuous way to properly reference a class and thereby add the link would be to import that class, as shown above.
++An important corollary is that when you use the \f2\-link\fP option, there may be many links that unintentionally do not appear due to this constraint. (The text would appear without a hypertext link.) You can detect these by the warnings they emit. The most innocuous way to properly reference a class and thereby add the link would be to import that class, as shown above.
+ .br
+ .br
+ \f3Package List\fP \- The \f2\-link\fP option requires that a file named \f2package\-list\fP, which is generated by the Javadoc tool, exist at the URL you specify with \f2\-link\fP. The \f2package\-list\fP file is a simple text file that lists the names of packages documented at that location. In the earlier example, the Javadoc tool looks for a file named \f2package\-list\fP at the given URL, reads in the package names and then links to those packages at that URL.
+ .br
+ .br
+-For example, the package list for the Java SE 6 API is located at
++For example, the package list for the Java SE 6 API is located at
+ .na
+-\f2http://download.oracle.com/javase/7/docs/api/package\-list\fP @
++\f2http://docs.oracle.com/javase/7/docs/api/package\-list\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/package\-list. and starts as follows:
++http://docs.oracle.com/javase/7/docs/api/package\-list. and starts as follows:
+ .nf
+ \f3
+ .fl
+- java.applet
++ java.applet
+ .fl
+ java.awt
+ .fl
+@@ -3304,9 +3312,9 @@
+ \f3Cross\-links\fP \- Note that "bootstrapping" may be required when cross\-linking two or more documents that have not previously been generated. In other words, if \f2package\-list\fP does not exist for either document, when you run the Javadoc tool on the first document, the \f2package\-list\fP will not yet exist for the second document. Therefore, to create the external links, you must re\-generate the first document after generating the second document.
+ .br
+ .br
+-In this case, the purpose of first generating a document is to create its \f2package\-list\fP (or you can create it by hand it if you're certain of the package names). Then generate the second document with its external links. The Javadoc tool prints a warning if a needed external \f2package\-list\fP file does not exist.
++In this case, the purpose of first generating a document is to create its \f2package\-list\fP (or you can create it by hand it if you're certain of the package names). Then generate the second document with its external links. The Javadoc tool prints a warning if a needed external \f2package\-list\fP file does not exist.
+ .TP 3
+-\-linkoffline\ extdocURL\ packagelistLoc
++\-linkoffline\ extdocURL\ packagelistLoc
+ This option is a variation of \f2\-link\fP; they both create links to javadoc\-generated documentation for external referenced classes. Use the \f2\-linkoffline\fP option when linking to a document on the web when the Javadoc tool itself is "offline" \-\- that is, it cannot access the document through a web connection.
+ .br
+ .br
+@@ -3316,27 +3324,27 @@
+ Another use is as a "hack" to update docs: After you have run javadoc on a full set of packages, then you can run javadoc again on onlya smaller set of changed packages, so that the updated files can be inserted back into the original set. Examples are given below.
+ .br
+ .br
+-The \f2\-linkoffline\fP option takes two arguments \-\- the first for the string to be embedded in the \f2<a href>\fP links, the second telling it where to find \f2package\-list\fP:
++The \f2\-linkoffline\fP option takes two arguments \-\- the first for the string to be embedded in the \f2<a href>\fP links, the second telling it where to find \f2package\-list\fP:
+ .RS 3
+ .TP 2
+ o
+-\f4extdocURL\fP is the absolute or relative URL of the directory containing the external javadoc\-generated documentation you want to link to. If relative, the value should be the relative path from the destination directory (specified with \f2\-d\fP) to the root of the packages being linked to. For more details, see \f2extdocURL\fP in the \f2\-link\fP option.
++\f4extdocURL\fP is the absolute or relative URL of the directory containing the external javadoc\-generated documentation you want to link to. If relative, the value should be the relative path from the destination directory (specified with \f2\-d\fP) to the root of the packages being linked to. For more details, see \f2extdocURL\fP in the \f2\-link\fP option.
+ .TP 2
+ o
+-\f4packagelistLoc\fP is the path or URL to the directory containing the \f2package\-list\fP file for the external documentation. This can be a URL (http: or file:) or file path, and can be absolute or relative. If relative, make it relative to the \f2current\fP directory from where javadoc was run. Do not include the \f2package\-list\fP filename.
++\f4packagelistLoc\fP is the path or URL to the directory containing the \f2package\-list\fP file for the external documentation. This can be a URL (http: or file:) or file path, and can be absolute or relative. If relative, make it relative to the \f2current\fP directory from where javadoc was run. Do not include the \f2package\-list\fP filename.
+ .RE
+ You can specify multiple \f2\-linkoffline\fP options in a given javadoc run. (Prior to 1.2.2, it could be specified only once.)
+ .br
+ .br
+-\f3Example using absolute links to the external docs\fP \- Let us say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java SE Platform packages at \f2http://download.oracle.com/javase/7/docs/api/\fP, but your shell does not have web access. You could open the \f2package\-list\fP file in a browser at
++\f3Example using absolute links to the external docs\fP \- Let us say you want to link to the \f2java.lang\fP, \f2java.io\fP and other Java SE Platform packages at \f2http://docs.oracle.com/javase/7/docs/api/\fP, but your shell does not have web access. You could open the \f2package\-list\fP file in a browser at
+ .na
+-\f2http://download.oracle.com/javase/7/docs/api/package\-list\fP @
++\f2http://docs.oracle.com/javase/7/docs/api/package\-list\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/package\-list, save it to a local directory, and point to this local copy with the second argument, \f2packagelistLoc\fP. In this example, the package list file has been saved to the current directory "\f2.\fP" . The following command generates documentation for the package \f2com.mypackage\fP with links to the Java SE Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other necessary options, such as \f2\-sourcepath\fP, are not shown.)
++http://docs.oracle.com/javase/7/docs/api/package\-list, save it to a local directory, and point to this local copy with the second argument, \f2packagelistLoc\fP. In this example, the package list file has been saved to the current directory "\f2.\fP" . The following command generates documentation for the package \f2com.mypackage\fP with links to the Java SE Platform packages. The generated documentation will contain links to the \f2Object\fP class, for example, in the class trees. (Other necessary options, such as \f2\-sourcepath\fP, are not shown.)
+ .nf
+ \f3
+ .fl
+-% \fP\f3javadoc \-linkoffline http://download.oracle.com/javase/7/docs/api/ . com.mypackage\fP
++% \fP\f3javadoc \-linkoffline http://docs.oracle.com/javase/7/docs/api/ . com.mypackage\fP
+ .fl
+ .fi
+ \f3Example using relative links to the external docs\fP \- It's not very common to use \f2\-linkoffline\fP with relative paths, for the simple reason that \f2\-link\fP usually suffices. When using \f2\-linkoffline\fP, the \f2package\-list\fP file is generally local, and when using relative links, the file you are linking to is also generally local. So it is usually unnecessary to give a different path for the two arguments to \f2\-linkoffline\fP. When the two arguments are identical, you can use \f2\-link\fP. See the \f2\-link\fP relative example.
+@@ -3358,23 +3366,23 @@
+ \f3Updating docs\fP \- Another use for \f2\-linkoffline\fP option is useful if your project has dozens or hundreds of packages, if you have already run javadoc on the entire tree, and now, in a separate run, you want to quickly make some small changes and re\-run javadoc on just a small portion of the source tree. This is somewhat of a hack in that it works properly only if your changes are only to doc comments and not to declarations. If you were to add, remove or change any declarations from the source code, then broken links could show up in the index, package tree, inherited member lists, use page, and other places.
+ .br
+ .br
+-First, you create a new destination directory (call it \f2update\fP) for this new small run. Let us say the original destination directory was named \f2html\fP. In the simplest example, cd to the parent of \f2html\fP. Set the first argument of \f2\-linkoffline\fP to the current directory "." and set the second argument to the relative path to \f2html\fP, where it can find \f2package\-list\fP, and pass in only the package names of the packages you want to update:
++First, you create a new destination directory (call it \f2update\fP) for this new small run. Let us say the original destination directory was named \f2html\fP. In the simplest example, cd to the parent of \f2html\fP. Set the first argument of \f2\-linkoffline\fP to the current directory "." and set the second argument to the relative path to \f2html\fP, where it can find \f2package\-list\fP, and pass in only the package names of the packages you want to update:
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-d update \-linkoffline . html com.mypackage\fP
+ .fl
+ .fi
+-When the Javadoc tool is done, copy these generated class pages in \f2update/com/package\fP (not the overview or index), over the original files in \f2html/com/package\fP.
++When the Javadoc tool is done, copy these generated class pages in \f2update/com/package\fP (not the overview or index), over the original files in \f2html/com/package\fP.
+ .TP 3
+-\-linksource\
++\-linksource\
+ Creates an HTML version of each source file (with line numbers) and adds links to them from the standard HTML documentation. Links are created for classes, interfaces, constructors, methods and fields whose declarations are in a source file. Otherwise, links are not created, such as for default constructors and generated classes.
+ .br
+ .br
+ \f3This option exposes \fP\f4all\fP\f3 private implementation details in the included source files, including private classes, private fields, and the bodies of private methods, \fP\f4regardless of the \fP\f4\-public\fP\f3, \fP\f4\-package\fP\f3, \fP\f4\-protected\fP\f3 and \fP\f4\-private\fP\f3 options.\fP Unless you also use the \f2\-private\fP option, not all private classes or interfaces will necessarily be accessible via links.
+ .br
+ .br
+-Each link appears on the name of the identifier in its declaration. For example, the link to the source code of the \f2Button\fP class would be on the word "Button":
++Each link appears on the name of the identifier in its declaration. For example, the link to the source code of the \f2Button\fP class would be on the word "Button":
+ .nf
+ \f3
+ .fl
+@@ -3386,7 +3394,7 @@
+ .fl
+ \fP
+ .fi
+-and the link to the source code of the \f2getLabel()\fP method in the Button class would be on the word "getLabel":
++and the link to the source code of the \f2getLabel()\fP method in the Button class would be on the word "getLabel":
+ .nf
+ \f3
+ .fl
+@@ -3395,15 +3403,15 @@
+ \fP
+ .fi
+ .TP 3
+-\-group\ groupheading\ packagepattern:packagepattern:...
+-Separates packages on the overview page into whatever groups you specify, one group per table. You specify each group with a different \f2\-group\fP option. The groups appear on the page in the order specified on the command line; packages are alphabetized within a group. For a given \f2\-group\fP option, the packages matching the list of \f2packagepattern\fP expressions appear in a table with the heading \f2groupheading\fP.
++\-group\ groupheading\ packagepattern:packagepattern:...
++Separates packages on the overview page into whatever groups you specify, one group per table. You specify each group with a different \f2\-group\fP option. The groups appear on the page in the order specified on the command line; packages are alphabetized within a group. For a given \f2\-group\fP option, the packages matching the list of \f2packagepattern\fP expressions appear in a table with the heading \f2groupheading\fP.
+ .RS 3
+ .TP 2
+ o
+-\f4groupheading\fP can be any text, and can include white space. This text is placed in the table heading for the group.
++\f4groupheading\fP can be any text, and can include white space. This text is placed in the table heading for the group.
+ .TP 2
+ o
+-\f4packagepattern\fP can be any package name, or can be the start of any package name followed by an asterisk (\f2*\fP). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed. Multiple patterns can be included in a group by separating them with colons (\f2:\fP).
++\f4packagepattern\fP can be any package name, or can be the start of any package name followed by an asterisk (\f2*\fP). The asterisk is a wildcard meaning "match any characters". This is the only wildcard allowed. Multiple patterns can be included in a group by separating them with colons (\f2:\fP).
+ .RE
+ \f3NOTE: If using an asterisk in a pattern or pattern list, the pattern list must be inside quotes, such as \fP\f4"java.lang*:java.util"\fP
+ .br
+@@ -3411,7 +3419,7 @@
+ If you do not supply any \f2\-group\fP option, all packages are placed in one group with the heading "Packages". If the all groups do not include all documented packages, any leftover packages appear in a separate group with the heading "Other Packages".
+ .br
+ .br
+-For example, the following option separates the four documented packages into core, extension and other packages. Notice the trailing "dot" does not appear in "java.lang*" \-\- including the dot, such as "java.lang.*" would omit the java.lang package.
++For example, the following option separates the four documented packages into core, extension and other packages. Notice the trailing "dot" does not appear in "java.lang*" \-\- including the dot, such as "java.lang.*" would omit the java.lang package.
+ .nf
+ \f3
+ .fl
+@@ -3422,44 +3430,44 @@
+ java.lang java.lang.reflect java.util javax.servlet java.new\fP
+ .fl
+ .fi
+-This results in the groupings:
++This results in the groupings:
+ .RS 3
+ .TP 3
+-Core Packages
+-\f2java.lang\fP
+-\f2java.lang.reflect\fP
+-\f2java.util\fP
++Core Packages
++\f2java.lang\fP
++\f2java.lang.reflect\fP
++\f2java.util\fP
+ .TP 3
+-Extension Packages
+-\f2javax.servlet\fP
++Extension Packages
++\f2javax.servlet\fP
+ .TP 3
+-Other Packages
+-\f2java.new\fP
++Other Packages
++\f2java.new\fP
+ .RE
+ .TP 3
+-\-nodeprecated
+-Prevents the generation of any deprecated API at all in the documentation. This does what \-nodeprecatedlist does, plus it does not generate any deprecated API throughout the rest of the documentation. This is useful when writing code and you don't want to be distracted by the deprecated code.
++\-nodeprecated
++Prevents the generation of any deprecated API at all in the documentation. This does what \-nodeprecatedlist does, plus it does not generate any deprecated API throughout the rest of the documentation. This is useful when writing code and you don't want to be distracted by the deprecated code.
+ .TP 3
+-\-nodeprecatedlist
+-Prevents the generation of the file containing the list of deprecated APIs (deprecated\-list.html) and the link in the navigation bar to that page. (However, javadoc continues to generate the deprecated API throughout the rest of the document.) This is useful if your source code contains no deprecated API, and you want to make the navigation bar cleaner.
++\-nodeprecatedlist
++Prevents the generation of the file containing the list of deprecated APIs (deprecated\-list.html) and the link in the navigation bar to that page. (However, javadoc continues to generate the deprecated API throughout the rest of the document.) This is useful if your source code contains no deprecated API, and you want to make the navigation bar cleaner.
+ .TP 3
+-\-nosince
+-Omits from the generated docs the "Since" sections associated with the @since tags.
++\-nosince
++Omits from the generated docs the "Since" sections associated with the @since tags.
+ .TP 3
+-\-notree
+-Omits the class/interface hierarchy pages from the generated docs. These are the pages you reach using the "Tree" button in the navigation bar. The hierarchy is produced by default.
++\-notree
++Omits the class/interface hierarchy pages from the generated docs. These are the pages you reach using the "Tree" button in the navigation bar. The hierarchy is produced by default.
+ .TP 3
+-\-noindex
+-Omits the index from the generated docs. The index is produced by default.
++\-noindex
++Omits the index from the generated docs. The index is produced by default.
+ .TP 3
+-\-nohelp
+-Omits the HELP link in the navigation bars at the top and bottom of each page of output.
++\-nohelp
++Omits the HELP link in the navigation bars at the top and bottom of each page of output.
+ .TP 3
+-\-nonavbar
+-Prevents the generation of the navigation bar, header and footer, otherwise found at the top and bottom of the generated pages. Has no affect on the "bottom" option. The \f2\-nonavbar\fP option is useful when you are interested only in the content and have no need for navigation, such as converting the files to PostScript or PDF for print only.
++\-nonavbar
++Prevents the generation of the navigation bar, header and footer, otherwise found at the top and bottom of the generated pages. Has no affect on the "bottom" option. The \f2\-nonavbar\fP option is useful when you are interested only in the content and have no need for navigation, such as converting the files to PostScript or PDF for print only.
+ .TP 3
+-\-helpfile\ path/filename
+-Specifies the path of an alternate help file \f2path/filename\fP that the HELP link in the top and bottom navigation bars link to. Without this option, the Javadoc tool automatically creates a help file \f2help\-doc.html\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2help\-doc.html\fP \-\- the Javadoc tool will adjust the links in the navigation bar accordingly. For example:
++\-helpfile\ path/filename
++Specifies the path of an alternate help file \f2path/filename\fP that the HELP link in the top and bottom navigation bars link to. Without this option, the Javadoc tool automatically creates a help file \f2help\-doc.html\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2help\-doc.html\fP \-\- the Javadoc tool will adjust the links in the navigation bar accordingly. For example:
+ .nf
+ \f3
+ .fl
+@@ -3467,8 +3475,8 @@
+ .fl
+ .fi
+ .TP 3
+-\-stylesheetfile\ path/filename
+-Specifies the path of an alternate HTML stylesheet file. Without this option, the Javadoc tool automatically creates a stylesheet file \f2stylesheet.css\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2stylesheet.css\fP. For example:
++\-stylesheetfile\ path/filename
++Specifies the path of an alternate HTML stylesheet file. Without this option, the Javadoc tool automatically creates a stylesheet file \f2stylesheet.css\fP that is hard\-coded in the Javadoc tool. This option enables you to override this default. The \f2filename\fP can be any name and is not restricted to \f2stylesheet.css\fP. For example:
+ .nf
+ \f3
+ .fl
+@@ -3476,22 +3484,22 @@
+ .fl
+ .fi
+ .TP 3
+-\-serialwarn
+-Generates compile\-time warnings for missing @serial tags. By default, Javadoc 1.2.2 (and later versions) generates no serial warnings. (This is a reversal from earlier versions.) Use this option to display the serial warnings, which helps to properly document default serializable fields and \f2writeExternal\fP methods.
++\-serialwarn
++Generates compile\-time warnings for missing @serial tags. By default, Javadoc 1.2.2 (and later versions) generates no serial warnings. (This is a reversal from earlier versions.) Use this option to display the serial warnings, which helps to properly document default serializable fields and \f2writeExternal\fP methods.
+ .TP 3
+-\-charset\ name
+-Specifies the HTML character set for this document. The name should be a preferred MIME name as given in the
++\-charset\ name
++Specifies the HTML character set for this document. The name should be a preferred MIME name as given in the
+ .na
+ \f2IANA Registry\fP @
+ .fi
+-http://www.iana.org/assignments/character\-sets. For example:
++http://www.iana.org/assignments/character\-sets. For example:
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-charset "iso\-8859\-1" mypackage\fP
+ .fl
+ .fi
+-would insert the following line in the head of every generated page:
++would insert the following line in the head of every generated page:
+ .nf
+ \f3
+ .fl
+@@ -3499,34 +3507,34 @@
+ .fl
+ \fP
+ .fi
+-This META tag is described in the
++This META tag is described in the
+ .na
+ \f2HTML standard\fP @
+ .fi
+ http://www.w3.org/TR/REC\-html40/charset.html#h\-5.2.2. (4197265 and 4137321)
+ .br
+ .br
+-Also see \-encoding and \-docencoding.
++Also see \-encoding and \-docencoding.
+ .TP 3
+-\-docencoding\ name
+-Specifies the encoding of the generated HTML files. The name should be a preferred MIME name as given in the
++\-docencoding\ name
++Specifies the encoding of the generated HTML files. The name should be a preferred MIME name as given in the
+ .na
+ \f2IANA Registry\fP @
+ .fi
+-http://www.iana.org/assignments/character\-sets. If you omit this option but use \-encoding, then the encoding of the generated HTML files is determined by \-encoding. Example:
++http://www.iana.org/assignments/character\-sets. If you omit this option but use \-encoding, then the encoding of the generated HTML files is determined by \-encoding. Example:
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-docencoding "ISO\-8859\-1" mypackage\fP
+ .fl
+ .fi
+-Also see \-encoding and \-charset.
++Also see \-encoding and \-charset.
+ .TP 3
+-\-keywords
++\-keywords
+ Adds HTML meta keyword tags to the generated file for each class. These tags can help the page be found by search engines that look for meta tags. (Most search engines that search the entire Internet do not look at meta tags, because pages can misuse them; but search engines offered by companies that confine their search to their own website can benefit by looking at meta tags.)
+ .br
+ .br
+-The meta tags include the fully qualified name of the class and the unqualified names of the fields and methods. Constructors are not included because they are identical to the class name. For example, the class String starts with these keywords:
++The meta tags include the fully qualified name of the class and the unqualified names of the fields and methods. Constructors are not included because they are identical to the class name. For example, the class String starts with these keywords:
+ .nf
+ \f3
+ .fl
+@@ -3541,7 +3549,7 @@
+ \fP
+ .fi
+ .TP 3
+-\-tag\ \ tagname:Xaoptcmf:"taghead"
++\-tag\ \ tagname:Xaoptcmf:"taghead"
+ Enables the Javadoc tool to interpret a simple, one\-argument custom block tag \f2@\fP\f2tagname\fP in doc comments. So the Javadoc tool can "spell\-check" tag names, it is important to include a \f2\-tag\fP option for every custom tag that is present in the source code, disabling (with \f2X\fP) those that are not being output in the current run.
+ .br
+ .br
+@@ -3568,10 +3576,10 @@
+ .br
+ \f4m\fP (methods)
+ .br
+-\f4f\fP (fields)
++\f4f\fP (fields)
+ .br
+ .br
+-\f3Examples of single tags\fP \- An example of a tag option for a tag that can be used anywhere in the source code is:
++\f3Examples of single tags\fP \- An example of a tag option for a tag that can be used anywhere in the source code is:
+ .nf
+ \f3
+ .fl
+@@ -3579,7 +3587,7 @@
+ .fl
+ \fP
+ .fi
+-If you wanted @todo to be used only with constructors, methods and fields, you would use:
++If you wanted @todo to be used only with constructors, methods and fields, you would use:
+ .nf
+ \f3
+ .fl
+@@ -3587,7 +3595,7 @@
+ .fl
+ \fP
+ .fi
+-Notice the last colon (\f2:\fP) above is not a parameter separator, but is part of the heading text (as shown below). You would use either tag option for source code that contains the tag \f2@todo\fP, such as:
++Notice the last colon (\f2:\fP) above is not a parameter separator, but is part of the heading text (as shown below). You would use either tag option for source code that contains the tag \f2@todo\fP, such as:
+ .nf
+ \f3
+ .fl
+@@ -3595,7 +3603,7 @@
+ .fl
+ \fP
+ .fi
+-\f3Use of Colon in Tag Name\fP \- A colon can be used in a tag name if it is escaped with a backslash. For this doc comment:
++\f3Use of Colon in Tag Name\fP \- A colon can be used in a tag name if it is escaped with a backslash. For this doc comment:
+ .nf
+ \f3
+ .fl
+@@ -3607,7 +3615,7 @@
+ .fl
+ \fP
+ .fi
+-use this tag option:
++use this tag option:
+ .nf
+ \f3
+ .fl
+@@ -3618,7 +3626,7 @@
+ \f3Spell\-checking tag names (Disabling tags)\fP \- Some developers put custom tags in the source code that they don't always want to output. In these cases, it is important to list all tags that are present in the source code, enabling the ones you want to output and disabling the ones you don't want to output. The presence of \f2X\fP disables the tag, while its absence enables the tag. This gives the Javadoc tool enough information to know if a tag it encounters is unknown, probably the results of a typo or a misspelling. It prints a warning in these cases.
+ .br
+ .br
+-You can add \f2X\fP to the placement values already present, so that when you want to enable the tag, you can simply delete the \f2X\fP. For example, if @todo is a tag that you want to suppress on output, you would use:
++You can add \f2X\fP to the placement values already present, so that when you want to enable the tag, you can simply delete the \f2X\fP. For example, if @todo is a tag that you want to suppress on output, you would use:
+ .nf
+ \f3
+ .fl
+@@ -3626,7 +3634,7 @@
+ .fl
+ \fP
+ .fi
+-or, if you'd rather keep it simple:
++or, if you'd rather keep it simple:
+ .nf
+ \f3
+ .fl
+@@ -3643,7 +3651,7 @@
+ If \f2\-tag\fP is missing, then the position of \f2\-taglet\fP determines its order. If they are both present, then whichever appears last on the command line determines its order. (This happens because the tags and taglets are processed in the order that they appear on the command line. For example, if \f2\-taglet\fP and \f2\-tag\fP both have the name "todo", the one that appears last on the command line will determine its order.
+ .br
+ .br
+-\f3Example of a complete set of tags\fP \- This example inserts "To Do" after "Parameters" and before "Throws" in the output. By using "X", it also specifies that @example is a tag that might be encountered in the source code that should not be output during this run. Notice that if you use @argfile, you can put the tags on separate lines in an argument file like this (no line continuation characters needed):
++\f3Example of a complete set of tags\fP \- This example inserts "To Do" after "Parameters" and before "Throws" in the output. By using "X", it also specifies that @example is a tag that might be encountered in the source code that should not be output during this run. Notice that if you use @argfile, you can put the tags on separate lines in an argument file like this (no line continuation characters needed):
+ .nf
+ \f3
+ .fl
+@@ -3670,24 +3678,24 @@
+ \f3Avoiding Conflicts\fP \- If you want to slice out your own namespace, you can use a dot\-separated naming convention similar to that used for packages: \f2com.mycompany.todo\fP. Oracle will continue to create standard tags whose names do not contain dots. Any tag you create will override the behavior of a tag by the same name defined by Oracle. In other words, if you create a tag or taglet \f2@todo\fP, it will always have the same behavior you define, even if Oracle later creates a standard tag of the same name.
+ .br
+ .br
+-\f3Annotations vs. Javadoc Tags\fP \- In general, if the markup you want to add is intended to affect or produce documentation, it should probably be a javadoc tag; otherwise, it should be an annotation. See
++\f3Annotations vs. Javadoc Tags\fP \- In general, if the markup you want to add is intended to affect or produce documentation, it should probably be a javadoc tag; otherwise, it should be an annotation. See
+ .na
+ \f2Comparing Annotations and Javadoc Tags\fP @
+ .fi
+ http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html#annotations<
+ .br
+ .br
+-You can also create more complex block tags, or custom inline tags with the \-taglet option.
++You can also create more complex block tags, or custom inline tags with the \-taglet option.
+ .TP 3
+-\-taglet\ \ class
+-Specifies the class file that starts the taglet used in generating the documentation for that tag. Use the fully\-qualified name for \f2class\fP. This taglet also defines the number of text arguments that the custom tag has. The taglet accepts those arguments, processes them, and generates the output. For extensive documentation with example taglets, see:
++\-taglet\ \ class
++Specifies the class file that starts the taglet used in generating the documentation for that tag. Use the fully\-qualified name for \f2class\fP. This taglet also defines the number of text arguments that the custom tag has. The taglet accepts those arguments, processes them, and generates the output. For extensive documentation with example taglets, see:
+ .RS 3
+ .TP 2
+ o
+ .na
+ \f2Taglet Overview\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/taglet/overview.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/taglet/overview.html
+ .RE
+ Taglets are useful for block or inline tags. They can have any number of arguments and implement custom behavior, such as making text bold, formatting bullets, writing out the text to a file, or starting other processes.
+ .br
+@@ -3695,13 +3703,13 @@
+ Taglets can only determine where a tag should appear and in what form. All other decisions are made by the doclet. So a taglet cannot do things such as remove a class name from the list of included classes. However, it can execute side effects, such as printing the tag's text to a file or triggering another process.
+ .br
+ .br
+-Use the \f2\-tagletpath\fP option to specify the path to the taglet. Here is an example that inserts the "To Do" taglet after "Parameters" and ahead of "Throws" in the generated pages:
++Use the \f2\-tagletpath\fP option to specify the path to the taglet. Here is an example that inserts the "To Do" taglet after "Parameters" and ahead of "Throws" in the generated pages:
+ .nf
+ \f3
+ .fl
+ \-taglet com.sun.tools.doclets.ToDoTaglet
+ .fl
+- \-tagletpath /home/taglets
++ \-tagletpath /home/taglets
+ .fl
+ \-tag return
+ .fl
+@@ -3715,22 +3723,22 @@
+ .fl
+ \fP
+ .fi
+-Alternatively, you can use the \f2\-taglet\fP option in place of its \f2\-tag\fP option, but that may be harder to read.
++Alternatively, you can use the \f2\-taglet\fP option in place of its \f2\-tag\fP option, but that may be harder to read.
+ .TP 3
+-\-tagletpath\ \ tagletpathlist
+-Specifies the search paths for finding taglet class files (.class). The \f2tagletpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths.
++\-tagletpath\ \ tagletpathlist
++Specifies the search paths for finding taglet class files (.class). The \f2tagletpathlist\fP can contain multiple paths by separating them with a colon (\f2:\fP). The Javadoc tool will search in all subdirectories of the specified paths.
+ .TP 3
+-\-docfilessubdirs\
+-Enables deep copying of "\f2doc\-files\fP" directories. In other words, subdirectories and all contents are recursively copied to the destination. For example, the directory \f2doc\-files/example/images\fP and all its contents would now be copied. There is also an option to exclude subdirectories.
++\-docfilessubdirs\
++Enables deep copying of "\f2doc\-files\fP" directories. In other words, subdirectories and all contents are recursively copied to the destination. For example, the directory \f2doc\-files/example/images\fP and all its contents would now be copied. There is also an option to exclude subdirectories.
+ .TP 3
+-\-excludedocfilessubdir\ \ name1:name2...
+-Excludes any "\f2doc\-files\fP" subdirectories with the given names. This prevents the copying of SCCS and other source\-code\-control subdirectories.
++\-excludedocfilessubdir\ \ name1:name2...
++Excludes any "\f2doc\-files\fP" subdirectories with the given names. This prevents the copying of SCCS and other source\-code\-control subdirectories.
+ .TP 3
+-\-noqualifier\ \ all\ | \ packagename1:packagename2:...
++\-noqualifier\ \ all\ | \ packagename1:packagename2:...
+ Omits qualifying package name from ahead of class names in output. The argument to \f2\-noqualifier\fP is either "\f2all\fP" (all package qualifiers are omitted) or a colon\-separate list of packages, with wildcards, to be removed as qualifiers. The package name is removed from places where class or interface names appear.
+ .br
+ .br
+-The following example omits all package qualifiers:
++The following example omits all package qualifiers:
+ .nf
+ \f3
+ .fl
+@@ -3738,7 +3746,7 @@
+ .fl
+ \fP
+ .fi
+-The following example omits "java.lang" and "java.io" package qualifiers:
++The following example omits "java.lang" and "java.io" package qualifiers:
+ .nf
+ \f3
+ .fl
+@@ -3746,7 +3754,7 @@
+ .fl
+ \fP
+ .fi
+-The following example omits package qualifiers starting with "java", and "com.sun" subpackages (but not "javax"):
++The following example omits package qualifiers starting with "java", and "com.sun" subpackages (but not "javax"):
+ .nf
+ \f3
+ .fl
+@@ -3754,10 +3762,10 @@
+ .fl
+ \fP
+ .fi
+-Where a package qualifier would appear due to the above behavior, the name can be suitably shortened \-\- see How a name is displayed. This rule is in effect whether or not \f2\-noqualifier\fP is used.
++Where a package qualifier would appear due to the above behavior, the name can be suitably shortened \-\- see How a name is displayed. This rule is in effect whether or not \f2\-noqualifier\fP is used.
+ .TP 3
+-\-notimestamp\
+-Suppresses the timestamp, which is hidden in an HTML comment in the generated HTML near the top of each page. Useful when you want to run javadoc on two source bases and diff them, as it prevents timestamps from causing a diff (which would otherwise be a diff on every page). The timestamp includes the javadoc version number, and currently looks like this:
++\-notimestamp\
++Suppresses the timestamp, which is hidden in an HTML comment in the generated HTML near the top of each page. Useful when you want to run javadoc on two source bases and diff them, as it prevents timestamps from causing a diff (which would otherwise be a diff on every page). The timestamp includes the javadoc version number, and currently looks like this:
+ .nf
+ \f3
+ .fl
+@@ -3766,11 +3774,11 @@
+ \fP
+ .fi
+ .TP 3
+-\-nocomment\
+-Suppress the entire comment body, including the main description and all tags, generating only declarations. This option enables re\-using source files originally intended for a different purpose, to produce skeleton HTML documentation at the early stages of a new project.
++\-nocomment\
++Suppress the entire comment body, including the main description and all tags, generating only declarations. This option enables re\-using source files originally intended for a different purpose, to produce skeleton HTML documentation at the early stages of a new project.
+ .TP 3
+-\-sourcetab tabLength
+-Specify the number of spaces each tab takes up in the source.
++\-sourcetab tabLength
++Specify the number of spaces each tab takes up in the source.
+ .RE
+ .SH "COMMAND LINE ARGUMENT FILES"
+ .LP
+@@ -3781,7 +3789,7 @@
+ Filenames within an argument file are relative to the current directory, not the location of the argument file. Wildcards (*) are not allowed in these lists (such as for specifying \f2*.java\fP). Use of the '\f2@\fP' character to recursively interpret files is not supported. The \f2\-J\fP options are not supported because they are passed to the launcher, which does not support argument files.
+ .LP
+ When executing javadoc, pass in the path and name of each argument file with the '\f2@\fP' leading character. When javadoc encounters an argument beginning with the character `\f2@\fP', it expands the contents of that file into the argument list.
+-.SS
++.SS
+ Example \- Single Arg File
+ .LP
+ You could use a single argument file named "\f2argfile\fP" to hold all Javadoc arguments:
+@@ -3793,7 +3801,7 @@
+ .fi
+ .LP
+ This argument file could contain the contents of both files shown in the next example.
+-.SS
++.SS
+ Example \- Two Arg Files
+ .LP
+ You can create two argument files \-\- one for the Javadoc options and the other for the package names or source filenames: (Notice the following lists have no line\-continuation characters.)
+@@ -3802,9 +3810,9 @@
+ .nf
+ \f3
+ .fl
+- \-d docs\-filelist
++ \-d docs\-filelist
+ .fl
+- \-use
++ \-use
+ .fl
+ \-splitindex
+ .fl
+@@ -3845,7 +3853,7 @@
+ % \fP\f3javadoc @options @packages\fP
+ .fl
+ .fi
+-.SS
++.SS
+ Example \- Arg Files with Paths
+ .LP
+ The argument files can have paths, but any filenames inside the files are relative to the current working directory (not \f2path1\fP or \f2path2\fP):
+@@ -3855,7 +3863,7 @@
+ % \fP\f3javadoc @path1/options @path2/packages\fP
+ .fl
+ .fi
+-.SS
++.SS
+ Example \- Option Arguments
+ .LP
+ Here's an example of saving just an argument to a javadoc option in an argument file. We'll use the \f2\-bottom\fP option, since it can have a lengthy argument. You could create a file named "\f2bottom\fP" containing its text argument:
+@@ -3896,13 +3904,13 @@
+ .LP
+ \f3Version Numbers\fP \- The version number of javadoc can be determined using \f3javadoc \-J\-version\fP. The version number of the standard doclet appears in its output stream. It can be turned off with \f2\-quiet\fP.
+ .LP
+-\f3Public programmatic interface\fP \- To invoke the Javadoc tool from within programs written in the Java language. This interface is in \f2com.sun.tools.javadoc.Main\fP (and javadoc is re\-entrant). For more details, see
++\f3Public programmatic interface\fP \- To invoke the Javadoc tool from within programs written in the Java language. This interface is in \f2com.sun.tools.javadoc.Main\fP (and javadoc is re\-entrant). For more details, see
+ .na
+ \f2Standard Doclet\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javadoc/standard\-doclet.html#runningprogrammatically.
++http://docs.oracle.com/javase/7/docs/technotes/guides/javadoc/standard\-doclet.html#runningprogrammatically.
+ .LP
+-\f3Running Doclets\fP \- The instructions given below are for invoking the standard HTML doclet. To invoke a custom doclet, use the \-doclet and \-docletpath options. For full, working examples of running a particular doclet, see the
++\f3Running Doclets\fP \- The instructions given below are for invoking the standard HTML doclet. To invoke a custom doclet, use the \-doclet and \-docletpath options. For full, working examples of running a particular doclet, see the
+ .na
+ \f2MIF Doclet documentation\fP @
+ .fi
+@@ -3910,7 +3918,7 @@
+ .SH "SIMPLE EXAMPLES"
+ .LP
+ You can run javadoc on entire packages or individual source files. Each package name has a corresponding directory name. In the following examples, the source files are located at \f2/home/src/java/awt/*.java\fP. The destination directory is \f2/home/html\fP.
+-.SS
++.SS
+ Documenting One or More Packages
+ .LP
+ To document a package, the source files (\f2*.java\fP) for that package must be located in a directory having the same name as the package. If a package name is made up of several identifiers (separated by dots, such as \f2java.awt.color\fP), each subsequent identifier must correspond to a deeper subdirectory (such as \f2java/awt/color\fP). You may split the source files for a single package among two such directory trees located at different places, as long as \f2\-sourcepath\fP points to them both \-\- for example \f2src1/java/awt/color\fP and \f2src2/java/awt/color\fP.
+@@ -3919,7 +3927,7 @@
+ .RS 3
+ .TP 2
+ o
+-\f3Case 1 \- Run recursively starting from one or more packages\fP \- This example uses \-sourcepath so javadoc can be run from any directory and \-subpackages (a new 1.4 option) for recursion. It traverses the subpackages of the \f2java\fP directory excluding packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
++\f3Case 1 \- Run recursively starting from one or more packages\fP \- This example uses \-sourcepath so javadoc can be run from any directory and \-subpackages (a new 1.4 option) for recursion. It traverses the subpackages of the \f2java\fP directory excluding packages rooted at \f2java.net\fP and \f2java.lang\fP. Notice this excludes \f2java.lang.ref\fP, a subpackage of \f2java.lang\fP).
+ .nf
+ \f3
+ .fl
+@@ -3927,10 +3935,10 @@
+ .fl
+ .fi
+ .LP
+-To also traverse down other package trees, append their names to the \f2\-subpackages\fP argument, such as \f2java:javax:org.xml.sax\fP.
++To also traverse down other package trees, append their names to the \f2\-subpackages\fP argument, such as \f2java:javax:org.xml.sax\fP.
+ .TP 2
+ o
+-\f3Case 2 \- Run on explicit packages after changing to the "root" source directory\fP \- Change to the parent directory of the fully\-qualified package. Then run javadoc, supplying names of one or more packages you want to document:
++\f3Case 2 \- Run on explicit packages after changing to the "root" source directory\fP \- Change to the parent directory of the fully\-qualified package. Then run javadoc, supplying names of one or more packages you want to document:
+ .nf
+ \f3
+ .fl
+@@ -3941,7 +3949,7 @@
+ .fi
+ .TP 2
+ o
+-\f3Case 3 \- Run from any directory on explicit packages in a single directory tree\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying \f2\-sourcepath\fP with the parent directory of the top\-level package, and supplying names of one or more packages you want to document:
++\f3Case 3 \- Run from any directory on explicit packages in a single directory tree\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying \f2\-sourcepath\fP with the parent directory of the top\-level package, and supplying names of one or more packages you want to document:
+ .nf
+ \f3
+ .fl
+@@ -3950,7 +3958,7 @@
+ .fi
+ .TP 2
+ o
+-\f3Case 4 \- Run from any directory on explicit packages in multiple directory trees\fP \- This is the same as case 3, but for packages in separate directory trees. Run javadoc supplying \f2\-sourcepath\fP with the path to each tree's root (colon\-separated) and supply names of one or more packages you want to document. All source files for a given package do not need to be located under a single root directory \-\- they just need to be found somewhere along the sourcepath.
++\f3Case 4 \- Run from any directory on explicit packages in multiple directory trees\fP \- This is the same as case 3, but for packages in separate directory trees. Run javadoc supplying \f2\-sourcepath\fP with the path to each tree's root (colon\-separated) and supply names of one or more packages you want to document. All source files for a given package do not need to be located under a single root directory \-\- they just need to be found somewhere along the sourcepath.
+ .nf
+ \f3
+ .fl
+@@ -3960,14 +3968,14 @@
+ .RE
+ .LP
+ Result: All cases generate HTML\-formatted documentation for the public and protected classes and interfaces in packages \f2java.awt\fP and \f2java.awt.event\fP and save the HTML files in the specified destination directory (\f2/home/html\fP). Because two or more packages are being generated, the document has three HTML frames \-\- for the list of packages, the list of classes, and the main class pages.
+-.SS
++.SS
+ Documenting One or More Classes
+ .LP
+ The second way to run the Javadoc tool is by passing in one or more source files (\f2.java\fP). You can run javadoc either of the following two ways \-\- by changing directories (with \f2cd\fP) or by fully\-specifying the path to the \f2.java\fP files. Relative paths are relative to the current directory. The \f2\-sourcepath\fP option is ignored when passing in source files. You can use command line wildcards, such as asterisk (*), to specify groups of classes.
+ .RS 3
+ .TP 2
+ o
+-\f3Case 1 \- Changing to the source directory\fP \- Change to the directory holding the \f2.java\fP files. Then run javadoc, supplying names of one or more source files you want to document.
++\f3Case 1 \- Changing to the source directory\fP \- Change to the directory holding the \f2.java\fP files. Then run javadoc, supplying names of one or more source files you want to document.
+ .nf
+ \f3
+ .fl
+@@ -3976,10 +3984,10 @@
+ % \f3javadoc \-d /home/html Button.java Canvas.java Graphics*.java\fP
+ .fl
+ .fi
+-This example generates HTML\-formatted documentation for the classes \f2Button\fP, \f2Canvas\fP and classes beginning with \f2Graphics\fP. Because source files rather than package names were passed in as arguments to javadoc, the document has two frames \-\- for the list of classes and the main page.
++This example generates HTML\-formatted documentation for the classes \f2Button\fP, \f2Canvas\fP and classes beginning with \f2Graphics\fP. Because source files rather than package names were passed in as arguments to javadoc, the document has two frames \-\- for the list of classes and the main page.
+ .TP 2
+ o
+-\f3Case 2 \- Changing to the package root directory\fP \- This is useful for documenting individual source files from different subpackages off the same root. Change to the package root directory, and supply the source files with paths from the root.
++\f3Case 2 \- Changing to the package root directory\fP \- This is useful for documenting individual source files from different subpackages off the same root. Change to the package root directory, and supply the source files with paths from the root.
+ .nf
+ \f3
+ .fl
+@@ -3988,19 +3996,19 @@
+ % \f3javadoc \-d /home/html java/awt/Button.java java/applet/Applet.java\fP
+ .fl
+ .fi
+-This example generates HTML\-formatted documentation for the classes \f2Button\fP and \f2Applet\fP.
++This example generates HTML\-formatted documentation for the classes \f2Button\fP and \f2Applet\fP.
+ .TP 2
+ o
+-\f3Case 3 \- From any directory\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying the absolute path (or path relative to the current directory) to the \f2.java\fP files you want to document.
++\f3Case 3 \- From any directory\fP \- In this case, it doesn't matter what the current directory is. Run javadoc supplying the absolute path (or path relative to the current directory) to the \f2.java\fP files you want to document.
+ .nf
+ \f3
+ .fl
+ % \fP\f3javadoc \-d /home/html /home/src/java/awt/Button.java /home/src/java/awt/Graphics*.java\fP
+ .fl
+ .fi
+-This example generates HTML\-formatted documentation for the class \f2Button\fP and classes beginning with \f2Graphics\fP.
++This example generates HTML\-formatted documentation for the class \f2Button\fP and classes beginning with \f2Graphics\fP.
+ .RE
+-.SS
++.SS
+ Documenting Both Packages and Classes
+ .LP
+ You can document entire packages and individual classes at the same time. Here's an example that mixes two of the previous examples. You can use \f2\-sourcepath\fP for the path to the packages but not for the path to the individual classes.
+@@ -4017,28 +4025,28 @@
+ The Javadoc tool has many useful options, some of which are more commonly used than others. Here is effectively the command we use to run the Javadoc tool on the Java platform API. We use 180MB of memory to generate the documentation for the 1500 (approx.) public and protected classes in the Java SE Platform, Standard Edition, v1.2.
+ .LP
+ The same example is shown twice \-\- first as executed on the command line, then as executed from a makefile. It uses absolute paths in the option arguments, which enables the same \f2javadoc\fP command to be run from any directory.
+-.SS
++.SS
+ Command Line Example
+ .LP
+ The following example may be too long for some shells such as DOS. You can use a command line argument file (or write a shell script) to workaround this limitation.
+ .nf
+ \f3
+ .fl
+-% javadoc \-sourcepath /java/jdk/src/share/classes \\
++% javadoc \-sourcepath /java/jdk/src/share/classes \\
+ .fl
+- \-overview /java/jdk/src/share/classes/overview.html \\
++ \-overview /java/jdk/src/share/classes/overview.html \\
+ .fl
+- \-d /java/jdk/build/api \\
++ \-d /java/jdk/build/api \\
+ .fl
+- \-use \\
++ \-use \\
+ .fl
+- \-splitIndex \\
++ \-splitIndex \\
+ .fl
+- \-windowtitle 'Java Platform, Standard Edition 7 API Specification' \\
++ \-windowtitle 'Java Platform, Standard Edition 7 API Specification' \\
+ .fl
+- \-doctitle 'Java Platform, Standard Edition 7 API Specification' \\
++ \-doctitle 'Java Platform, Standard Edition 7 API Specification' \\
+ .fl
+- \-header '<b>Java(TM) SE 7</b>' \\
++ \-header '<b>Java(TM) SE 7</b>' \\
+ .fl
+ \-bottom '<font size="\-1">
+ .fl
+@@ -4048,13 +4056,13 @@
+ .fl
+ Oracle is a registered trademark of Oracle Corporation and/or its affiliates.
+ .fl
+- Other names may be trademarks of their respective owners.</font>' \\
++ Other names may be trademarks of their respective owners.</font>' \\
+ .fl
+- \-group "Core Packages" "java.*:com.sun.java.*:org.omg.*" \\
++ \-group "Core Packages" "java.*:com.sun.java.*:org.omg.*" \\
+ .fl
+- \-group "Extension Packages" "javax.*" \\
++ \-group "Extension Packages" "javax.*" \\
+ .fl
+- \-J\-Xmx180m \\
++ \-J\-Xmx180m \\
+ .fl
+ @packages
+ .fl
+@@ -4062,10 +4070,10 @@
+ .fi
+ .LP
+ where \f2packages\fP is the name of a file containing the packages to process, such as \f2java.applet java.lang\fP. None of the options should contain any newline characters between the single quotes. (For example, if you copy and paste this example, delete the newline characters from the \f2\-bottom\fP option.) See the other notes listed below.
+-.SS
++.SS
+ Makefile Example
+ .LP
+-This is an example of a GNU makefile. For an example of a Windows makefile, see
++This is an example of a GNU makefile. For an example of a Windows makefile, see
+ .na
+ \f2creating a makefile for Windows\fP @
+ .fi
+@@ -4099,11 +4107,11 @@
+ .fl
+ java.lang java.lang.reflect \\ /* Sets packages to document */
+ .fl
+- java.util java.io java.net \\
++ java.util java.io java.net \\
+ .fl
+ java.applet
+ .fl
+-
++
+ .fl
+ WINDOWTITLE = 'Java(TM) SE 7 API Specification'
+ .fl
+@@ -4136,91 +4144,91 @@
+ .RS 3
+ .TP 2
+ o
+-If you omit the \f2\-windowtitle\fP option, the Javadoc tool copies the doc title to the window title. The \f2\-windowtitle\fP text is basically the same as the \f2\-doctitle\fP but without HTML tags, to prevent those tags from appearing as raw text in the window title.
++If you omit the \f2\-windowtitle\fP option, the Javadoc tool copies the doc title to the window title. The \f2\-windowtitle\fP text is basically the same as the \f2\-doctitle\fP but without HTML tags, to prevent those tags from appearing as raw text in the window title.
+ .TP 2
+ o
+-If you omit the \f2\-footer\fP option, as done here, the Javadoc tool copies the header text to the footer.
++If you omit the \f2\-footer\fP option, as done here, the Javadoc tool copies the header text to the footer.
+ .TP 2
+ o
+-Other important options you might want to use but not needed in this example are \-\f2classpath\fP and \-\f2link\fP.
++Other important options you might want to use but not needed in this example are \-\f2classpath\fP and \-\f2link\fP.
+ .RE
+ .SH "TROUBLESHOOTING"
+-.SS
++.SS
+ General Troubleshooting
+ .RS 3
+ .TP 2
+ o
+-\f3Javadoc FAQ\fP \- Commonly\-encountered bugs and troubleshooting tips can be found on the
++\f3Javadoc FAQ\fP \- Commonly\-encountered bugs and troubleshooting tips can be found on the
+ .na
+ \f2Javadoc FAQ\fP @
+ .fi
+-http://java.sun.com/j2se/javadoc/faq/index.html#B
++http://java.sun.com/j2se/javadoc/faq/index.html#B
+ .TP 2
+ o
+-\f3Bugs and Limitations\fP \- You can also see some bugs listed at Important Bug Fixes and Changes.
++\f3Bugs and Limitations\fP \- You can also see some bugs listed at Important Bug Fixes and Changes.
+ .TP 2
+ o
+-\f3Version number\fP \- See version numbers.
++\f3Version number\fP \- See version numbers.
+ .TP 2
+ o
+-\f3Documents only legal classes\fP \- When documenting a package, javadoc only reads files whose names are composed of legal class names. You can prevent javadoc from parsing a file by including, for example, a hyphen "\-" in its filename.
++\f3Documents only legal classes\fP \- When documenting a package, javadoc only reads files whose names are composed of legal class names. You can prevent javadoc from parsing a file by including, for example, a hyphen "\-" in its filename.
+ .RE
+-.SS
++.SS
+ Errors and Warnings
+ .LP
+ Error and warning messages contain the filename and line number to the declaration line rather than to the particular line in the doc comment.
+ .RS 3
+ .TP 2
+ o
+-\f2"error: cannot read: Class1.java"\fP the Javadoc tool is trying to load the class Class1.java in the current directory. The class name is shown with its path (absolute or relative), which in this case is the same as \f2./Class1.java\fP.
++\f2"error: cannot read: Class1.java"\fP the Javadoc tool is trying to load the class Class1.java in the current directory. The class name is shown with its path (absolute or relative), which in this case is the same as \f2./Class1.java\fP.
+ .RE
+ .SH "ENVIRONMENT"
+ .RS 3
+ .TP 3
+-CLASSPATH
+-Environment variable that provides the path which javadoc uses to find user class files. This environment variable is overridden by the \f2\-classpath\fP option. Separate directories with a colon, for example:
+-.:/home/classes:/usr/local/java/classes
++CLASSPATH
++Environment variable that provides the path which javadoc uses to find user class files. This environment variable is overridden by the \f2\-classpath\fP option. Separate directories with a colon, for example:
++.:/home/classes:/usr/local/java/classes
+ .RE
+ .SH "SEE ALSO"
+ .RS 3
+ .TP 2
+ o
+-javac(1)
++javac(1)
+ .TP 2
+ o
+-java(1)
++java(1)
+ .TP 2
+ o
+-jdb(1)
++jdb(1)
+ .TP 2
+ o
+-javah(1)
++javah(1)
+ .TP 2
+ o
+-javap(1)
++javap(1)
+ .TP 2
+ o
+ .na
+ \f2Javadoc Home Page\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-jsp\-135444.html
++http://www.oracle.com/technetwork/java/javase/documentation/index\-jsp\-135444.html
+ .TP 2
+ o
+ .na
+ \f2How to Write Doc Comments for Javadoc\fP @
+ .fi
+-http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html
++http://www.oracle.com/technetwork/java/javase/documentation/index\-137868.html
+ .TP 2
+ o
+ .na
+ \f2Setting the Class Path\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#general
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#general
+ .TP 2
+ o
+ .na
+ \f2How Javac and Javadoc Find Classes\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles (tools.jar)
++http://docs.oracle.com/javase/7/docs/technotes/tools/findingclasses.html#srcfiles (tools.jar)
+ .RE
+-
++
+--- jdk/src/bsd/doc/man/javah.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/javah.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javah 1 "10 May 2011"
++.TH javah 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -57,29 +57,29 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-o outputfile
+-Concatenates the resulting header or source files for all the classes listed on the command line into \f2outputfile\fP. Only one of \f3\-o\fP or \f3\-d\fP may be used.
++\-o outputfile
++Concatenates the resulting header or source files for all the classes listed on the command line into \f2outputfile\fP. Only one of \f3\-o\fP or \f3\-d\fP may be used.
+ .TP 3
+-\-d directory
+-Sets the directory where \f3javah\fP saves the header files or the stub files. Only one of \f3\-d\fP or \f3\-o\fP may be used.
++\-d directory
++Sets the directory where \f3javah\fP saves the header files or the stub files. Only one of \f3\-d\fP or \f3\-o\fP may be used.
+ .TP 3
+-\-stubs
+-Causes \f3javah\fP to generate C declarations from the Java object file.
++\-stubs
++Causes \f3javah\fP to generate C declarations from the Java object file.
+ .TP 3
+-\-verbose
+-Indicates verbose output and causes \f3javah\fP to print a message to stdout concerning the status of the generated files.
++\-verbose
++Indicates verbose output and causes \f3javah\fP to print a message to stdout concerning the status of the generated files.
+ .TP 3
+-\-help
+-Print help message for \f3javah\fP usage.
++\-help
++Print help message for \f3javah\fP usage.
+ .TP 3
+-\-version
+-Print out \f3javah\fP version information.
++\-version
++Print out \f3javah\fP version information.
+ .TP 3
+-\-jni
+-Causes \f3javah\fP to create an output file containing JNI\-style native method function prototypes. This is the default output, so use of \f3\-jni\fP is optional.
++\-jni
++Causes \f3javah\fP to create an output file containing JNI\-style native method function prototypes. This is the default output, so use of \f3\-jni\fP is optional.
+ .TP 3
+-\-classpath path
+-Specifies the path \f3javah\fP uses to look up classes. Overrides the default or the CLASSPATH environment variable if it is set. Directories are separated by colons. Thus the general format for \f2path\fP is:
++\-classpath path
++Specifies the path \f3javah\fP uses to look up classes. Overrides the default or the CLASSPATH environment variable if it is set. Directories are separated by colons. Thus the general format for \f2path\fP is:
+ .nf
+ \f3
+ .fl
+@@ -87,7 +87,7 @@
+ .fl
+ \fP
+ .fi
+-For example:
++For example:
+ .nf
+ \f3
+ .fl
+@@ -98,19 +98,19 @@
+ As a special convenience, a class path element containing a basename of \f2*\fP is considered equivalent to specifying a list of all the files in the directory with the extension \f2.jar\fP or \f2.JAR\fP (a java program cannot tell the difference between the two invocations).
+ .br
+ .br
+-For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
++For example, if directory \f2foo\fP contains \f2a.jar\fP and \f2b.JAR\fP, then the class path element \f2foo/*\fP is expanded to a \f2A.jar:b.JAR\fP, except that the order of jar files is unspecified. All jar files in the specified directory, even hidden ones, are included in the list. A classpath entry consisting simply of \f2*\fP expands to a list of all the jar files in the current directory. The \f2CLASSPATH\fP environment variable, where defined, will be similarly expanded. Any classpath wildcard expansion occurs before the Java virtual machine is started \-\- no Java program will ever see unexpanded wildcards except by querying the environment. For example; by invoking \f2System.getenv("CLASSPATH")\fP.
+ .TP 3
+-\-bootclasspath path
+-Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java 2 platform located in \f2jre/lib/rt.jar\fP and several other jar files.
++\-bootclasspath path
++Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java 2 platform located in \f2jre/lib/rt.jar\fP and several other jar files.
+ .TP 3
+-\-old
+-Specifies that old JDK1.0\-style header files should be generated.
++\-old
++Specifies that old JDK1.0\-style header files should be generated.
+ .TP 3
+-\-force
+-Specifies that output files should always be written.
++\-force
++Specifies that output files should always be written.
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
+ .RE
+
+ .LP
+@@ -118,8 +118,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-CLASSPATH
+-Used to provide the system a path to user\-defined classes. Directories are separated by colons, for example,
++CLASSPATH
++Used to provide the system a path to user\-defined classes. Directories are separated by colons, for example,
+ .nf
+ \f3
+ .fl
+@@ -135,4 +135,4 @@
+ .LP
+ javac(1), java(1), jdb(1), javap(1), javadoc(1)
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/javap.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/javap.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javap 1 "10 May 2011"
++.TH javap 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -46,11 +46,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options.
++options
++Command\-line options.
+ .TP 3
+-classes
+-List of one or more classes (separated by spaces) to be processed for annotations (such as \f2DocFooter.class\fP). You may specify a class that can be found in the class path, by its file name (for example, \f2/home/user/myproject/src/DocFooter.class\fP), or with a URL (for example, \f2file:///home/user/myproject/src/DocFooter.class\fP).
++classes
++List of one or more classes (separated by spaces) to be processed for annotations (such as \f2DocFooter.class\fP). You may specify a class that can be found in the class path, by its file name (for example, \f2/home/user/myproject/src/DocFooter.class\fP), or with a URL (for example, \f2file:///home/user/myproject/src/DocFooter.class\fP).
+ .RE
+
+ .LP
+@@ -148,11 +148,11 @@
+ .fl
+ Code:
+ .fl
+- 0: aload_0
++ 0: aload_0
+ .fl
+ 1: invokespecial #1 // Method java/applet/Applet."<init>":()V
+ .fl
+- 4: return
++ 4: return
+ .fl
+
+ .fl
+@@ -160,7 +160,7 @@
+ .fl
+ Code:
+ .fl
+- 0: aload_0
++ 0: aload_0
+ .fl
+ 1: sipush 500
+ .fl
+@@ -168,9 +168,9 @@
+ .fl
+ 6: invokevirtual #2 // Method resize:(II)V
+ .fl
+- 9: aload_0
++ 9: aload_0
+ .fl
+- 10: aload_0
++ 10: aload_0
+ .fl
+ 11: ldc #3 // String LAST_UPDATED
+ .fl
+@@ -178,9 +178,9 @@
+ .fl
+ 16: putfield #5 // Field date:Ljava/lang/String;
+ .fl
+- 19: aload_0
++ 19: aload_0
+ .fl
+- 20: aload_0
++ 20: aload_0
+ .fl
+ 21: ldc #6 // String EMAIL
+ .fl
+@@ -188,7 +188,7 @@
+ .fl
+ 26: putfield #7 // Field email:Ljava/lang/String;
+ .fl
+- 29: return
++ 29: return
+ .fl
+
+ .fl
+@@ -196,21 +196,21 @@
+ .fl
+ Code:
+ .fl
+- 0: aload_1
++ 0: aload_1
+ .fl
+ 1: new #8 // class java/lang/StringBuilder
+ .fl
+- 4: dup
++ 4: dup
+ .fl
+ 5: invokespecial #9 // Method java/lang/StringBuilder."<init>":()V
+ .fl
+- 8: aload_0
++ 8: aload_0
+ .fl
+ 9: getfield #5 // Field date:Ljava/lang/String;
+ .fl
+ 12: invokevirtual #10 // Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
+ .fl
+- 15: ldc #11 // String by
++ 15: ldc #11 // String by
+ .fl
+ 17: invokevirtual #10 // Method java/lang/StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
+ .fl
+@@ -222,9 +222,9 @@
+ .fl
+ 27: invokevirtual #13 // Method java/awt/Graphics.drawString:(Ljava/lang/String;II)V
+ .fl
+- 30: aload_1
++ 30: aload_1
+ .fl
+- 31: aload_0
++ 31: aload_0
+ .fl
+ 32: getfield #7 // Field email:Ljava/lang/String;
+ .fl
+@@ -234,7 +234,7 @@
+ .fl
+ 40: invokevirtual #13 // Method java/awt/Graphics.drawString:(Ljava/lang/String;II)V
+ .fl
+- 43: return
++ 43: return
+ .fl
+ }
+ .fl
+@@ -246,29 +246,29 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-help \-\-help \-?
+-Prints out help message for \f3javap\fP.
++\-help \-\-help \-?
++Prints out help message for \f3javap\fP.
+ .TP 3
+-\-version
+-Prints out version information.
++\-version
++Prints out version information.
+ .TP 3
+-\-l
+-Prints out line and local variable tables.
++\-l
++Prints out line and local variable tables.
+ .TP 3
+-\-public
+-Shows only public classes and members.
++\-public
++Shows only public classes and members.
+ .TP 3
+-\-protected
+-Shows only protected and public classes and members.
++\-protected
++Shows only protected and public classes and members.
+ .TP 3
+-\-package
+-Shows only package, protected, and public classes and members. This is the default.
++\-package
++Shows only package, protected, and public classes and members. This is the default.
+ .TP 3
+-\-private \-p
+-Shows all classes and members.
++\-private \-p
++Shows all classes and members.
+ .TP 3
+-\-Jflag
+-Pass \f2flag\fP directly to the runtime system. Some examples:
++\-Jflag
++Pass \f2flag\fP directly to the runtime system. Some examples:
+ .nf
+ \f3
+ .fl
+@@ -279,33 +279,33 @@
+ \fP
+ .fi
+ .TP 3
+-\-s
+-Prints internal type signatures.
++\-s
++Prints internal type signatures.
+ .TP 3
+-\-sysinfo
+-Shows system information (path, size, date, MD5 hash) of the class being processed.
++\-sysinfo
++Shows system information (path, size, date, MD5 hash) of the class being processed.
+ .TP 3
+-\-constants
+-Shows static final constants.
++\-constants
++Shows static final constants.
+ .TP 3
+-\-c
+-Prints out disassembled code, i.e., the instructions that comprise the Java bytecodes, for each of the methods in the class. These are documented in the
++\-c
++Prints out disassembled code, i.e., the instructions that comprise the Java bytecodes, for each of the methods in the class. These are documented in the
+ .na
+ \f2Java Virtual Machine Specification\fP @
+ .fi
+-http://java.sun.com/docs/books/vmspec/.
++http://java.sun.com/docs/books/vmspec/.
+ .TP 3
+-\-verbose
+-Prints stack size, number of \f2locals\fP and \f2args\fP for methods.
++\-verbose
++Prints stack size, number of \f2locals\fP and \f2args\fP for methods.
+ .TP 3
+-\-classpath path
+-Specifies the path \f3javap\fP uses to look up classes. Overrides the default or the CLASSPATH environment variable if it is set.
++\-classpath path
++Specifies the path \f3javap\fP uses to look up classes. Overrides the default or the CLASSPATH environment variable if it is set.
+ .TP 3
+-\-bootclasspath path
+-Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java platform located in \f2jre/lib/rt.jar\fP and several other jar files.
++\-bootclasspath path
++Specifies path from which to load bootstrap classes. By default, the bootstrap classes are the classes implementing the core Java platform located in \f2jre/lib/rt.jar\fP and several other jar files.
+ .TP 3
+-\-extdirs dirs
+-Overrides location at which installed extensions are searched for. The default location for extensions is the value of \f2java.ext.dirs\fP.
++\-extdirs dirs
++Overrides location at which installed extensions are searched for. The default location for extensions is the value of \f2java.ext.dirs\fP.
+ .RE
+
+ .LP
+@@ -314,4 +314,4 @@
+ .LP
+ javac(1), java(1), jdb(1), javah(1), javadoc(1)
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/javaws.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/javaws.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH javaws 1 "10 May 2011"
++.TH javaws 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -204,19 +204,19 @@
+ .SH "FILES"
+ .LP
+ .LP
+-For information about the user and system cache and deployment.properties files, see
++For information about the user and system cache and deployment.properties files, see
+ .na
+ \f2System\- and User\-Level Properties\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/properties.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/properties.html.
+ .LP
+ .SH "MORE INFORMATION"
+ .LP
+ .LP
+-For more information about Java Web Start, see
++For more information about Java Web Start, see
+ .na
+ \f2Java Web Start\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/javaws/index.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/javaws/index.html.
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jcmd.1 1969-12-31 16:00:00.000000000 -0800
++++ jdk/src/bsd/doc/man/jcmd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -0,0 +1,118 @@
++." Copyright (c) 1994, 2012, Oracle and/or its affiliates. All rights reserved.
++." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++."
++." This code is free software; you can redistribute it and/or modify it
++." under the terms of the GNU General Public License version 2 only, as
++." published by the Free Software Foundation.
++."
++." This code is distributed in the hope that it will be useful, but WITHOUT
++." ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++." FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++." version 2 for more details (a copy is included in the LICENSE file that
++." accompanied this code).
++."
++." You should have received a copy of the GNU General Public License version
++." 2 along with this work; if not, write to the Free Software Foundation,
++." Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++."
++." Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++." or visit www.oracle.com if you need additional information or have any
++." questions.
++."
++.TH jcmd 1 "10 Jul 2012"
++
++.LP
++.SH "Name"
++jcmd \- Diagnostic Command
++.LP
++.LP
++\f3jcmd\fP is a utility to send diagnostic command requests to a running Java Virtual Machine.
++.LP
++.SH "SYNOPSIS"
++.LP
++.nf
++\f3
++.fl
++ \fP\f3jcmd\fP [ option ]
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> PerfCounter.print
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> \f2command\fP [\f2arguments\fP]
++.fl
++ \f3jcmd\fP <\f2pid\fP | \f2main class\fP> \-f \f2file\fP
++.fl
++.fi
++
++.LP
++.SH "DESCRIPTION"
++.LP
++.LP
++\f3jcmd\fP is a utility to send diagnostic command requests to a Java Virtual Machine supporting this feature.
++.LP
++.LP
++Used without arguments or with the \-l option, jcmd prints the list of running Java processes with their process id, their main class and their command line arguments.
++.LP
++.LP
++When a process id is specified on the command line, jcmd sends the diagnostic command request to the process with this id.
++.LP
++.LP
++When a main class is specified on the command line, jcmd sends the diagnostic command request to all Java processes for which the command line argument is a substring of the Java process' main class.
++.LP
++.LP
++With the PerfCounter.print argument, jcmd prints the performance counters available on the targeted Java process(es).
++.LP
++.LP
++With the \-f option, jcmd sends to the targeted Java process(es) the diagnostic commands stored in the file \f2file\fP.
++.LP
++.SH "OPTIONS"
++.LP
++.LP
++Options are mutually exclusive. Options, if used, should follow immediately after the command name.
++.LP
++.RS 3
++.TP 3
++\-l
++Prints the list of running Java processes with their process id, their main class and their command line arguments.
++.TP 3
++\-h
++Prints a help message.
++.TP 3
++\-help
++Prints a help message.
++.RE
++
++.LP
++.SH "PARAMETERS"
++.LP
++.RS 3
++.TP 3
++pid
++Identifies the process that receives the diagnostic command requests. The process must be a Java process. To get a list of Java processes running on a machine, use jps(1) or jcmd(1).
++.TP 3
++main class
++Main class of the process that receives the diagnostic command requests. When matching processes, any process whose main class name contains the specified string as a substring will be matched. If several running Java processes share this main class, the diagnostic command request is sent to all these processes. To get a list of Java processes running on a machine, use jps(1) or jcmd(1).
++.TP 3
++command [arguments]
++Invoke the diagnostic command called \f2command\fP on the targeted Java process(es). The list of available diagnostic commands for a given process can be obtained by invoking the \f3help\fP command on this process. Each diagnostic command has its own set of \f2arguments\fP, which can be obtained by invoking the the command name followed by \f3help\fP.
++.TP 3
++PerfCounter.print
++Print the performance counters available on the targeted Java process(es). The list of performance counters may vary with the Java process.
++.TP 3
++\-f file
++Read commands from \f2file\fP and invoke them on the targeted Java process(es). In \f2file\fP, each command must be written on a single line. Lines starting with # are ignored. Processing of \f2file\fP ends when all lines have been invoked or when a line containing the \f3stop\fP keyword is read.
++.RE
++
++.LP
++.SH "SEE ALSO"
++.LP
++.RS 3
++.TP 2
++o
++jps(1)
++.RE
++
++.LP
++.LP
++jps(1)
++.LP
++
+--- jdk/src/bsd/doc/man/jconsole.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jconsole.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jconsole 1 "10 May 2011"
++.TH jconsole 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -41,32 +41,32 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Options, if used, should follow immediately after the command name.
++options
++Options, if used, should follow immediately after the command name.
+ .TP 3
+-connection = pid | host:port | jmxUrl
++connection = pid | host:port | jmxUrl
+ .RS 3
+ .TP 2
+ o
+-\f2pid\fP Process ID of a local Java VM. The Java VM must be running with the same user ID as the user ID running jconsole. See
++\f2pid\fP Process ID of a local Java VM. The Java VM must be running with the same user ID as the user ID running jconsole. See
+ .na
+ \f2JMX Monitoring and Management\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/management/agent.html for details.
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html for details.
+ .TP 2
+ o
+-\f2host\fP:\f2port\fP Name of the host system on which the Java VM is running and the port number specified by the system property \f2com.sun.management.jmxremote.port\fP when the Java VM was started. See
++\f2host\fP:\f2port\fP Name of the host system on which the Java VM is running and the port number specified by the system property \f2com.sun.management.jmxremote.port\fP when the Java VM was started. See
+ .na
+ \f2JMX Monitoring and Management\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/management/agent.html for details.
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/agent.html for details.
+ .TP 2
+ o
+-\f2jmxUrl\fP Address of the JMX agent to be connected to as described in
++\f2jmxUrl\fP Address of the JMX agent to be connected to as described in
+ .na
+ \f2JMXServiceURL\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/javax/management/remote/JMXServiceURL.html.
++http://docs.oracle.com/javase/7/docs/api/javax/management/remote/JMXServiceURL.html.
+ .RE
+ .RE
+
+@@ -83,13 +83,13 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-interval=n
+-Set the update interval to \f2n\fP seconds (default is 4 seconds).
++\-interval=n
++Set the update interval to \f2n\fP seconds (default is 4 seconds).
+ .TP 3
+-\-notile
+-Do not tile windows initially (for two or more connections).
++\-notile
++Do not tile windows initially (for two or more connections).
+ .TP 3
+-\-pluginpath plugins
++\-pluginpath plugins
+ Specify a list of directories or JAR files which are searched for JConsole plugins. The \f2plugins\fP path should contain a provider\-configuration file named:
+ .br
+ .nf
+@@ -99,20 +99,20 @@
+ .fl
+ \fP
+ .fi
+-containing one line for each plugin specifying the fully qualified class name of the class implementing the
++containing one line for each plugin specifying the fully qualified class name of the class implementing the
+ .na
+ \f2com.sun.tools.jconsole.JConsolePlugin\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/jdk/api/jconsole/spec/com/sun/tools/jconsole/JConsolePlugin.html class.
++http://docs.oracle.com/javase/7/docs/jdk/api/jconsole/spec/com/sun/tools/jconsole/JConsolePlugin.html class.
+ .TP 3
+-\-version
+-Output version information and exit.
++\-version
++Output version information and exit.
+ .TP 3
+-\-help
+-Output help message and exit.
++\-help
++Output help message and exit.
+ .TP 3
+-\-J<flag>
+-Pass <flag> to the Java virtual machine on which jconsole is run.
++\-J<flag>
++Pass <flag> to the Java virtual machine on which jconsole is run.
+ .RE
+
+ .LP
+@@ -124,14 +124,14 @@
+ .na
+ \f2Using JConsole\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/management/jconsole.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/jconsole.html
+ .TP 2
+ o
+ .na
+ \f2Monitoring and Management for Java Platform\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/management/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/management/index.html
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jdb.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jdb.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jdb 1 "10 May 2011"
++.TH jdb 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -33,34 +33,34 @@
+ .nf
+ \f3
+ .fl
+-\fP\f3jdb\fP [ options ] [ class ] [ arguments ]
++\fP\f3jdb\fP [ options ] [ class ] [ arguments ]
+ .fl
+ .fi
+
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options, as specified below.
++options
++Command\-line options, as specified below.
+ .TP 3
+-class
+-Name of the class to begin debugging.
++class
++Name of the class to begin debugging.
+ .TP 3
+-arguments
+-Arguments passed to the \f2main()\fP method of \f2class\fP.
++arguments
++Arguments passed to the \f2main()\fP method of \f2class\fP.
+ .RE
+
+ .LP
+ .SH "DESCRIPTION"
+ .LP
+ .LP
+-The Java Debugger, \f3jdb\fP, is a simple command\-line debugger for Java classes. It is a demonstration of the
++The Java Debugger, \f3jdb\fP, is a simple command\-line debugger for Java classes. It is a demonstration of the
+ .na
+ \f2Java Platform Debugger Architecture\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jpda/index.html that provides inspection and debugging of a local or remote Java Virtual Machine.
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/index.html that provides inspection and debugging of a local or remote Java Virtual Machine.
+ .LP
+-.SS
++.SS
+ Starting a jdb Session
+ .LP
+ .LP
+@@ -69,7 +69,7 @@
+ .nf
+ \f3
+ .fl
+- % jdb MyClass
++ % jdb MyClass
+ .fl
+ \fP
+ .fi
+@@ -108,7 +108,7 @@
+ .nf
+ \f3
+ .fl
+- % jdb \-attach 8000
++ % jdb \-attach 8000
+ .fl
+ \fP
+ .fi
+@@ -118,17 +118,17 @@
+ Note that "MyClass" is not specified in the \f3jdb\fP command line in this case because \f3jdb\fP is connecting to an existing VM instead of launching a new one.
+ .LP
+ .LP
+-There are many other ways to connect the debugger to a VM, and all of them are supported by \f3jdb\fP. The Java Platform Debugger Architecture has additional
++There are many other ways to connect the debugger to a VM, and all of them are supported by \f3jdb\fP. The Java Platform Debugger Architecture has additional
+ .na
+ \f2documentation\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html on these connection options. For information on starting a J2SE 1.4.2 or early VM for use with \f3jdb\fP see the
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html on these connection options. For information on starting a J2SE 1.4.2 or early VM for use with \f3jdb\fP see the
+ .na
+ \f21.4.2 documentation\fP @
+ .fi
+ http://java.sun.com/j2se/1.4.2/docs/guide/jpda/conninv.html
+ .LP
+-.SS
++.SS
+ Basic jdb Commands
+ .LP
+ .LP
+@@ -136,49 +136,49 @@
+ .LP
+ .RS 3
+ .TP 3
+-help, or ?
+-The most important \f3jdb\fP command, \f2help\fP displays the list of recognized commands with a brief description.
++help, or ?
++The most important \f3jdb\fP command, \f2help\fP displays the list of recognized commands with a brief description.
+ .TP 3
+-run
+-After starting \f3jdb\fP, and setting any necessary breakpoints, you can use this command to start the execution the debugged application. This command is available only when \f3jdb\fP launches the debugged application (as opposed to attaching to an existing VM).
++run
++After starting \f3jdb\fP, and setting any necessary breakpoints, you can use this command to start the execution the debugged application. This command is available only when \f3jdb\fP launches the debugged application (as opposed to attaching to an existing VM).
+ .TP 3
+-cont
+-Continues execution of the debugged application after a breakpoint, exception, or step.
++cont
++Continues execution of the debugged application after a breakpoint, exception, or step.
+ .TP 3
+-print
++print
+ Displays Java objects and primitive values. For variables or fields of primitive types, the actual value is printed. For objects, a short description is printed. See the \f2dump\fP command below for getting more information about an object.
+ .br
+ .br
+ \f2NOTE: To display local variables, the containing class must have been compiled with the \fP\f2javac(1)\fP\f2 \fP\f2\-g\fP option.
+ .br
+ .br
+-\f2print\fP supports many simple Java expressions including those with method invocations, for example:
++\f2print\fP supports many simple Java expressions including those with method invocations, for example:
+ .RS 3
+ .TP 2
+ o
+-\f2print MyClass.myStaticField\fP
++\f2print MyClass.myStaticField\fP
+ .TP 2
+ o
+-\f2print myObj.myInstanceField\fP
++\f2print myObj.myInstanceField\fP
+ .TP 2
+ o
+-\f2print i + j + k\fP \f2(i, j, k are primities and either fields or local variables)\fP
++\f2print i + j + k\fP \f2(i, j, k are primities and either fields or local variables)\fP
+ .TP 2
+ o
+-\f2print myObj.myMethod()\fP \f2(if myMethod returns a non\-null)\fP
++\f2print myObj.myMethod()\fP \f2(if myMethod returns a non\-null)\fP
+ .TP 2
+ o
+-\f2print new java.lang.String("Hello").length()\fP
++\f2print new java.lang.String("Hello").length()\fP
+ .RE
+ .TP 3
+-dump
++dump
+ For primitive values, this command is identical to \f2print\fP. For objects, it prints the current value of each field defined in the object. Static and instance fields are included.
+ .br
+ .br
+-The \f2dump\fP command supports the same set of expressions as the \f2print\fP command.
++The \f2dump\fP command supports the same set of expressions as the \f2print\fP command.
+ .TP 3
+-threads
+-List the threads that are currently running. For each thread, its name and current status are printed, as well as an index that can be used for other commands, for example:
++threads
++List the threads that are currently running. For each thread, its name and current status are printed, as well as an index that can be used for other commands, for example:
+ .nf
+ \f3
+ .fl
+@@ -186,20 +186,20 @@
+ .fl
+ \fP
+ .fi
+-In this example, the thread index is 4, the thread is an instance of java.lang.Thread, the thread name is "main", and it is currently running,
++In this example, the thread index is 4, the thread is an instance of java.lang.Thread, the thread name is "main", and it is currently running,
+ .TP 3
+-thread
+-Select a thread to be the current thread. Many \f3jdb\fP commands are based on the setting of the current thread. The thread is specified with the thread index described in the \f2threads\fP command above.
++thread
++Select a thread to be the current thread. Many \f3jdb\fP commands are based on the setting of the current thread. The thread is specified with the thread index described in the \f2threads\fP command above.
+ .TP 3
+-where
++where
+ \f2where\fP with no arguments dumps the stack of the current thread. \f2where all\fP dumps the stack of all threads in the current thread group. \f2where\fP \f2threadindex\fP dumps the stack of the specified thread.
+ .br
+ .br
+-If the current thread is suspended (either through an event such as a breakpoint or through the \f2suspend\fP command), local variables and fields can be displayed with the \f2print\fP and \f2dump\fP commands. The \f2up\fP and \f2down\fP commands select which stack frame is current.
++If the current thread is suspended (either through an event such as a breakpoint or through the \f2suspend\fP command), local variables and fields can be displayed with the \f2print\fP and \f2dump\fP commands. The \f2up\fP and \f2down\fP commands select which stack frame is current.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Breakpoints
+ .LP
+ .LP
+@@ -208,16 +208,16 @@
+ .RS 3
+ .TP 2
+ o
+-\f2stop at MyClass:22\fP \f2(sets a breakpoint at the first instruction for line 22 of the source file containing MyClass)\fP
++\f2stop at MyClass:22\fP \f2(sets a breakpoint at the first instruction for line 22 of the source file containing MyClass)\fP
+ .TP 2
+ o
+-\f2stop in java.lang.String.length\fP \f2(sets a breakpoint at the beginnig of the method \fP\f2java.lang.String.length\fP)
++\f2stop in java.lang.String.length\fP \f2(sets a breakpoint at the beginnig of the method \fP\f2java.lang.String.length\fP)
+ .TP 2
+ o
+-\f2stop in MyClass.<init>\fP \f2(<init> identifies the MyClass constructor)\fP
++\f2stop in MyClass.<init>\fP \f2(<init> identifies the MyClass constructor)\fP
+ .TP 2
+ o
+-\f2stop in MyClass.<clinit>\fP \f2(<clinit> identifies the static initialization code for MyClass)\fP
++\f2stop in MyClass.<clinit>\fP \f2(<clinit> identifies the static initialization code for MyClass)\fP
+ .RE
+
+ .LP
+@@ -227,13 +227,13 @@
+ .LP
+ The \f2clear\fP command removes breakpoints using a syntax as in "\f2clear\ MyClass:45\fP". Using the \f2clear\fP or command with no argument displays a list of all breakpoints currently set. The \f2cont\fP command continues execution.
+ .LP
+-.SS
++.SS
+ Stepping
+ .LP
+ .LP
+ The \f2step\fP commands advances execution to the next line whether it is in the current stack frame or a called method. The \f2next\fP command advances execution to the next line in the current stack frame.
+ .LP
+-.SS
++.SS
+ Exceptions
+ .LP
+ .LP
+@@ -258,67 +258,67 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-help
+-Displays a help message.
++\-help
++Displays a help message.
+ .TP 3
+-\-sourcepath <dir1:dir2:...>
+-Uses the given path in searching for source files in the specified path. If this option is not specified, the default path of "." is used.
++\-sourcepath <dir1:dir2:...>
++Uses the given path in searching for source files in the specified path. If this option is not specified, the default path of "." is used.
+ .TP 3
+-\-attach <address>
+-Attaches the debugger to previously running VM using the default connection mechanism.
++\-attach <address>
++Attaches the debugger to previously running VM using the default connection mechanism.
+ .TP 3
+-\-listen <address>
+-Waits for a running VM to connect at the specified address using standard connector.
++\-listen <address>
++Waits for a running VM to connect at the specified address using standard connector.
+ .TP 3
+-\-listenany
+-Waits for a running VM to connect at any available address using standard connector.
++\-listenany
++Waits for a running VM to connect at any available address using standard connector.
+ .TP 3
+-\-launch
+-Launches the debugged application immediately upon startup of jdb. This option removes the need for using the \f2run\fP command. The debuged application is launched and then stopped just before the initial application class is loaded. At that point you can set any necessary breakpoints and use the \f2cont\fP to continue execution.
++\-launch
++Launches the debugged application immediately upon startup of jdb. This option removes the need for using the \f2run\fP command. The debuged application is launched and then stopped just before the initial application class is loaded. At that point you can set any necessary breakpoints and use the \f2cont\fP to continue execution.
+ .TP 3
+-\-listconnectors
+-List the connectors available in this VM
++\-listconnectors
++List the connectors available in this VM
+ .TP 3
+-\-connect <connector\-name>:<name1>=<value1>,...
+-Connects to target VM using named connector with listed argument values.
++\-connect <connector\-name>:<name1>=<value1>,...
++Connects to target VM using named connector with listed argument values.
+ .TP 3
+-\-dbgtrace [flags]
+-Prints info for debugging jdb.
++\-dbgtrace [flags]
++Prints info for debugging jdb.
+ .TP 3
+-\-tclient
+-Runs the application in the Java HotSpot(tm) VM (Client).
++\-tclient
++Runs the application in the Java HotSpot(tm) VM (Client).
+ .TP 3
+-\-tserver
+-Runs the application in the Java HotSpot(tm) VM (Server).
++\-tserver
++Runs the application in the Java HotSpot(tm) VM (Server).
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine used to run jdb. (Options for the application Java virtual machine are passed to the \f3run\fP command.) For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
++\-Joption
++Pass \f2option\fP to the Java virtual machine used to run jdb. (Options for the application Java virtual machine are passed to the \f3run\fP command.) For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
+ .RE
+
+ .LP
+ .LP
+-Other options are supported for alternate mechanisms for connecting the debugger and the VM it is to debug. The Java Platform Debugger Architecture has additional
++Other options are supported for alternate mechanisms for connecting the debugger and the VM it is to debug. The Java Platform Debugger Architecture has additional
+ .na
+ \f2documentation\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html on these connection alternatives.
++http://docs.oracle.com/javase/7/docs/technotes/guides/jpda/conninv.html on these connection alternatives.
+ .LP
+-.SS
++.SS
+ Options Forwarded to Debuggee Process
+ .LP
+ .RS 3
+ .TP 3
+-\-v \-verbose[:class|gc|jni]
+-Turns on verbose mode.
++\-v \-verbose[:class|gc|jni]
++Turns on verbose mode.
+ .TP 3
+-\-D<name>=<value>
+-Sets a system property.
++\-D<name>=<value>
++Sets a system property.
+ .TP 3
+-\-classpath <directories separated by ":">
+-Lists directories in which to look for classes.
++\-classpath <directories separated by ":">
++Lists directories in which to look for classes.
+ .TP 3
+-\-X<option>
+-Non\-standard target VM option
++\-X<option>
++Non\-standard target VM option
+ .RE
+
+ .LP
+@@ -327,4 +327,4 @@
+ .LP
+ javac(1), java(1), javah(1), javap(1), javadoc(1).
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jhat.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jhat.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jhat 1 "10 May 2011"
++.TH jhat 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -41,11 +41,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Options, if used, should follow immediately after the command name.
++options
++Options, if used, should follow immediately after the command name.
+ .TP 3
+-heap\-dump\-file
+-Java binary heap dump file to be browsed. For a dump file that contains multiple heap dumps, you may specify which dump in the file by appending "#<number> to the file name, i.e. "foo.hprof#3".
++heap\-dump\-file
++Java binary heap dump file to be browsed. For a dump file that contains multiple heap dumps, you may specify which dump in the file by appending "#<number> to the file name, i.e. "foo.hprof#3".
+ .RE
+
+ .LP
+@@ -60,24 +60,24 @@
+ .RS 3
+ .TP 2
+ o
+-Use jmap(1) \-dump option to obtain a heap dump at runtime;
++Use jmap(1) \-dump option to obtain a heap dump at runtime;
+ .TP 2
+ o
+-Use jconsole(1) option to obtain a heap dump via
++Use jconsole(1) option to obtain a heap dump via
+ .na
+ \f2HotSpotDiagnosticMXBean\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/jre/api/management/extension/com/sun/management/HotSpotDiagnosticMXBean.html at runtime;
++http://docs.oracle.com/javase/7/docs/jre/api/management/extension/com/sun/management/HotSpotDiagnosticMXBean.html at runtime;
+ .TP 2
+ o
+-Heap dump will be generated when OutOfMemoryError is thrown by specifying \-XX:+HeapDumpOnOutOfMemoryError VM option;
++Heap dump will be generated when OutOfMemoryError is thrown by specifying \-XX:+HeapDumpOnOutOfMemoryError VM option;
+ .TP 2
+ o
+-Use
++Use
+ .na
+ \f2hprof\fP @
+ .fi
+-http://java.sun.com/developer/technicalArticles/Programming/HPROF.html.
++http://java.sun.com/developer/technicalArticles/Programming/HPROF.html.
+ .RE
+
+ .LP
+@@ -88,35 +88,35 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-stack false/true
+-Turn off tracking object allocation call stack. Note that if allocation site information is not available in the heap dump, you have to set this flag to false. Default is true.
++\-stack false/true
++Turn off tracking object allocation call stack. Note that if allocation site information is not available in the heap dump, you have to set this flag to false. Default is true.
+ .TP 3
+-\-refs false/true
+-Turn off tracking of references to objects. Default is true. By default, back pointers (objects pointing to a given object a.k.a referrers or in\-coming references) are calculated for all objects in the heap.
++\-refs false/true
++Turn off tracking of references to objects. Default is true. By default, back pointers (objects pointing to a given object a.k.a referrers or in\-coming references) are calculated for all objects in the heap.
+ .TP 3
+-\-port port\-number
+-Set the port for the jhat's HTTP server. Default is 7000.
++\-port port\-number
++Set the port for the jhat's HTTP server. Default is 7000.
+ .TP 3
+-\-exclude exclude\-file
+-Specify a file that lists data members that should be excluded from the "reachable objects" query. For example, if the file lists \f2java.lang.String.value\fP, then, whenever list of objects reachable from a specific object "o" are calculated, reference paths involving \f2java.lang.String.value\fP field will not considered.
++\-exclude exclude\-file
++Specify a file that lists data members that should be excluded from the "reachable objects" query. For example, if the file lists \f2java.lang.String.value\fP, then, whenever list of objects reachable from a specific object "o" are calculated, reference paths involving \f2java.lang.String.value\fP field will not considered.
+ .TP 3
+-\-baseline baseline\-dump\-file
+-Specify a baseline heap dump. Objects in both heap dumps with the same object ID will be marked as not being "new". Other objects will be marked as "new". This is useful while comparing two different heap dumps.
++\-baseline baseline\-dump\-file
++Specify a baseline heap dump. Objects in both heap dumps with the same object ID will be marked as not being "new". Other objects will be marked as "new". This is useful while comparing two different heap dumps.
+ .TP 3
+-\-debug int
+-Set debug level for this tool. 0 means no debug output. Set higher values for more verbose modes.
++\-debug int
++Set debug level for this tool. 0 means no debug output. Set higher values for more verbose modes.
+ .TP 3
+-\-version
+-Report version number and exit.
++\-version
++Report version number and exit.
+ .TP 3
+-\-h
+-Output help message and exit.
++\-h
++Output help message and exit.
+ .TP 3
+-\-help
+-Output help message and exit.
++\-help
++Output help message and exit.
+ .TP 3
+-\-J<flag>
+-Pass <flag> to the Java virtual machine on which jhat is run. For example, \-J\-Xmx512m to use a maximum heap size of 512MB.
++\-J<flag>
++Pass <flag> to the Java virtual machine on which jhat is run. For example, \-J\-Xmx512m to use a maximum heap size of 512MB.
+ .RE
+
+ .LP
+@@ -125,17 +125,17 @@
+ .RS 3
+ .TP 2
+ o
+-jmap(1)
++jmap(1)
+ .TP 2
+ o
+-jconsole(1)
++jconsole(1)
+ .TP 2
+ o
+ .na
+ \f2hprof \- Heap and CPU profiling tool\fP @
+ .fi
+-http://java.sun.com/developer/technicalArticles/Programming/HPROF.html
++http://java.sun.com/developer/technicalArticles/Programming/HPROF.html
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jinfo.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jinfo.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jinfo 1 "10 May 2011"
++.TH jinfo 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -34,7 +34,7 @@
+ .fl
+ \f3jinfo\fP [ option ] executable core
+ .fl
+-\f3jinfo\fP [ option ] [server\-id@]remote\-hostname\-or\-IP
++\f3jinfo\fP [ option ] [server\-id@]remote\-hostname\-or\-IP
+ .fl
+ .fi
+
+@@ -43,43 +43,43 @@
+ .LP
+ .RS 3
+ .TP 3
+-option
+-Options are mutually exclusive. Option, if used, should follow immediately after the command name.
++option
++Options are mutually exclusive. Option, if used, should follow immediately after the command name.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-pid
+-process id for which the configuration info is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
++pid
++process id for which the configuration info is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-executable
+-Java executable from which the core dump was produced.
++executable
++Java executable from which the core dump was produced.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-core
+-core file for which the configuration info is to be printed.
++core
++core file for which the configuration info is to be printed.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-remote\-hostname\-or\-IP
+-remote debug server's (see jsadebugd(1)) hostname or IP address.
++remote\-hostname\-or\-IP
++remote debug server's (see jsadebugd(1)) hostname or IP address.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-server\-id
+-optional unique id, if multiple debug servers are running on the same remote host.
++server\-id
++optional unique id, if multiple debug servers are running on the same remote host.
+ .RE
+
+ .LP
+@@ -100,35 +100,35 @@
+ .LP
+ .RS 3
+ .TP 3
+-<no option>
++<no option>
+ prints both command line flags as well as System properties name, value pairs.
+ .br
+ .TP 3
+-\-flag name
++\-flag name
+ prints the name and value of the given command line flag.
+ .br
+ .TP 3
+-\-flag [+|\-]name
++\-flag [+|\-]name
+ enables or disables the given boolean command line flag.
+ .br
+ .TP 3
+-\-flag name=value
++\-flag name=value
+ sets the given command line flag to the specified value.
+ .br
+ .TP 3
+-\-flags
++\-flags
+ prints command line flags passed to the JVM. pairs.
+ .br
+ .TP 3
+-\-sysprops
++\-sysprops
+ prints Java System properties as name, value pairs.
+ .br
+ .TP 3
+-\-h
+-prints a help message
++\-h
++prints a help message
+ .TP 3
+-\-help
+-prints a help message
++\-help
++prints a help message
+ .RE
+
+ .LP
+@@ -137,11 +137,11 @@
+ .RS 3
+ .TP 2
+ o
+-jps(1)
++jps(1)
+ .TP 2
+ o
+-jsadebugd(1)
++jsadebugd(1)
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jmap.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jmap.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jmap 1 "10 May 2011"
++.TH jmap 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -43,26 +43,26 @@
+ .LP
+ .RS 3
+ .TP 3
+-option
+-Options are mutually exclusive. Option, if used, should follow immediately after the command name.
++option
++Options are mutually exclusive. Option, if used, should follow immediately after the command name.
+ .TP 3
+-pid
+-process id for which the memory map is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
++pid
++process id for which the memory map is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
+ .br
+ .TP 3
+-executable
+-Java executable from which the core dump was produced.
++executable
++Java executable from which the core dump was produced.
+ .br
+ .TP 3
+-core
+-core file for which the memory map is to be printed.
++core
++core file for which the memory map is to be printed.
+ .br
+ .TP 3
+-remote\-hostname\-or\-IP
+-remote debug server's (see jsadebugd(1)) hostname or IP address.
++remote\-hostname\-or\-IP
++remote debug server's (see jsadebugd(1)) hostname or IP address.
+ .br
+ .TP 3
+-server\-id
++server\-id
+ optional unique id, if multiple debug servers are running on the same remote host.
+ .br
+ .RE
+@@ -95,46 +95,46 @@
+ .LP
+ .RS 3
+ .TP 3
+-<no option>
+-When no option is used jmap prints shared object mappings. For each shared object loaded in the target VM, start address, the size of the mapping, and the full path of the shared object file are printed. This is similar to the Solaris \f3pmap\fP utility.
++<no option>
++When no option is used jmap prints shared object mappings. For each shared object loaded in the target VM, start address, the size of the mapping, and the full path of the shared object file are printed. This is similar to the Solaris \f3pmap\fP utility.
+ .br
+ .TP 3
+-\-dump:[live,]format=b,file=<filename>
+-Dumps the Java heap in hprof binary format to filename. The \f2live\fP suboption is optional. If specified, only the live objects in the heap are dumped. To browse the heap dump, you can use jhat(1) (Java Heap Analysis Tool) to read the generated file.
++\-dump:[live,]format=b,file=<filename>
++Dumps the Java heap in hprof binary format to filename. The \f2live\fP suboption is optional. If specified, only the live objects in the heap are dumped. To browse the heap dump, you can use jhat(1) (Java Heap Analysis Tool) to read the generated file.
+ .br
+ .TP 3
+-\-finalizerinfo
+-Prints information on objects awaiting finalization.
++\-finalizerinfo
++Prints information on objects awaiting finalization.
+ .br
+ .TP 3
+-\-heap
+-Prints a heap summary. GC algorithm used, heap configuration and generation wise heap usage are printed.
++\-heap
++Prints a heap summary. GC algorithm used, heap configuration and generation wise heap usage are printed.
+ .br
+ .TP 3
+-\-histo[:live]
+-Prints a histogram of the heap. For each Java class, number of objects, memory size in bytes, and fully qualified class names are printed. VM internal class names are printed with '*' prefix. If the \f2live\fP suboption is specified, only live objects are counted.
++\-histo[:live]
++Prints a histogram of the heap. For each Java class, number of objects, memory size in bytes, and fully qualified class names are printed. VM internal class names are printed with '*' prefix. If the \f2live\fP suboption is specified, only live objects are counted.
+ .br
+ .TP 3
+-\-permstat
+-Prints class loader wise statistics of permanent generation of Java heap. For each class loader, its name, liveness, address, parent class loader, and the number and size of classes it has loaded are printed. In addition, the number and size of interned Strings are printed.
++\-permstat
++Prints class loader wise statistics of permanent generation of Java heap. For each class loader, its name, liveness, address, parent class loader, and the number and size of classes it has loaded are printed. In addition, the number and size of interned Strings are printed.
+ .br
+ .TP 3
+-\-F
+-Force. Use with jmap \-dump or jmap \-histo option if the pid does not respond. The \f2live\fP suboption is not supported in this mode.
++\-F
++Force. Use with jmap \-dump or jmap \-histo option if the pid does not respond. The \f2live\fP suboption is not supported in this mode.
+ .br
+ .TP 3
+-\-h
++\-h
+ Prints a help message.
+ .br
+ .br
+ .TP 3
+-\-help
++\-help
+ Prints a help message.
+ .br
+ .br
+ .TP 3
+-\-J<flag>
+-Passes <flag> to the Java virtual machine on which jmap is run.
++\-J<flag>
++Passes <flag> to the Java virtual machine on which jmap is run.
+ .br
+ .RE
+
+@@ -144,17 +144,17 @@
+ .RS 3
+ .TP 2
+ o
+-pmap(1)
++pmap(1)
+ .TP 2
+ o
+-jhat(1)
++jhat(1)
+ .TP 2
+ o
+-jps(1)
++jps(1)
+ .TP 2
+ o
+-jsadebugd(1)
++jsadebugd(1)
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jps.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jps.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jps 1 "10 May 2011"
++.TH jps 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -41,11 +41,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options.
++options
++Command\-line options.
+ .TP 3
+-hostid
+-The host identifier of the host for which the process report should be generated. The \f2hostid\fP may include optional components that indicate the communications protocol, port number, and other implementation specific data.
++hostid
++The host identifier of the host for which the process report should be generated. The \f2hostid\fP may include optional components that indicate the communications protocol, port number, and other implementation specific data.
+ .RE
+
+ .LP
+@@ -76,27 +76,27 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-q
+-Suppress the output of the class name, JAR file name, and arguments passed to the \f2main\fP method, producing only a list of local VM identifiers.
++\-q
++Suppress the output of the class name, JAR file name, and arguments passed to the \f2main\fP method, producing only a list of local VM identifiers.
+ .TP 3
+-\-m
+-Output the arguments passed to the main method. The output may be null for embedded JVMs.
++\-m
++Output the arguments passed to the main method. The output may be null for embedded JVMs.
+ .TP 3
+-\-l
+-Output the full package name for the application's main class or the full path name to the application's JAR file.
++\-l
++Output the full package name for the application's main class or the full path name to the application's JAR file.
+ .TP 3
+-\-v
+-Output the arguments passed to the JVM.
++\-v
++Output the arguments passed to the JVM.
+ .TP 3
+-\-V
+-Output the arguments passed to the JVM through the flags file (the .hotspotrc file or the file specified by the \-XX:Flags=<\f2filename\fP> argument).
++\-V
++Output the arguments passed to the JVM through the flags file (the .hotspotrc file or the file specified by the \-XX:Flags=<\f2filename\fP> argument).
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the \f3java\fP launcher called by \f3jps\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
++\-Joption
++Pass \f2option\fP to the \f3java\fP launcher called by \f3jps\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
+ .RE
+
+ .LP
+-.SS
++.SS
+ HOST IDENTIFIER
+ .LP
+ .LP
+@@ -115,17 +115,17 @@
+ .LP
+ .RS 3
+ .TP 3
+-protocol
+-The communications protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is not specified, the default protocol is a platform specific, optimized, local protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is specified, then the default protocol is \f3rmi\fP.
++protocol
++The communications protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is not specified, the default protocol is a platform specific, optimized, local protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is specified, then the default protocol is \f3rmi\fP.
+ .TP 3
+-hostname
+-A hostname or IP address indicating the target host. If \f2hostname\fP is omitted, then the target host is the local host.
++hostname
++A hostname or IP address indicating the target host. If \f2hostname\fP is omitted, then the target host is the local host.
+ .TP 3
+-port
+-The default port for communicating with the remote server. If the \f2hostname\fP is omitted or the \f2protocol\fP specifies an optimized, local protocol, then \f2port\fP is ignored. Otherwise, treatment of the \f2port\fP parameter is implementation specific. For the default \f3rmi\fP protocol the \f2port\fP indicates the port number for the rmiregistry on the remote host. If \f2port\fP is omitted, and \f2protocol\fP indicates \f3rmi\fP, then the default rmiregistry port (1099) is used.
++port
++The default port for communicating with the remote server. If the \f2hostname\fP is omitted or the \f2protocol\fP specifies an optimized, local protocol, then \f2port\fP is ignored. Otherwise, treatment of the \f2port\fP parameter is implementation specific. For the default \f3rmi\fP protocol the \f2port\fP indicates the port number for the rmiregistry on the remote host. If \f2port\fP is omitted, and \f2protocol\fP indicates \f3rmi\fP, then the default rmiregistry port (1099) is used.
+ .TP 3
+-servername
+-The treatment of this parameter depends on the implementation. For the optimized, local protocol, this field is ignored. For the \f3rmi\fP protocol, this parameter is a string representing the name of the RMI remote object on the remote host. See the \f3\-n\fP option for the jstatd(1) command.
++servername
++The treatment of this parameter depends on the implementation. For the optimized, local protocol, this field is ignored. For the \f3rmi\fP protocol, this parameter is a string representing the name of the RMI remote object on the remote host. See the \f3\-n\fP option for the jstatd(1) command.
+ .RE
+
+ .LP
+@@ -234,17 +234,17 @@
+ .RS 3
+ .TP 2
+ o
+-java(1) \- the Java Application Launcher
++java(1) \- the Java Application Launcher
+ .TP 2
+ o
+-jstat(1) \- the Java virtual machine Statistics Monitoring Tool
++jstat(1) \- the Java virtual machine Statistics Monitoring Tool
+ .TP 2
+ o
+-jstatd(1) \- the jstat daemon
++jstatd(1) \- the jstat daemon
+ .TP 2
+ o
+-rmiregistry(1) \- the Java Remote Object Registry
++rmiregistry(1) \- the Java Remote Object Registry
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jrunscript.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jrunscript.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jrunscript 1 "10 May 2011"
++.TH jrunscript 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -39,11 +39,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Options, if used, should follow immediately after the command name.
++options
++Options, if used, should follow immediately after the command name.
+ .TP 3
+-arguments
+-Arguments, if used, should follow immediately after options or command name.
++arguments
++Arguments, if used, should follow immediately after options or command name.
+ .RE
+
+ .LP
+@@ -59,41 +59,41 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-classpath path
+-Specify where to find the user's .class files that are accessed by the script.
++\-classpath path
++Specify where to find the user's .class files that are accessed by the script.
+ .TP 3
+-\-cp path
+-This is a synonym for \-classpath \f2path\fP
++\-cp path
++This is a synonym for \-classpath \f2path\fP
+ .TP 3
+-\-Dname=value
+-Set a Java system property.
++\-Dname=value
++Set a Java system property.
+ .TP 3
+-\-J<flag>
+-Pass <flag> directly to the Java virtual machine on which jrunscript is run.
++\-J<flag>
++Pass <flag> directly to the Java virtual machine on which jrunscript is run.
+ .TP 3
+-\-l language
+-Use the specified scripting language. By default, JavaScript is used. Note that to use other scripting languages, you also need to specify the corresponding script engine's jar file using \-cp or \-classpath option.
++\-l language
++Use the specified scripting language. By default, JavaScript is used. Note that to use other scripting languages, you also need to specify the corresponding script engine's jar file using \-cp or \-classpath option.
+ .TP 3
+-\-e script
+-Evaluate the given script. This option can be used to run "one liner" scripts specified completely on the command line.
++\-e script
++Evaluate the given script. This option can be used to run "one liner" scripts specified completely on the command line.
+ .TP 3
+-\-encoding encoding
+-Specify the character encoding used while reading script files.
++\-encoding encoding
++Specify the character encoding used while reading script files.
+ .TP 3
+-\-f script\-file
+-Evaluate the given script file (batch mode).
++\-f script\-file
++Evaluate the given script file (batch mode).
+ .TP 3
+-\-f \-
+-Read and evaluate a script from standard input (interactive mode).
++\-f \-
++Read and evaluate a script from standard input (interactive mode).
+ .TP 3
+-\-help\
+-Output help message and exit.
++\-help\
++Output help message and exit.
+ .TP 3
+-\-?\
+-Output help message and exit.
++\-?\
++Output help message and exit.
+ .TP 3
+-\-q\
+-List all script engines available and exit.
++\-q\
++List all script engines available and exit.
+ .RE
+
+ .LP
+@@ -104,7 +104,7 @@
+ .LP
+ .SH "EXAMPLES"
+ .LP
+-.SS
++.SS
+ Executing inline scripts
+ .LP
+ .nf
+@@ -118,7 +118,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Use specified language and evaluate given script file
+ .LP
+ .nf
+@@ -130,7 +130,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Interactive mode
+ .LP
+ .nf
+@@ -162,7 +162,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Run script file with script arguments
+ .LP
+ .nf
+@@ -174,14 +174,14 @@
+ .fi
+
+ .LP
+-test.js is script file to execute and arg1, arg2 and arg3 are passed to script as script arguments. Script can access these using "arguments" array.
++test.js is script file to execute and arg1, arg2 and arg3 are passed to script as script arguments. Script can access these using "arguments" array.
+ .SH "SEE ALSO"
+ .LP
+ .LP
+-If JavaScript is used, then before evaluating any user defined script, jrunscript initializes certain built\-in functions and objects. These JavaScript built\-ins are documented in
++If JavaScript is used, then before evaluating any user defined script, jrunscript initializes certain built\-in functions and objects. These JavaScript built\-ins are documented in
+ .na
+ \f2jsdocs\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/share/jsdocs/allclasses\-noframe.html.
++http://docs.oracle.com/javase/7/docs/technotes/tools/share/jsdocs/allclasses\-noframe.html.
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jsadebugd.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jsadebugd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jsadebugd 1 "10 May 2011"
++.TH jsadebugd 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -41,28 +41,28 @@
+ .LP
+ .RS 3
+ .TP 3
+-pid
+-process id of the process to which the debug server should attach. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used. At most one instance of the debug server may be attached to a single process.
++pid
++process id of the process to which the debug server should attach. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used. At most one instance of the debug server may be attached to a single process.
+ .TP 3
+-executable
+-Java executable from which the core dump was produced
++executable
++Java executable from which the core dump was produced
+ .TP 3
+-core
+-Core file to which the debug server should attach.
++core
++Core file to which the debug server should attach.
+ .TP 3
+-server\-id
+-Optional unique id, needed if multiple debug servers are started on the same machine. This ID must be used by remote clients to identify the particular debug server to attach. Within a single machine, this ID must be unique.
++server\-id
++Optional unique id, needed if multiple debug servers are started on the same machine. This ID must be used by remote clients to identify the particular debug server to attach. Within a single machine, this ID must be unique.
+ .RE
+
+ .LP
+ .SH "DESCRIPTION"
+ .LP
+ .LP
+-\f3jsadebugd\fP attaches to a Java process or core file and acts as a debug server. Remote clients such as jstack(1), jmap(1), and jinfo(1) can attach to the server using Java Remote Method Invocation (RMI). Before starting \f2jsadebugd\fP,
++\f3jsadebugd\fP attaches to a Java process or core file and acts as a debug server. Remote clients such as jstack(1), jmap(1), and jinfo(1) can attach to the server using Java Remote Method Invocation (RMI). Before starting \f2jsadebugd\fP,
+ .na
+ \f2rmiregistry\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#rmi must be started with:
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi must be started with:
+ .LP
+ .nf
+ \f3
+@@ -87,23 +87,23 @@
+ .RS 3
+ .TP 2
+ o
+-jinfo(1)
++jinfo(1)
+ .TP 2
+ o
+-jmap(1)
++jmap(1)
+ .TP 2
+ o
+-jps(1)
++jps(1)
+ .TP 2
+ o
+-jstack(1)
++jstack(1)
+ .TP 2
+ o
+ .na
+ \f2rmiregistry\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#rmi
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jstack.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jstack.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstack 1 "10 May 2011"
++.TH jstack 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -48,27 +48,27 @@
+ .LP
+ .RS 3
+ .TP 3
+-pid
+-process id for which the stack trace is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
++pid
++process id for which the stack trace is to be printed. The process must be a Java process. To get a list of Java processes running on a machine, jps(1) may be used.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-executable
+-Java executable from which the core dump was produced.
++executable
++Java executable from which the core dump was produced.
+ .br
+ .TP 3
+-core
+-core file for which the stack trace is to be printed.
++core
++core file for which the stack trace is to be printed.
+ .br
+ .TP 3
+-remote\-hostname\-or\-IP
+-remote debug server's (see jsadebugd(1)) hostname or IP address.
++remote\-hostname\-or\-IP
++remote debug server's (see jsadebugd(1)) hostname or IP address.
+ .br
+ .TP 3
+-server\-id
+-optional unique id, if multiple debug servers are running on the same remote host.
++server\-id
++optional unique id, if multiple debug servers are running on the same remote host.
+ .RE
+
+ .LP
+@@ -98,25 +98,25 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-F
+-Force a stack dump when 'jstack [\-l] pid' does not respond.
++\-F
++Force a stack dump when 'jstack [\-l] pid' does not respond.
+ .TP 3
+-\-l
+-Long listing. Prints additional information about locks such as list of owned java.util.concurrent
++\-l
++Long listing. Prints additional information about locks such as list of owned java.util.concurrent
+ .na
+ \f2ownable synchronizers\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer.html.
++http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/locks/AbstractOwnableSynchronizer.html.
+ .TP 3
+-\-m
+-prints mixed mode (both Java and native C/C++ frames) stack trace.
++\-m
++prints mixed mode (both Java and native C/C++ frames) stack trace.
+ .TP 3
+-\-h
++\-h
+ prints a help message.
+ .br
+ .br
+ .TP 3
+-\-help
++\-help
+ prints a help message
+ .br
+ .RE
+@@ -127,16 +127,16 @@
+ .RS 3
+ .TP 2
+ o
+-pstack(1)
++pstack(1)
+ .TP 2
+ o
+-c++filt(1)
++c++filt(1)
+ .TP 2
+ o
+-jps(1)
++jps(1)
+ .TP 2
+ o
+-jsadebugd(1)
++jsadebugd(1)
+ .RE
+
+ .LP
+@@ -145,4 +145,4 @@
+ .LP
+ Mixed mode stack trace, the \-m option, does not work with the remote debug server.
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jstat.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jstat.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstat 1 "10 May 2011"
++.TH jstat 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -39,27 +39,27 @@
+ .LP
+ .RS 3
+ .TP 3
+-generalOption
+-A single general command\-line option (\-help, \-options, or \-version)
++generalOption
++A single general command\-line option (\-help, \-options, or \-version)
+ .TP 3
+-outputOptions
+-One or more output options, consisting of a single \f2statOption\fP, plus any of the \-t, \-h, and \-J options.
++outputOptions
++One or more output options, consisting of a single \f2statOption\fP, plus any of the \-t, \-h, and \-J options.
+ .TP 3
+-vmid
+-Virtual machine identifier, a string indicating the target Java virtual machine (JVM). The general syntax is
++vmid
++Virtual machine identifier, a string indicating the target Java virtual machine (JVM). The general syntax is
+ .nf
+ \f3
+ .fl
+ [\fP\f4protocol\fP\f3:][//]\fP\f4lvmid\fP[@\f2hostname\fP[:\f2port\fP]/\f2servername\fP]
+ .fl
+ .fi
+-The syntax of the vmid string largely corresponds to the syntax of a URI. The \f2vmid\fP can vary from a simple integer representing a local JVM to a more complex construction specifying a communications protocol, port number, and other implementation\-specific values. See Virtual Machine Identifier for details.
++The syntax of the vmid string largely corresponds to the syntax of a URI. The \f2vmid\fP can vary from a simple integer representing a local JVM to a more complex construction specifying a communications protocol, port number, and other implementation\-specific values. See Virtual Machine Identifier for details.
+ .TP 3
+-interval[s|ms]
+-Sampling interval in the specified units, seconds (s) or milliseconds (ms). Default units are milliseconds. Must be a positive integer. If specified, \f3jstat\fP will produce its output at each interval.
++interval[s|ms]
++Sampling interval in the specified units, seconds (s) or milliseconds (ms). Default units are milliseconds. Must be a positive integer. If specified, \f3jstat\fP will produce its output at each interval.
+ .TP 3
+-count
+-Number of samples to display. Default value is infinity; that is, \f3jstat\fP displays statistics until the target JVM terminates or the \f3jstat\fP command is terminated. Must be a positive integer.
++count
++Number of samples to display. Default value is infinity; that is, \f3jstat\fP displays statistics until the target JVM terminates or the \f3jstat\fP command is terminated. Must be a positive integer.
+ .RE
+
+ .LP
+@@ -73,7 +73,7 @@
+ .br
+
+ .LP
+-.SS
++.SS
+ VIRTUAL MACHINE IDENTIFIER
+ .LP
+ .LP
+@@ -89,20 +89,20 @@
+ .LP
+ .RS 3
+ .TP 3
+-protocol
+-The communications protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is not specified, the default protocol is a platform specific optimized local protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is specified, then the default protocol is \f3rmi\fP.
++protocol
++The communications protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is not specified, the default protocol is a platform specific optimized local protocol. If the \f2protocol\fP is omitted and a \f2hostname\fP is specified, then the default protocol is \f3rmi\fP.
+ .TP 3
+-lvmid
+-The local virtual machine identifier for the target JVM. The \f2lvmid\fP is a platform\-specific value that uniquely identifies a JVM on a system. The \f2lvmid\fP is the only required component of a virtual machine identifier. The \f2lvmid\fP is typically, but not necessarily, the operating system's process identifier for the target JVM process. You can use the jps(1) command to determine the \f2lvmid\fP. Also, you can determine \f2lvmid\fP on Unix platforms with the \f3ps\fP command, and on Windows with the Windows Task Manager.
++lvmid
++The local virtual machine identifier for the target JVM. The \f2lvmid\fP is a platform\-specific value that uniquely identifies a JVM on a system. The \f2lvmid\fP is the only required component of a virtual machine identifier. The \f2lvmid\fP is typically, but not necessarily, the operating system's process identifier for the target JVM process. You can use the jps(1) command to determine the \f2lvmid\fP. Also, you can determine \f2lvmid\fP on Unix platforms with the \f3ps\fP command, and on Windows with the Windows Task Manager.
+ .TP 3
+-hostname
+-A hostname or IP address indicating the target host. If \f2hostname\fP is omitted, then the target host is the local host.
++hostname
++A hostname or IP address indicating the target host. If \f2hostname\fP is omitted, then the target host is the local host.
+ .TP 3
+-port
+-The default port for communicating with the remote server. If the \f2hostname\fP is omitted or the \f2protocol\fP specifies an optimized, local protocol, then \f2port\fP is ignored. Otherwise, treatment of the \f2port\fP parameter is implementation specific. For the default \f3rmi\fP protocol, the \f2port\fP indicates the port number for the rmiregistry on the remote host. If \f2port\fP is omitted, and \f2protocol\fP indicates \f3rmi\fP, then the default rmiregistry port (1099) is used.
++port
++The default port for communicating with the remote server. If the \f2hostname\fP is omitted or the \f2protocol\fP specifies an optimized, local protocol, then \f2port\fP is ignored. Otherwise, treatment of the \f2port\fP parameter is implementation specific. For the default \f3rmi\fP protocol, the \f2port\fP indicates the port number for the rmiregistry on the remote host. If \f2port\fP is omitted, and \f2protocol\fP indicates \f3rmi\fP, then the default rmiregistry port (1099) is used.
+ .TP 3
+-servername
+-The treatment of this parameter depends on implementation. For the optimized local protocol, this field is ignored. For the \f3rmi\fP protocol, it represents the name of the RMI remote object on the remote host.
++servername
++The treatment of this parameter depends on implementation. For the optimized local protocol, this field is ignored. For the \f3rmi\fP protocol, it represents the name of the RMI remote object on the remote host.
+ .RE
+
+ .LP
+@@ -116,7 +116,7 @@
+ .LP
+ \f3NOTE\fP: All options, and their functionality are subject to change or removal in future releases.
+ .LP
+-.SS
++.SS
+ GENERAL OPTIONS
+ .LP
+ .LP
+@@ -124,18 +124,18 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-help
+-Display help message.
++\-help
++Display help message.
+ .TP 3
+-\-version
+-Display version information.
++\-version
++Display version information.
+ .TP 3
+-\-options
+-Display list of statistics options. See the Output Options section below.
++\-options
++Display list of statistics options. See the Output Options section below.
+ .RE
+
+ .LP
+-.SS
++.SS
+ OUTPUT OPTIONS
+ .LP
+ .LP
+@@ -155,11 +155,12 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-statOption
++\-statOption
+ Determines the statistics information that \f3jstat\fP displays. The following table lists the available options. Use the \f3\-options\fP general option to display the list of options for a particular platform installation.
+ .br
+ .br
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -455,13 +456,13 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Option\fP\h'|\n(41u'\f3Displays...\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'class\h'|\n(41u'
+@@ -477,7 +478,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'compiler\h'|\n(41u'
+@@ -493,7 +494,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gc\h'|\n(41u'
+@@ -509,7 +510,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gccapacity\h'|\n(41u'
+@@ -525,7 +526,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gccause\h'|\n(41u'
+@@ -541,7 +542,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcnew\h'|\n(41u'
+@@ -557,7 +558,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcnewcapacity\h'|\n(41u'
+@@ -573,7 +574,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcold\h'|\n(41u'
+@@ -589,7 +590,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcoldcapacity\h'|\n(41u'
+@@ -605,7 +606,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcpermcapacity\h'|\n(41u'
+@@ -621,7 +622,7 @@
+ .sp |\n(31u
+ .ne \n(k|u+\n(.Vu
+ .if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'gcutil\h'|\n(41u'
+@@ -637,7 +638,7 @@
+ .sp |\n(31u
+ .ne \n(l|u+\n(.Vu
+ .if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'printcompilation\h'|\n(41u'
+@@ -667,20 +668,21 @@
+ .rm j+
+ .rm k+
+ .rm l+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-52
+ .TP 3
+-\-h n
+-Display a column header every \f2n\fP samples (output rows), where \f2n\fP is a positive integer. Default value is 0, which displays the column header above the first row of data.
++\-h n
++Display a column header every \f2n\fP samples (output rows), where \f2n\fP is a positive integer. Default value is 0, which displays the column header above the first row of data.
+ .TP 3
+-\-t n
+-Display a timestamp column as the first column of output. The timestamp is the time since the start time of the target JVM.
++\-t n
++Display a timestamp column as the first column of output. The timestamp is the time since the start time of the target JVM.
+ .TP 3
+-\-JjavaOption
+-Pass \f2javaOption\fP to the \f3java\fP application launcher. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. For a complete list of options, see java(1)
++\-JjavaOption
++Pass \f2javaOption\fP to the \f3java\fP application launcher. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. For a complete list of options, see java(1)
+ .RE
+
+ .LP
+-.SS
++.SS
+ STATOPTIONS AND OUTPUT
+ .LP
+ .LP
+@@ -688,10 +690,11 @@
+ .br
+
+ .LP
+-.SS
++.SS
+ \-class Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -817,25 +820,25 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Class Loader Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Loaded\h'|\n(41u'Number of classes loaded.
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Bytes\h'|\n(41u'Number of Kbytes loaded.
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Unloaded\h'|\n(41u'
+@@ -851,7 +854,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Bytes\h'|\n(41u'
+@@ -867,7 +870,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Time\h'|\n(41u'
+@@ -888,13 +891,15 @@
+ .rm a+
+ .rm b+
+ .rm c+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-21
+
+ .LP
+-.SS
++.SS
+ \-compiler Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -1072,17 +1077,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'HotSpot Just\-In\-Time Compiler Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Compiled\h'|\n(41u'
+@@ -1098,7 +1103,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Failed\h'|\n(41u'
+@@ -1114,7 +1119,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Invalid\h'|\n(41u'
+@@ -1130,7 +1135,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Time\h'|\n(41u'
+@@ -1146,7 +1151,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FailedType\h'|\n(41u'
+@@ -1162,7 +1167,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FailedMethod\h'|\n(41u'
+@@ -1186,13 +1191,15 @@
+ .rm d+
+ .rm e+
+ .rm f+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-29
+
+ .LP
+-.SS
++.SS
+ \-gc Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -1534,17 +1541,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Garbage\-collected heap statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0C\h'|\n(41u'
+@@ -1560,7 +1567,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1C\h'|\n(41u'
+@@ -1576,7 +1583,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0U\h'|\n(41u'
+@@ -1592,7 +1599,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1U\h'|\n(41u'
+@@ -1608,7 +1615,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EC\h'|\n(41u'
+@@ -1624,7 +1631,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EU\h'|\n(41u'
+@@ -1640,7 +1647,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OC\h'|\n(41u'
+@@ -1656,7 +1663,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OU\h'|\n(41u'
+@@ -1672,7 +1679,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PC\h'|\n(41u'
+@@ -1688,7 +1695,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PU\h'|\n(41u'
+@@ -1704,7 +1711,7 @@
+ .sp |\n(31u
+ .ne \n(k|u+\n(.Vu
+ .if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -1720,7 +1727,7 @@
+ .sp |\n(31u
+ .ne \n(l|u+\n(.Vu
+ .if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGCT\h'|\n(41u'
+@@ -1734,13 +1741,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of full GC events.
+ .ne \n(m|u+\n(.Vu
+ .if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGCT\h'|\n(41u'
+@@ -1756,7 +1763,7 @@
+ .sp |\n(31u
+ .ne \n(n|u+\n(.Vu
+ .if (\n(n|+\n(#^-1v)>\n(#- .nr #- +(\n(n|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCT\h'|\n(41u'
+@@ -1788,13 +1795,15 @@
+ .rm l+
+ .rm m+
+ .rm n+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-63
+
+ .LP
+-.SS
++.SS
+ \-gccapacity Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -2156,17 +2165,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Memory Pool Generation and Space Capacities\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGCMN\h'|\n(41u'
+@@ -2182,7 +2191,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGCMX\h'|\n(41u'
+@@ -2198,7 +2207,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGC\h'|\n(41u'
+@@ -2214,7 +2223,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0C\h'|\n(41u'
+@@ -2230,7 +2239,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1C\h'|\n(41u'
+@@ -2246,7 +2255,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EC\h'|\n(41u'
+@@ -2262,7 +2271,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGCMN\h'|\n(41u'
+@@ -2278,7 +2287,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGCMX\h'|\n(41u'
+@@ -2294,7 +2303,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGC\h'|\n(41u'
+@@ -2310,7 +2319,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OC\h'|\n(41u'
+@@ -2326,7 +2335,7 @@
+ .sp |\n(31u
+ .ne \n(k|u+\n(.Vu
+ .if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGCMN\h'|\n(41u'
+@@ -2342,7 +2351,7 @@
+ .sp |\n(31u
+ .ne \n(l|u+\n(.Vu
+ .if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGCMX\h'|\n(41u'
+@@ -2358,7 +2367,7 @@
+ .sp |\n(31u
+ .ne \n(m|u+\n(.Vu
+ .if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGC\h'|\n(41u'
+@@ -2374,7 +2383,7 @@
+ .sp |\n(31u
+ .ne \n(n|u+\n(.Vu
+ .if (\n(n|+\n(#^-1v)>\n(#- .nr #- +(\n(n|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PC\h'|\n(41u'
+@@ -2390,7 +2399,7 @@
+ .sp |\n(31u
+ .ne \n(o|u+\n(.Vu
+ .if (\n(o|+\n(#^-1v)>\n(#- .nr #- +(\n(o|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -2404,7 +2413,7 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of Full GC Events.
+@@ -2427,16 +2436,18 @@
+ .rm m+
+ .rm n+
+ .rm o+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-67
+
+ .LP
+-.SS
++.SS
+ \-gccause Option
+ .LP
+ .LP
+ This option displays the same summary of garbage collection statistics as the \f3\-gcutil\fP option, but includes the causes of the last garbage collection event and (if applicable) the current garbage collection event. In addition to the columns listed for \f3\-gcutil\fP, this option adds the following columns:
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -2534,17 +2545,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Garbage Collection Statistics, Including GC Events\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'LGCC\h'|\n(41u'
+@@ -2560,7 +2571,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCC\h'|\n(41u'
+@@ -2580,13 +2591,15 @@
+ .35
+ .rm a+
+ .rm b+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-13
+
+ .LP
+-.SS
++.SS
+ \-gcnew Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -2848,17 +2861,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'New Generation Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0C\h'|\n(41u'
+@@ -2874,7 +2887,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1C\h'|\n(41u'
+@@ -2890,7 +2903,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0U\h'|\n(41u'
+@@ -2906,7 +2919,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1U\h'|\n(41u'
+@@ -2920,13 +2933,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'TT\h'|\n(41u'Tenuring threshold.
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'MTT\h'|\n(41u'
+@@ -2942,7 +2955,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'DSS\h'|\n(41u'
+@@ -2958,7 +2971,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EC\h'|\n(41u'
+@@ -2974,7 +2987,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EU\h'|\n(41u'
+@@ -2990,7 +3003,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -3006,7 +3019,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGCT\h'|\n(41u'
+@@ -3034,13 +3047,15 @@
+ .rm h+
+ .rm i+
+ .rm j+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-47
+
+ .LP
+-.SS
++.SS
+ \-gcnewcapacity Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -3302,17 +3317,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'New Generation Space Size Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGCMN\h'|\n(41u'
+@@ -3328,7 +3343,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGCMX\h'|\n(41u'
+@@ -3344,7 +3359,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'NGC\h'|\n(41u'
+@@ -3360,7 +3375,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0CMX\h'|\n(41u'
+@@ -3376,7 +3391,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0C\h'|\n(41u'
+@@ -3392,7 +3407,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1CMX\h'|\n(41u'
+@@ -3408,7 +3423,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1C\h'|\n(41u'
+@@ -3424,7 +3439,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'ECMX\h'|\n(41u'
+@@ -3440,7 +3455,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EC\h'|\n(41u'
+@@ -3456,7 +3471,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -3470,7 +3485,7 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of Full GC Events.
+@@ -3488,13 +3503,15 @@
+ .rm h+
+ .rm i+
+ .rm j+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-47
+
+ .LP
+-.SS
++.SS
+ \-gcold Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -3696,17 +3713,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Old and Permanent Generation Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PC\h'|\n(41u'
+@@ -3722,7 +3739,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PU\h'|\n(41u'
+@@ -3738,7 +3755,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OC\h'|\n(41u'
+@@ -3754,7 +3771,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OU\h'|\n(41u'
+@@ -3770,7 +3787,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -3784,13 +3801,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of full GC events.
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGCT\h'|\n(41u'
+@@ -3806,7 +3823,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCT\h'|\n(41u'
+@@ -3831,13 +3848,15 @@
+ .rm e+
+ .rm f+
+ .rm g+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-35
+
+ .LP
+-.SS
++.SS
+ \-gcoldcapacity Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -4039,17 +4058,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Old Generation Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGCMN\h'|\n(41u'
+@@ -4065,7 +4084,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGCMX\h'|\n(41u'
+@@ -4081,7 +4100,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OGC\h'|\n(41u'
+@@ -4097,7 +4116,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'OC\h'|\n(41u'
+@@ -4113,7 +4132,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -4127,13 +4146,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of full GC events.
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGCT\h'|\n(41u'
+@@ -4149,7 +4168,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCT\h'|\n(41u'
+@@ -4174,13 +4193,15 @@
+ .rm e+
+ .rm f+
+ .rm g+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-35
+
+ .LP
+-.SS
++.SS
+ \-gcpermcapacity Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -4382,17 +4403,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Permanent Generation Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGCMN\h'|\n(41u'
+@@ -4408,7 +4429,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGCMX\h'|\n(41u'
+@@ -4424,7 +4445,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PGC\h'|\n(41u'
+@@ -4440,7 +4461,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'PC\h'|\n(41u'
+@@ -4456,7 +4477,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -4470,13 +4491,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of full GC events.
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGCT\h'|\n(41u'
+@@ -4492,7 +4513,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCT\h'|\n(41u'
+@@ -4517,13 +4538,15 @@
+ .rm e+
+ .rm f+
+ .rm g+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-35
+
+ .LP
+-.SS
++.SS
+ \-gcutil Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -4765,17 +4788,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Summary of Garbage Collection Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S0\h'|\n(41u'
+@@ -4791,7 +4814,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'S1\h'|\n(41u'
+@@ -4807,7 +4830,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'E\h'|\n(41u'
+@@ -4823,7 +4846,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'O\h'|\n(41u'
+@@ -4839,7 +4862,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'P\h'|\n(41u'
+@@ -4855,7 +4878,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGC\h'|\n(41u'
+@@ -4871,7 +4894,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'YGCT\h'|\n(41u'
+@@ -4885,13 +4908,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGC\h'|\n(41u'Number of full GC events.
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'FGCT\h'|\n(41u'
+@@ -4907,7 +4930,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'GCT\h'|\n(41u'
+@@ -4934,13 +4957,15 @@
+ .rm g+
+ .rm h+
+ .rm i+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-43
+
+ .LP
+-.SS
++.SS
+ \-printcompilation Option
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -5062,17 +5087,17 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'HotSpot Compiler Method Statistics\h'|\n(41u'
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Column\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Compiled\h'|\n(41u'
+@@ -5088,7 +5113,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Size\h'|\n(41u'
+@@ -5102,13 +5127,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Type\h'|\n(41u'Compilation type.
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'Method\h'|\n(41u'
+@@ -5129,6 +5154,7 @@
+ .rm a+
+ .rm b+
+ .rm c+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-19
+
+ .LP
+@@ -5137,7 +5163,7 @@
+ .LP
+ This section presents some examples of monitoring a local JVM with a \f2lvmid\fP of 21891.
+ .LP
+-.SS
++.SS
+ Using the gcutil option
+ .LP
+ .LP
+@@ -5188,7 +5214,7 @@
+ .LP
+ The output of this example shows that a young generation collection occurred between the 3rd and 4th sample. The collection took 0.001 seconds and promoted objects from the eden space (E) to the old space (O), resulting in an increase of old space utilization from 9.49% to 9.51%. Before the collection, the survivor space was 12.44% utilized, but after this collection it is only 7.74% utilized.
+ .LP
+-.SS
++.SS
+ Repeating the column header string
+ .LP
+ .LP
+@@ -5250,7 +5276,7 @@
+ .LP
+ Another collection occurs between the 5th and 6th samples. This collection found very few survivors and returned the tenuring threshold to 31.
+ .LP
+-.SS
++.SS
+ Including a time stamp for each sample
+ .LP
+ .LP
+@@ -5285,7 +5311,7 @@
+ .LP
+ The \f2Timestamp\fP column reports the elapsed time in seconds since the start of the target JVM. In addition, the \f3\-gcoldcapacity\fP output shows the old generation capacity (OGC) and the old space capacity (OC) increasing as the heap expands to meet allocation and/or promotion demands. The old generation capacity (OGC) has grown to from 11696 KB to 13820 KB after the 81st Full GC (FGC). The maximum capacity of the generation (and space) is 60544 KB (OGCMX), so it still has room to expand.
+ .LP
+-.SS
++.SS
+ Monitor instrumentation for a remote JVM
+ .LP
+ .LP
+@@ -5313,17 +5339,17 @@
+ .RS 3
+ .TP 2
+ o
+-java(1) \- the Java Application Launcher
++java(1) \- the Java Application Launcher
+ .TP 2
+ o
+-jps(1) \- the Java Process Status Application
++jps(1) \- the Java Process Status Application
+ .TP 2
+ o
+-jstatd(1) \- the jvmstat daemon
++jstatd(1) \- the jvmstat daemon
+ .TP 2
+ o
+-rmiregistry(1) \- the Java Remote Object Registry
++rmiregistry(1) \- the Java Remote Object Registry
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/jstatd.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/jstatd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH jstatd 1 "10 May 2011"
++.TH jstatd 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -42,8 +42,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options. The options may be in any order. If there are redundant or contradictory options, the last option specified will take precedence.
++options
++Command\-line options. The options may be in any order. If there are redundant or contradictory options, the last option specified will take precedence.
+ .RE
+
+ .LP
+@@ -65,17 +65,17 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-nr
+-Do not attempt to create an internal RMI registry within the \f2jstatd\fP process when an existing RMI registry is not found.
++\-nr
++Do not attempt to create an internal RMI registry within the \f2jstatd\fP process when an existing RMI registry is not found.
+ .TP 3
+-\-p\ port
+-Port number where the RMI registry is expected to be found, or, if not found, created if \f2\-nr\fP is not specified.
++\-p\ port
++Port number where the RMI registry is expected to be found, or, if not found, created if \f2\-nr\fP is not specified.
+ .TP 3
+-\-n\ rminame
+-Name to which the remote RMI object is bound in the RMI registry. The default name is \f2JStatRemoteHost\fP. If multiple \f3jstatd\fP servers are started on the same host, the name of the exported RMI object for each server can be made unique by specifying this option. However, doing so will require that the unique server name be included in the monitoring client's \f2hostid\fP and \f2vmid\fP strings.
++\-n\ rminame
++Name to which the remote RMI object is bound in the RMI registry. The default name is \f2JStatRemoteHost\fP. If multiple \f3jstatd\fP servers are started on the same host, the name of the exported RMI object for each server can be made unique by specifying this option. However, doing so will require that the unique server name be included in the monitoring client's \f2hostid\fP and \f2vmid\fP strings.
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the \f3java\fP launcher called by \f3javac\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
++\-Joption
++Pass \f2option\fP to the \f3java\fP launcher called by \f3javac\fP. For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying VM executing applications written in Java.
+ .RE
+
+ .LP
+@@ -88,11 +88,11 @@
+ The \f3jstatd\fP server does not provide any authentication of remote clients. Therefore, running a \f3jstatd\fP server process exposes the instrumentation export by all JVMs for which the \f3jstatd\fP process has access permissions to any user on the network. This exposure may be undesireable in your environment and local security policies should be considered before starting the \f3jstatd\fP process, particularly in production environments or on unsecure networks.
+ .LP
+ .LP
+-The \f3jstatd\fP server installs an instance of RMISecurityPolicy if no other security manager has been installed and therefore requires a security policy file to be specified. The policy file must conform to the default policy implementation's
++The \f3jstatd\fP server installs an instance of RMISecurityPolicy if no other security manager has been installed and therefore requires a security policy file to be specified. The policy file must conform to the default policy implementation's
+ .na
+ \f2Policy File Syntax\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html.
+ .LP
+ .LP
+ The following policy file will allow the \f3jstatd\fP server to run without any security exceptions. This policy is less liberal then granting all permissions to all codebases, but is more liberal than a policy that grants the minimal permissions to run the \f3jstatd\fP server.
+@@ -143,7 +143,7 @@
+ .LP
+ Here are some examples of starting \f3jstatd\fP. Note that the \f3jstatd\fP scripts automatically start the server in the background.
+ .LP
+-.SS
++.SS
+ Using Internal RMI Registry
+ .LP
+ .LP
+@@ -158,7 +158,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Using External RMI Registry
+ .LP
+ .LP
+@@ -203,7 +203,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Inhibiting creation of an in\-process RMI registry
+ .LP
+ .LP
+@@ -218,7 +218,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Enabling RMI logging capabilities.
+ .LP
+ .LP
+@@ -238,20 +238,20 @@
+ .RS 3
+ .TP 2
+ o
+-java(1) \- the Java Application Launcher
++java(1) \- the Java Application Launcher
+ .TP 2
+ o
+-jps(1) \- the Java Process Status Application
++jps(1) \- the Java Process Status Application
+ .TP 2
+ o
+-jstat(1) \- the Java Virtual Machine Statistics Monitoring Tool
++jstat(1) \- the Java Virtual Machine Statistics Monitoring Tool
+ .TP 2
+ o
+ .na
+ \f2rmiregistry\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#rmi \- the Java Remote Object Registry
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#rmi \- the Java Remote Object Registry
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/keytool.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/keytool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -1,4 +1,4 @@
+-." Copyright (c) 1998, 2011, Oracle and/or its affiliates. All rights reserved.
++." Copyright (c) 1998-2011 keytool tool, Oracle and/or its affiliates. All rights reserved.
+ ." DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ ."
+ ." This code is free software; you can redistribute it and/or modify it
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH keytool 1 "10 May 2011"
++.TH keytool 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -43,7 +43,7 @@
+ .LP
+ .SH "DESCRIPTION"
+ .LP
+-\f3keytool\fP is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self\-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.
++\f3keytool\fP is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self\-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.
+ .LP
+ A \f2certificate\fP is a digitally signed statement from one entity (person, company, etc.), saying that the public key (and some other information) of some other entity has a particular value. (See Certificates.) When data is digitally signed, the signature can be verified to check the data integrity and authenticity. \f2Integrity\fP means that the data has not been modified or tampered with, and \f2authenticity\fP means the data indeed comes from whoever claims to have created and signed it.
+ .LP
+@@ -61,22 +61,22 @@
+ .RS 3
+ .TP 2
+ o
+-All command and option names are preceded by a minus sign (\-).
++All command and option names are preceded by a minus sign (\-).
+ .TP 2
+ o
+-The options for each command may be provided in any order.
++The options for each command may be provided in any order.
+ .TP 2
+ o
+-All items not italicized or in braces or square brackets are required to appear as is.
++All items not italicized or in braces or square brackets are required to appear as is.
+ .TP 2
+ o
+-Braces surrounding an option generally signify that a default value will be used if the option is not specified on the command line. Braces are also used around the \f2\-v\fP, \f2\-rfc\fP, and \f2\-J\fP options, which only have meaning if they appear on the command line (that is, they don't have any "default" values other than not existing).
++Braces surrounding an option generally signify that a default value will be used if the option is not specified on the command line. Braces are also used around the \f2\-v\fP, \f2\-rfc\fP, and \f2\-J\fP options, which only have meaning if they appear on the command line (that is, they don't have any "default" values other than not existing).
+ .TP 2
+ o
+-Brackets surrounding an option signify that the user is prompted for the value(s) if the option is not specified on the command line. (For a \f2\-keypass\fP option, if you do not specify the option on the command line, \f3keytool\fP will first attempt to use the keystore password to recover the private/secret key, and if this fails, will then prompt you for the private/secret key password.)
++Brackets surrounding an option signify that the user is prompted for the value(s) if the option is not specified on the command line. (For a \f2\-keypass\fP option, if you do not specify the option on the command line, \f3keytool\fP will first attempt to use the keystore password to recover the private/secret key, and if this fails, will then prompt you for the private/secret key password.)
+ .TP 2
+ o
+-Items in italics (option values) represent the actual values that must be supplied. For example, here is the format of the \f2\-printcert\fP command:
++Items in italics (option values) represent the actual values that must be supplied. For example, here is the format of the \f2\-printcert\fP command:
+ .nf
+ \f3
+ .fl
+@@ -85,7 +85,7 @@
+ \fP
+ .fi
+ .LP
+-When specifying a \f2\-printcert\fP command, replace \f2cert_file\fP with the actual file name, as in:
++When specifying a \f2\-printcert\fP command, replace \f2cert_file\fP with the actual file name, as in:
+ .nf
+ \f3
+ .fl
+@@ -95,10 +95,10 @@
+ .fi
+ .TP 2
+ o
+-Option values must be quoted if they contain a blank (space).
++Option values must be quoted if they contain a blank (space).
+ .TP 2
+ o
+-The \f2\-help\fP command is the default. Thus, the command line
++The \f2\-help\fP command is the default. Thus, the command line
+ .nf
+ \f3
+ .fl
+@@ -107,7 +107,7 @@
+ \fP
+ .fi
+ .LP
+-is equivalent to
++is equivalent to
+ .nf
+ \f3
+ .fl
+@@ -118,7 +118,7 @@
+ .RE
+
+ .LP
+-.SS
++.SS
+ Option Defaults
+ .LP
+ .LP
+@@ -187,24 +187,24 @@
+ .RS 3
+ .TP 2
+ o
+-If the underlying private key is of type "DSA", the \f2\-sigalg\fP option defaults to "SHA1withDSA"
++If the underlying private key is of type "DSA", the \f2\-sigalg\fP option defaults to "SHA1withDSA"
+ .TP 2
+ o
+-If the underlying private key is of type "RSA", the \f2\-sigalg\fP option defaults to "SHA256withRSA".
++If the underlying private key is of type "RSA", the \f2\-sigalg\fP option defaults to "SHA256withRSA".
+ .TP 2
+ o
+-If the underlying private key is of type "EC", the \f2\-sigalg\fP option defaults to "SHA256withECDSA".
++If the underlying private key is of type "EC", the \f2\-sigalg\fP option defaults to "SHA256withECDSA".
+ .RE
+
+ .LP
+ .LP
+-Please consult the
++Please consult the
+ .na
+ \f2Java Cryptography Architecture API Specification & Reference\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA for a full list of \f2\-keyalg\fP and \f2\-sigalg\fP you can choose from.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/CryptoSpec.html#AppA for a full list of \f2\-keyalg\fP and \f2\-sigalg\fP you can choose from.
+ .LP
+-.SS
++.SS
+ Common Options
+ .LP
+ .LP
+@@ -218,59 +218,59 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-storetype storetype
++\-storetype storetype
+ .LP
+-This qualifier specifies the type of keystore to be instantiated.
++This qualifier specifies the type of keystore to be instantiated.
+ .TP 3
+-\-keystore keystore
++\-keystore keystore
+ .LP
+-The keystore location.
++The keystore location.
+ .LP
+-If the JKS storetype is used and a keystore file does not yet exist, then certain \f3keytool\fP commands may result in a new keystore file being created. For example, if \f2keytool \-genkeypair\fP is invoked and the \f2\-keystore\fP option is not specified, the default keystore file named \f2.keystore\fP in the user's home directory will be created if it does not already exist. Similarly, if the \f2\-keystore \fP\f2ks_file\fP option is specified but \f2ks_file\fP does not exist, then it will be created
++If the JKS storetype is used and a keystore file does not yet exist, then certain \f3keytool\fP commands may result in a new keystore file being created. For example, if \f2keytool \-genkeypair\fP is invoked and the \f2\-keystore\fP option is not specified, the default keystore file named \f2.keystore\fP in the user's home directory will be created if it does not already exist. Similarly, if the \f2\-keystore \fP\f2ks_file\fP option is specified but \f2ks_file\fP does not exist, then it will be created
+ .LP
+-Note that the input stream from the \f2\-keystore\fP option is passed to the \f2KeyStore.load\fP method. If \f2NONE\fP is specified as the URL, then a null stream is passed to the \f2KeyStore.load\fP method. \f2NONE\fP should be specified if the \f2KeyStore\fP is not file\-based (for example, if it resides on a hardware token device).
++Note that the input stream from the \f2\-keystore\fP option is passed to the \f2KeyStore.load\fP method. If \f2NONE\fP is specified as the URL, then a null stream is passed to the \f2KeyStore.load\fP method. \f2NONE\fP should be specified if the \f2KeyStore\fP is not file\-based (for example, if it resides on a hardware token device).
+ .TP 3
+-\-storepass[:env|:file] argument
++\-storepass[:env|:file] argument
+ .LP
+-The password which is used to protect the integrity of the keystore.
++The password which is used to protect the integrity of the keystore.
+ .LP
+-If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP, which must be at least 6 characters long. Otherwise, the password is retrieved as follows:
++If the modifier \f2env\fP or \f2file\fP is not specified, then the password has the value \f2argument\fP, which must be at least 6 characters long. Otherwise, the password is retrieved as follows:
+ .RS 3
+ .TP 2
+ o
+-\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
++\f2env\fP: Retrieve the password from the environment variable named \f2argument\fP
+ .TP 2
+ o
+-\f2file\fP: Retrieve the password from the file named \f2argument\fP
++\f2file\fP: Retrieve the password from the file named \f2argument\fP
+ .RE
+ .LP
+-\f3Note\fP: All other options that require passwords, such as \f2\-keypass\fP, \f2\-srckeypass\fP, \f2\-destkeypass\fP \f2\-srcstorepass\fP, and \f2\-deststorepass\fP, accept the \f2env\fP and \f2file\fP modifiers. (Remember to separate the password option and the modifier with a colon, (\f2:\fP).)
++\f3Note\fP: All other options that require passwords, such as \f2\-keypass\fP, \f2\-srckeypass\fP, \f2\-destkeypass\fP \f2\-srcstorepass\fP, and \f2\-deststorepass\fP, accept the \f2env\fP and \f2file\fP modifiers. (Remember to separate the password option and the modifier with a colon, (\f2:\fP).)
+ .LP
+-The password must be provided to all commands that access the keystore contents. For such commands, if a \f2\-storepass\fP option is not provided at the command line, the user is prompted for it.
++The password must be provided to all commands that access the keystore contents. For such commands, if a \f2\-storepass\fP option is not provided at the command line, the user is prompted for it.
+ .LP
+-When retrieving information from the keystore, the password is optional; if no password is given, the integrity of the retrieved information cannot be checked and a warning is displayed.
++When retrieving information from the keystore, the password is optional; if no password is given, the integrity of the retrieved information cannot be checked and a warning is displayed.
+ .TP 3
+-\-providerName provider_name
++\-providerName provider_name
+ .LP
+-Used to identify a cryptographic service provider's name when listed in the security properties file.
++Used to identify a cryptographic service provider's name when listed in the security properties file.
+ .TP 3
+-\-providerClass provider_class_name
++\-providerClass provider_class_name
+ .LP
+-Used to specify the name of cryptographic service provider's master class file when the service provider is not listed in the security properties file.
++Used to specify the name of cryptographic service provider's master class file when the service provider is not listed in the security properties file.
+ .TP 3
+-\-providerArg provider_arg
++\-providerArg provider_arg
+ .LP
+-Used in conjunction with \f2\-providerClass\fP. Represents an optional string input argument for the constructor of \f2provider_class_name\fP.
++Used in conjunction with \f2\-providerClass\fP. Represents an optional string input argument for the constructor of \f2provider_class_name\fP.
+ .TP 3
+-\-protected
++\-protected
+ .LP
+-Either \f2true\fP or \f2false\fP. This value should be specified as \f2true\fP if a password must be given via a protected authentication path such as a dedicated PIN reader.
++Either \f2true\fP or \f2false\fP. This value should be specified as \f2true\fP if a password must be given via a protected authentication path such as a dedicated PIN reader.
+ .LP
+-Note: Since there are two keystores involved in \f2\-importkeystore\fP command, two options, namely, \f2\-srcprotected\fP and \f2\-destprotected\fP are provided for the source keystore and the destination keystore respectively.
++Note: Since there are two keystores involved in \f2\-importkeystore\fP command, two options, namely, \f2\-srcprotected\fP and \f2\-destprotected\fP are provided for the source keystore and the destination keystore respectively.
+ .TP 3
+-\-ext {name{:critical}{=value}}
++\-ext {name{:critical}{=value}}
+ .LP
+-Denotes an X.509 certificate extension. The option can be used in \-genkeypair and \-gencert to embed extensions into the certificate generated, or in \f2\-certreq\fP to show what extensions are requested in the certificate request. The option can appear multiple times. name can be a supported extension name (see below) or an arbitrary OID number. value, if provided, denotes the parameter for the extension; if omitted, denotes the default value (if defined) of the extension or the extension requires no parameter. The \f2:critical\fP modifier, if provided, means the extension's isCritical attribute is true; otherwise, false. You may use \f2:c\fP in place of \f2:critical\fP.
++Denotes an X.509 certificate extension. The option can be used in \-genkeypair and \-gencert to embed extensions into the certificate generated, or in \f2\-certreq\fP to show what extensions are requested in the certificate request. The option can appear multiple times. name can be a supported extension name (see below) or an arbitrary OID number. value, if provided, denotes the parameter for the extension; if omitted, denotes the default value (if defined) of the extension or the extension requires no parameter. The \f2:critical\fP modifier, if provided, means the extension's isCritical attribute is true; otherwise, false. You may use \f2:c\fP in place of \f2:critical\fP.
+ .RE
+
+ .LP
+@@ -278,6 +278,7 @@
+ Currently keytool supports these named extensions (case\-insensitive):
+ .LP
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -521,13 +522,13 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Name\fP\h'|\n(41u'\f3Value\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'BC or BasicConstraints\h'|\n(41u'
+@@ -543,7 +544,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'KU or KeyUsage\h'|\n(41u'
+@@ -559,7 +560,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'EKU or ExtendedkeyUsage\h'|\n(41u'
+@@ -577,7 +578,7 @@
+ .ne \n(e|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -602,7 +603,7 @@
+ .ne \n(g|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -625,7 +626,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'SIA or SubjectInfoAccess\h'|\n(41u'
+@@ -643,7 +644,7 @@
+ .ne \n(j|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -678,11 +679,12 @@
+ .rm h+
+ .rm i+
+ .rm j+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-38
+
+ .LP
+ .LP
+-For name as OID, value is the HEX dumped DER encoding of the extnValue for the extension excluding the OCTET STRING type and length bytes. Any extra character other than standard HEX numbers (0\-9, a\-f, A\-F) are ignored in the HEX string. Therefore, both \f2"01:02:03:04"\fP and \f2"01020304"\fP are accepted as identical values. If there's no value, the extension has an empty value field then.
++For name as OID, value is the HEX dumped DER encoding of the extnValue for the extension excluding the OCTET STRING type and length bytes. Any extra character other than standard HEX numbers (0\-9, a\-f, A\-F) are ignored in the HEX string. Therefore, both \f2"01:02:03:04"\fP and \f2"01020304"\fP are accepted as identical values. If there is no value, the extension has an empty value field then.
+ .LP
+ .LP
+ A special name \f2'honored'\fP, used in \f2\-gencert\fP only, denotes how the extensions included in the certificate request should be honored. The value for this name is a comma separated list of \f2"all"\fP (all requested extensions are honored), \f2"name{:[critical|non\-critical]}"\fP (the named extension is honored, but using a different isCritical attribute) and \f2"\-name"\fP (used with all, denotes an exception). Requested extensions are not honored by default.
+@@ -698,24 +700,24 @@
+ .LP
+ .SH "COMMANDS"
+ .LP
+-.SS
++.SS
+ Creating or Adding Data to the Keystore
+ .LP
+ .RS 3
+ .TP 3
+-\-gencert {\-rfc} {\-infile infile} {\-outfile outfile} {\-alias alias} {\-sigalg sigalg} {\-dname dname} {\-startdate startdate {\-ext ext}* {\-validity valDays} [\-keypass keypass] {\-keystore keystore} [\-storepass storepass] {\-storetype storetype} {\-providername provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-gencert {\-rfc} {\-infile infile} {\-outfile outfile} {\-alias alias} {\-sigalg sigalg} {\-dname dname} {\-startdate startdate {\-ext ext}* {\-validity valDays} [\-keypass keypass] {\-keystore keystore} [\-storepass storepass] {\-storetype storetype} {\-providername provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Generates a certificate as a response to a certificate request file (which can be created by the \f2keytool \-certreq\fP command). The command reads the request from \f2infile\fP (if omitted, from the standard input), signs it using alias's private key, and output the X.509 certificate into \f2outfile\fP (if omitted, to the standard output). If \f2\-rfc\fP is specified, output format is BASE64\-encoded PEM; otherwise, a binary DER is created.
++Generates a certificate as a response to a certificate request file (which can be created by the \f2keytool \-certreq\fP command). The command reads the request from \f2infile\fP (if omitted, from the standard input), signs it using alias's private key, and output the X.509 certificate into \f2outfile\fP (if omitted, to the standard output). If \f2\-rfc\fP is specified, output format is BASE64\-encoded PEM; otherwise, a binary DER is created.
+ .LP
+-\f2sigalg\fP specifies the algorithm that should be used to sign the certificate. \f2startdate\fP is the start time/date that the certificate is valid. \f2valDays\fP tells the number of days for which the certificate should be considered valid.
++\f2sigalg\fP specifies the algorithm that should be used to sign the certificate. \f2startdate\fP is the start time/date that the certificate is valid. \f2valDays\fP tells the number of days for which the certificate should be considered valid.
+ .LP
+-If \f2dname\fP is provided, it's used as the subject of the generated certificate. Otherwise, the one from the certificate request is used.
++If \f2dname\fP is provided, it's used as the subject of the generated certificate. Otherwise, the one from the certificate request is used.
+ .LP
+-\f2ext\fP shows what X.509 extensions will be embedded in the certificate. Read Common Options for the grammar of \f2\-ext\fP.
++\f2ext\fP shows what X.509 extensions will be embedded in the certificate. Read Common Options for the grammar of \f2\-ext\fP.
+ .LP
+-The \f2\-gencert\fP command enables you to create certificate chains. The following example creates a certificate, \f2e1\fP, that contains three certificates in its certificate chain.
++The \f2\-gencert\fP command enables you to create certificate chains. The following example creates a certificate, \f2e1\fP, that contains three certificates in its certificate chain.
+ .LP
+-The following commands creates four key pairs named \f2ca\fP, \f2ca1\fP, \f2ca2\fP, and \f2e1\fP:
++The following commands creates four key pairs named \f2ca\fP, \f2ca1\fP, \f2ca2\fP, and \f2e1\fP:
+ .nf
+ \f3
+ .fl
+@@ -730,7 +732,7 @@
+ \fP
+ .fi
+ .LP
+-The following two commands create a chain of signed certificates; \f2ca\fP signs ca1 and \f2ca1 signs ca2\fP, all of which are self\-issued:
++The following two commands create a chain of signed certificates; \f2ca\fP signs ca1 and \f2ca1 signs ca2\fP, all of which are self\-issued:
+ .nf
+ \f3
+ .fl
+@@ -741,7 +743,7 @@
+ \fP
+ .fi
+ .LP
+-The following command creates the certificate \f2e1\fP and stores it in the file \f2e1.cert\fP, which is signed by \f2ca2\fP. As a result, \f2e1\fP should contain \f2ca\fP, \f2ca1\fP, and \f2ca2\fP in its certificate chain:
++The following command creates the certificate \f2e1\fP and stores it in the file \f2e1.cert\fP, which is signed by \f2ca2\fP. As a result, \f2e1\fP should contain \f2ca\fP, \f2ca1\fP, and \f2ca2\fP in its certificate chain:
+ .nf
+ \f3
+ .fl
+@@ -750,29 +752,29 @@
+ \fP
+ .fi
+ .TP 3
+-\-genkeypair {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} {\-sigalg sigalg} [\-dname dname] [\-keypass keypass] {\-startdate value} {\-ext ext}* {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-genkeypair {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} {\-sigalg sigalg} [\-dname dname] [\-keypass keypass] {\-startdate value} {\-ext ext}* {\-validity valDays} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Generates a key pair (a public key and associated private key). Wraps the public key into an X.509 v3 self\-signed certificate, which is stored as a single\-element certificate chain. This certificate chain and the private key are stored in a new keystore entry identified by \f2alias\fP.
++Generates a key pair (a public key and associated private key). Wraps the public key into an X.509 v3 self\-signed certificate, which is stored as a single\-element certificate chain. This certificate chain and the private key are stored in a new keystore entry identified by \f2alias\fP.
+ .LP
+-\f2keyalg\fP specifies the algorithm to be used to generate the key pair, and \f2keysize\fP specifies the size of each key to be generated. \f2sigalg\fP specifies the algorithm that should be used to sign the self\-signed certificate; this algorithm must be compatible with \f2keyalg\fP.
++\f2keyalg\fP specifies the algorithm to be used to generate the key pair, and \f2keysize\fP specifies the size of each key to be generated. \f2sigalg\fP specifies the algorithm that should be used to sign the self\-signed certificate; this algorithm must be compatible with \f2keyalg\fP.
+ .LP
+-\f2dname\fP specifies the X.500 Distinguished Name to be associated with \f2alias\fP, and is used as the \f2issuer\fP and \f2subject\fP fields in the self\-signed certificate. If no distinguished name is provided at the command line, the user will be prompted for one.
++\f2dname\fP specifies the X.500 Distinguished Name to be associated with \f2alias\fP, and is used as the \f2issuer\fP and \f2subject\fP fields in the self\-signed certificate. If no distinguished name is provided at the command line, the user will be prompted for one.
+ .LP
+-\f2keypass\fP is a password used to protect the private key of the generated key pair. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
++\f2keypass\fP is a password used to protect the private key of the generated key pair. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
+ .LP
+-\f2startdate\fP specifies the issue time of the certificate, also known as the "Not Before" value of the X.509 certificate's Validity field.
++\f2startdate\fP specifies the issue time of the certificate, also known as the "Not Before" value of the X.509 certificate's Validity field.
+ .LP
+-The option value can be set in one of these two forms:
++The option value can be set in one of these two forms:
+ .RS 3
+ .TP 3
+ 1.
+-([+\-]\f2nnn\fP[ymdHMS])+
++([+\-]\f2nnn\fP[ymdHMS])+
+ .TP 3
+ 2.
+-[yyyy/mm/dd] [HH:MM:SS]
++[yyyy/mm/dd] [HH:MM:SS]
+ .RE
+ .LP
+-With the first form, the issue time is shifted by the specified value from the current time. The value is a concatenation of a sequence of sub values. Inside each sub value, the plus sign ("+") means shifting forward, and the minus sign ("\-") means shifting backward. The time to be shifted is \f2nnn\fP units of years, months, days, hours, minutes, or seconds (denoted by a single character of "y", "m", "d", "H", "M", or "S" respectively). The exact value of the issue time is calculated using the \f2java.util.GregorianCalendar.add(int field, int amount)\fP method on each sub value, from left to right. For example, by specifying \f2"\-startdate \-1y+1m\-1d"\fP, the issue time will be:
++With the first form, the issue time is shifted by the specified value from the current time. The value is a concatenation of a sequence of sub values. Inside each sub value, the plus sign ("+") means shifting forward, and the minus sign ("\-") means shifting backward. The time to be shifted is \f2nnn\fP units of years, months, days, hours, minutes, or seconds (denoted by a single character of "y", "m", "d", "H", "M", or "S" respectively). The exact value of the issue time is calculated using the \f2java.util.GregorianCalendar.add(int field, int amount)\fP method on each sub value, from left to right. For example, by specifying \f2"\-startdate \-1y+1m\-1d"\fP, the issue time will be:
+ .nf
+ \f3
+ .fl
+@@ -789,197 +791,197 @@
+ \fP
+ .fi
+ .LP
+-With the second form, the user sets the exact issue time in two parts, year/month/day and hour:minute:second (using the local time zone). The user may provide only one part, which means the other part is the same as the current date (or time). User must provide the exact number of digits as shown in the format definition (padding with 0 if shorter). When both the date and time are provided, there is one (and only one) space character between the two parts. The hour should always be provided in 24 hour format.
++With the second form, the user sets the exact issue time in two parts, year/month/day and hour:minute:second (using the local time zone). The user may provide only one part, which means the other part is the same as the current date (or time). User must provide the exact number of digits as shown in the format definition (padding with 0 if shorter). When both the date and time are provided, there is one (and only one) space character between the two parts. The hour should always be provided in 24 hour format.
+ .LP
+-When the option is not provided, the start date is the current time. The option can be provided at most once.
++When the option is not provided, the start date is the current time. The option can be provided at most once.
+ .LP
+-\f2valDays\fP specifies the number of days (starting at the date specified by \f2\-startdate\fP, or the current date if \f2\-startdate\fP is not specified) for which the certificate should be considered valid.
++\f2valDays\fP specifies the number of days (starting at the date specified by \f2\-startdate\fP, or the current date if \f2\-startdate\fP is not specified) for which the certificate should be considered valid.
+ .LP
+-This command was named \f2\-genkey\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarity the new name, \f2\-genkeypair\fP, is preferred going forward.
++This command was named \f2\-genkey\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarity the new name, \f2\-genkeypair\fP, is preferred going forward.
+ .TP 3
+-\-genseckey {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-genseckey {\-alias alias} {\-keyalg keyalg} {\-keysize keysize} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Generates a secret key and stores it in a new \f2KeyStore.SecretKeyEntry\fP identified by \f2alias\fP.
++Generates a secret key and stores it in a new \f2KeyStore.SecretKeyEntry\fP identified by \f2alias\fP.
+ .LP
+-\f2keyalg\fP specifies the algorithm to be used to generate the secret key, and \f2keysize\fP specifies the size of the key to be generated. \f2keypass\fP is a password used to protect the secret key. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
++\f2keyalg\fP specifies the algorithm to be used to generate the secret key, and \f2keysize\fP specifies the size of the key to be generated. \f2keypass\fP is a password used to protect the secret key. If no password is provided, the user is prompted for it. If you press RETURN at the prompt, the key password is set to the same password as that used for the keystore. \f2keypass\fP must be at least 6 characters long.
+ .TP 3
+-\-importcert {\-alias alias} {\-file cert_file} [\-keypass keypass] {\-noprompt} {\-trustcacerts} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-importcert {\-alias alias} {\-file cert_file} [\-keypass keypass] {\-noprompt} {\-trustcacerts} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Reads the certificate or certificate chain (where the latter is supplied in a PKCS#7 formatted reply or a sequence of X.509 certificates) from the file \f2cert_file\fP, and stores it in the keystore entry identified by \f2alias\fP. If no file is given, the certificate or certificate chain is read from stdin.
++Reads the certificate or certificate chain (where the latter is supplied in a PKCS#7 formatted reply or a sequence of X.509 certificates) from the file \f2cert_file\fP, and stores it in the keystore entry identified by \f2alias\fP. If no file is given, the certificate or certificate chain is read from stdin.
+ .LP
+-\f3keytool\fP can import X.509 v1, v2, and v3 certificates, and PKCS#7 formatted certificate chains consisting of certificates of that type. The data to be imported must be provided either in binary encoding format, or in printable encoding format (also known as Base64 encoding) as defined by the Internet RFC 1421 standard. In the latter case, the encoding must be bounded at the beginning by a string that starts with "\-\-\-\-\-BEGIN", and bounded at the end by a string that starts with "\-\-\-\-\-END".
++\f3keytool\fP can import X.509 v1, v2, and v3 certificates, and PKCS#7 formatted certificate chains consisting of certificates of that type. The data to be imported must be provided either in binary encoding format, or in printable encoding format (also known as Base64 encoding) as defined by the Internet RFC 1421 standard. In the latter case, the encoding must be bounded at the beginning by a string that starts with "\-\-\-\-\-BEGIN", and bounded at the end by a string that starts with "\-\-\-\-\-END".
+ .LP
+-You import a certificate for two reasons:
++You import a certificate for two reasons:
+ .RS 3
+ .TP 3
+ 1.
+-to add it to the list of trusted certificates, or
++to add it to the list of trusted certificates, or
+ .TP 3
+ 2.
+-to import a certificate reply received from a CA as the result of submitting a Certificate Signing Request (see the \-certreq command) to that CA.
++to import a certificate reply received from a CA as the result of submitting a Certificate Signing Request (see the \-certreq command) to that CA.
+ .RE
+ .LP
+-Which type of import is intended is indicated by the value of the \f2\-alias\fP option:
++Which type of import is intended is indicated by the value of the \f2\-alias\fP option:
+ .RS 3
+ .TP 3
+ 1.
+-\f3If the alias does not point to a key entry\fP, then \f3keytool\fP assumes you are adding a trusted certificate entry. In this case, the alias should not already exist in the keystore. If the alias does already exist, then \f3keytool\fP outputs an error, since there is already a trusted certificate for that alias, and does not import the certificate.
++\f3If the alias does not point to a key entry\fP, then \f3keytool\fP assumes you are adding a trusted certificate entry. In this case, the alias should not already exist in the keystore. If the alias does already exist, then \f3keytool\fP outputs an error, since there is already a trusted certificate for that alias, and does not import the certificate.
+ .TP 3
+ 2.
+-\f3If the alias points to a key entry\fP, then \f3keytool\fP assumes you are importing a certificate reply.
++\f3If the alias points to a key entry\fP, then \f3keytool\fP assumes you are importing a certificate reply.
+ .RE
+-\f3Importing a New Trusted Certificate\fP
++\f3Importing a New Trusted Certificate\fP
+ .LP
+-Before adding the certificate to the keystore, \f3keytool\fP tries to verify it by attempting to construct a chain of trust from that certificate to a self\-signed certificate (belonging to a root CA), using trusted certificates that are already available in the keystore.
++Before adding the certificate to the keystore, \f3keytool\fP tries to verify it by attempting to construct a chain of trust from that certificate to a self\-signed certificate (belonging to a root CA), using trusted certificates that are already available in the keystore.
+ .LP
+-If the \f2\-trustcacerts\fP option has been specified, additional certificates are considered for the chain of trust, namely the certificates in a file named "cacerts".
++If the \f2\-trustcacerts\fP option has been specified, additional certificates are considered for the chain of trust, namely the certificates in a file named "cacerts".
+ .LP
+-If \f3keytool\fP fails to establish a trust path from the certificate to be imported up to a self\-signed certificate (either from the keystore or the "cacerts" file), the certificate information is printed out, and the user is prompted to verify it, e.g., by comparing the displayed certificate fingerprints with the fingerprints obtained from some other (trusted) source of information, which might be the certificate owner himself/herself. Be very careful to ensure the certificate is valid prior to importing it as a "trusted" certificate! \-\- see WARNING Regarding Importing Trusted Certificates. The user then has the option of aborting the import operation. If the \f2\-noprompt\fP option is given, however, there will be no interaction with the user.
+-\f3Importing a Certificate Reply\fP
++If \f3keytool\fP fails to establish a trust path from the certificate to be imported up to a self\-signed certificate (either from the keystore or the "cacerts" file), the certificate information is printed out, and the user is prompted to verify it, e.g., by comparing the displayed certificate fingerprints with the fingerprints obtained from some other (trusted) source of information, which might be the certificate owner himself/herself. Be very careful to ensure the certificate is valid prior to importing it as a "trusted" certificate! \-\- see WARNING Regarding Importing Trusted Certificates. The user then has the option of aborting the import operation. If the \f2\-noprompt\fP option is given, however, there will be no interaction with the user.
++\f3Importing a Certificate Reply\fP
+ .LP
+-When importing a certificate reply, the certificate reply is validated using trusted certificates from the keystore, and optionally using the certificates configured in the "cacerts" keystore file (if the \f2\-trustcacerts\fP option was specified).
++When importing a certificate reply, the certificate reply is validated using trusted certificates from the keystore, and optionally using the certificates configured in the "cacerts" keystore file (if the \f2\-trustcacerts\fP option was specified).
+ .LP
+-The methods of determining whether the certificate reply is trusted are described in the following:
++The methods of determining whether the certificate reply is trusted are described in the following:
+ .RS 3
+ .TP 2
+ o
+-\f3If the reply is a single X.509 certificate\fP, \f3keytool\fP attempts to establish a trust chain, starting at the certificate reply and ending at a self\-signed certificate (belonging to a root CA). The certificate reply and the hierarchy of certificates used to authenticate the certificate reply form the new certificate chain of \f2alias\fP. If a trust chain cannot be established, the certificate reply is not imported. In this case, \f3keytool\fP does not print out the certificate and prompt the user to verify it, because it is very hard (if not impossible) for a user to determine the authenticity of the certificate reply.
++\f3If the reply is a single X.509 certificate\fP, \f3keytool\fP attempts to establish a trust chain, starting at the certificate reply and ending at a self\-signed certificate (belonging to a root CA). The certificate reply and the hierarchy of certificates used to authenticate the certificate reply form the new certificate chain of \f2alias\fP. If a trust chain cannot be established, the certificate reply is not imported. In this case, \f3keytool\fP does not print out the certificate and prompt the user to verify it, because it is very hard (if not impossible) for a user to determine the authenticity of the certificate reply.
+ .TP 2
+ o
+-\f3If the reply is a PKCS#7 formatted certificate chain or a sequence of X.509 certificates\fP, the chain is ordered with the user certificate first followed by zero or more CA certificates. If the chain ends with a self\-signed root CA certificate and \f2\-trustcacerts\fP option was specified, \f3keytool\fP will attempt to match it with any of the trusted certificates in the keystore or the "cacerts" keystore file. If the chain does not end with a self\-signed root CA certificate and the \f2\-trustcacerts\fP option was specified, \f3keytool\fP will try to find one from the trusted certificates in the keystore or the "cacerts" keystore file and add it to the end of the chain. If the certificate is not found and \f2\-noprompt\fP option is not specified, the information of the last certificate in the chain is printed out, and the user is prompted to verify it.
++\f3If the reply is a PKCS#7 formatted certificate chain or a sequence of X.509 certificates\fP, the chain is ordered with the user certificate first followed by zero or more CA certificates. If the chain ends with a self\-signed root CA certificate and \f2\-trustcacerts\fP option was specified, \f3keytool\fP will attempt to match it with any of the trusted certificates in the keystore or the "cacerts" keystore file. If the chain does not end with a self\-signed root CA certificate and the \f2\-trustcacerts\fP option was specified, \f3keytool\fP will try to find one from the trusted certificates in the keystore or the "cacerts" keystore file and add it to the end of the chain. If the certificate is not found and \f2\-noprompt\fP option is not specified, the information of the last certificate in the chain is printed out, and the user is prompted to verify it.
+ .RE
+ .LP
+-If the public key in the certificate reply matches the user's public key already stored with under \f2alias\fP, the old certificate chain is replaced with the new certificate chain in the reply. The old chain can only be replaced if a valid \f2keypass\fP, the password used to protect the private key of the entry, is supplied. If no password is provided, and the private key password is different from the keystore password, the user is prompted for it.
++If the public key in the certificate reply matches the user's public key already stored with under \f2alias\fP, the old certificate chain is replaced with the new certificate chain in the reply. The old chain can only be replaced if a valid \f2keypass\fP, the password used to protect the private key of the entry, is supplied. If no password is provided, and the private key password is different from the keystore password, the user is prompted for it.
+ .LP
+-This command was named \f2\-import\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-importcert\fP, is preferred going forward.
++This command was named \f2\-import\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-importcert\fP, is preferred going forward.
+ .TP 3
+-\-importkeystore \-srckeystore srckeystore \-destkeystore destkeystore {\-srcstoretype srcstoretype} {\-deststoretype deststoretype} [\-srcstorepass srcstorepass] [\-deststorepass deststorepass] {\-srcprotected} {\-destprotected} {\-srcalias srcalias {\-destalias destalias} [\-srckeypass srckeypass] [\-destkeypass destkeypass] } {\-noprompt} {\-srcProviderName src_provider_name} {\-destProviderName dest_provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-importkeystore \-srckeystore srckeystore \-destkeystore destkeystore {\-srcstoretype srcstoretype} {\-deststoretype deststoretype} [\-srcstorepass srcstorepass] [\-deststorepass deststorepass] {\-srcprotected} {\-destprotected} {\-srcalias srcalias {\-destalias destalias} [\-srckeypass srckeypass] [\-destkeypass destkeypass] } {\-noprompt} {\-srcProviderName src_provider_name} {\-destProviderName dest_provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Imports a single entry or all entries from a source keystore to a destination keystore.
++Imports a single entry or all entries from a source keystore to a destination keystore.
+ .LP
+-When the \f2srcalias\fP option is provided, the command imports the single entry identified by the alias to the destination keystore. If a destination alias is not provided with \f2destalias\fP, then \f2srcalias\fP is used as the destination alias. If the source entry is protected by a password, \f2srckeypass\fP will be used to recover the entry. If \f2srckeypass\fP is not provided, then \f3keytool\fP will attempt to use \f2srcstorepass\fP to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. The destination entry will be protected using \f2destkeypass\fP. If \f2destkeypass\fP is not provided, the destination entry will be protected with the source entry password.
++When the \f2srcalias\fP option is provided, the command imports the single entry identified by the alias to the destination keystore. If a destination alias is not provided with \f2destalias\fP, then \f2srcalias\fP is used as the destination alias. If the source entry is protected by a password, \f2srckeypass\fP will be used to recover the entry. If \f2srckeypass\fP is not provided, then \f3keytool\fP will attempt to use \f2srcstorepass\fP to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. The destination entry will be protected using \f2destkeypass\fP. If \f2destkeypass\fP is not provided, the destination entry will be protected with the source entry password.
+ .LP
+-If the \f2srcalias\fP option is not provided, then all entries in the source keystore are imported into the destination keystore. Each destination entry will be stored under the alias from the source entry. If the source entry is protected by a password, \f2srcstorepass\fP will be used to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. If a source keystore entry type is not supported in the destination keystore, or if an error occurs while storing an entry into the destination keystore, the user will be prompted whether to skip the entry and continue, or to quit. The destination entry will be protected with the source entry password.
++If the \f2srcalias\fP option is not provided, then all entries in the source keystore are imported into the destination keystore. Each destination entry will be stored under the alias from the source entry. If the source entry is protected by a password, \f2srcstorepass\fP will be used to recover the entry. If \f2srcstorepass\fP is either not provided or is incorrect, the user will be prompted for a password. If a source keystore entry type is not supported in the destination keystore, or if an error occurs while storing an entry into the destination keystore, the user will be prompted whether to skip the entry and continue, or to quit. The destination entry will be protected with the source entry password.
+ .LP
+-If the destination alias already exists in the destination keystore, the user is prompted to either overwrite the entry, or to create a new entry under a different alias name.
++If the destination alias already exists in the destination keystore, the user is prompted to either overwrite the entry, or to create a new entry under a different alias name.
+ .LP
+-Note that if \f2\-noprompt\fP is provided, the user will not be prompted for a new destination alias. Existing entries will automatically be overwritten with the destination alias name. Finally, entries that can not be imported are automatically skipped and a warning is output.
++Note that if \f2\-noprompt\fP is provided, the user will not be prompted for a new destination alias. Existing entries will automatically be overwritten with the destination alias name. Finally, entries that can not be imported are automatically skipped and a warning is output.
+ .TP 3
+-\-printcertreq {\-file file}
++\-printcertreq {\-file file}
+ .LP
+-Prints the content of a PKCS #10 format certificate request, which can be generated by the keytool \-certreq command. The command reads the request from file; if omitted, from the standard input.
++Prints the content of a PKCS #10 format certificate request, which can be generated by the keytool \-certreq command. The command reads the request from file; if omitted, from the standard input.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Exporting Data
+ .LP
+ .RS 3
+ .TP 3
+-\-certreq {\-alias alias} {\-dname dname} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-certreq {\-alias alias} {\-dname dname} {\-sigalg sigalg} {\-file certreq_file} [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Generates a Certificate Signing Request (CSR), using the PKCS#10 format.
++Generates a Certificate Signing Request (CSR), using the PKCS#10 format.
+ .LP
+-A CSR is intended to be sent to a certificate authority (CA). The CA will authenticate the certificate requestor (usually off\-line) and will return a certificate or certificate chain, used to replace the existing certificate chain (which initially consists of a self\-signed certificate) in the keystore.
++A CSR is intended to be sent to a certificate authority (CA). The CA will authenticate the certificate requestor (usually off\-line) and will return a certificate or certificate chain, used to replace the existing certificate chain (which initially consists of a self\-signed certificate) in the keystore.
+ .LP
+-The private key associated with \f2alias\fP is used to create the PKCS#10 certificate request. In order to access the private key, the appropriate password must be provided, since private keys are protected in the keystore with a password. If \f2keypass\fP is not provided at the command line, and is different from the password used to protect the integrity of the keystore, the user is prompted for it. If dname is provided, it's used as the subject in the CSR. Otherwise, the X.500 Distinguished Name associated with alias is used.
++The private key associated with \f2alias\fP is used to create the PKCS#10 certificate request. In order to access the private key, the appropriate password must be provided, since private keys are protected in the keystore with a password. If \f2keypass\fP is not provided at the command line, and is different from the password used to protect the integrity of the keystore, the user is prompted for it. If dname is provided, it's used as the subject in the CSR. Otherwise, the X.500 Distinguished Name associated with alias is used.
+ .LP
+-\f2sigalg\fP specifies the algorithm that should be used to sign the CSR.
++\f2sigalg\fP specifies the algorithm that should be used to sign the CSR.
+ .LP
+-The CSR is stored in the file \f2certreq_file\fP. If no file is given, the CSR is output to stdout.
++The CSR is stored in the file \f2certreq_file\fP. If no file is given, the CSR is output to stdout.
+ .LP
+-Use the \f2importcert\fP command to import the response from the CA.
++Use the \f2importcert\fP command to import the response from the CA.
+ .TP 3
+-\-exportcert {\-alias alias} {\-file cert_file} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-rfc} {\-v} {\-protected} {\-Jjavaoption}
++\-exportcert {\-alias alias} {\-file cert_file} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-rfc} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Reads (from the keystore) the certificate associated with \f2alias\fP, and stores it in the file \f2cert_file\fP.
++Reads (from the keystore) the certificate associated with \f2alias\fP, and stores it in the file \f2cert_file\fP.
+ .LP
+-If no file is given, the certificate is output to stdout.
++If no file is given, the certificate is output to stdout.
+ .LP
+-The certificate is by default output in binary encoding, but will instead be output in the printable encoding format, as defined by the Internet RFC 1421 standard, if the \f2\-rfc\fP option is specified.
++The certificate is by default output in binary encoding, but will instead be output in the printable encoding format, as defined by the Internet RFC 1421 standard, if the \f2\-rfc\fP option is specified.
+ .LP
+-If \f2alias\fP refers to a trusted certificate, that certificate is output. Otherwise, \f2alias\fP refers to a key entry with an associated certificate chain. In that case, the first certificate in the chain is returned. This certificate authenticates the public key of the entity addressed by \f2alias\fP.
++If \f2alias\fP refers to a trusted certificate, that certificate is output. Otherwise, \f2alias\fP refers to a key entry with an associated certificate chain. In that case, the first certificate in the chain is returned. This certificate authenticates the public key of the entity addressed by \f2alias\fP.
+ .LP
+-This command was named \f2\-export\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-exportcert\fP, is preferred going forward.
++This command was named \f2\-export\fP in previous releases. This old name is still supported in this release and will be supported in future releases, but for clarify the new name, \f2\-exportcert\fP, is preferred going forward.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Displaying Data
+ .LP
+ .RS 3
+ .TP 3
+-\-list {\-alias alias} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v | \-rfc} {\-protected} {\-Jjavaoption}
++\-list {\-alias alias} {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v | \-rfc} {\-protected} {\-Jjavaoption}
+ .LP
+-Prints (to stdout) the contents of the keystore entry identified by \f2alias\fP. If no alias is specified, the contents of the entire keystore are printed.
++Prints (to stdout) the contents of the keystore entry identified by \f2alias\fP. If no alias is specified, the contents of the entire keystore are printed.
+ .LP
+-This command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, with additional information such as the owner, issuer, serial number, and any extensions. If the \f2\-rfc\fP option is specified, certificate contents are printed using the printable encoding format, as defined by the Internet RFC 1421 standard
++This command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, with additional information such as the owner, issuer, serial number, and any extensions. If the \f2\-rfc\fP option is specified, certificate contents are printed using the printable encoding format, as defined by the Internet RFC 1421 standard
+ .LP
+-You cannot specify both \f2\-v\fP and \f2\-rfc\fP.
++You cannot specify both \f2\-v\fP and \f2\-rfc\fP.
+ .TP 3
+-\-printcert {\-file cert_file | \-sslserver host[:port]} {\-jarfile JAR_file {\-rfc} {\-v} {\-Jjavaoption}
++\-printcert {\-file cert_file | \-sslserver host[:port]} {\-jarfile JAR_file {\-rfc} {\-v} {\-Jjavaoption}
+ .LP
+-Reads the certificate from the file \f2cert_file\fP, the SSL server located at \f2host:port\fP, or the signed JAR file \f2JAR_file\fP (with the option \f2\-jarfile\fP and prints its contents in a human\-readable format. When no port is specified, the standard HTTPS port 443 is assumed. Note that \f2\-sslserver\fP and \f2\-file\fP options cannot be provided at the same time. Otherwise, an error is reported. If neither option is given, the certificate is read from stdin.
++Reads the certificate from the file \f2cert_file\fP, the SSL server located at \f2host:port\fP, or the signed JAR file \f2JAR_file\fP (with the option \f2\-jarfile\fP and prints its contents in a human\-readable format. When no port is specified, the standard HTTPS port 443 is assumed. Note that \f2\-sslserver\fP and \f2\-file\fP options cannot be provided at the same time. Otherwise, an error is reported. If neither option is given, the certificate is read from stdin.
+ .LP
+-If \f2\-rfc\fP is specified, keytool prints the certificate in PEM mode as defined by the Internet RFC 1421 standard.
++If \f2\-rfc\fP is specified, keytool prints the certificate in PEM mode as defined by the Internet RFC 1421 standard.
+ .LP
+-If the certificate is read from a file or stdin, it may be either binary encoded or in printable encoding format, as defined by the Internet RFC 1421 standard
++If the certificate is read from a file or stdin, it may be either binary encoded or in printable encoding format, as defined by the Internet RFC 1421 standard
+ .LP
+-If the SSL server is behind a firewall, \f2\-J\-Dhttps.proxyHost=proxyhost\fP and \f2\-J\-Dhttps.proxyPort=proxyport\fP can be specified on the command line for proxy tunneling. See the
++If the SSL server is behind a firewall, \f2\-J\-Dhttps.proxyHost=proxyhost\fP and \f2\-J\-Dhttps.proxyPort=proxyport\fP can be specified on the command line for proxy tunneling. See the
+ .na
+ \f2JSSE Reference Guide\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html for more information.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html for more information.
+ .LP
+-\f3Note\fP: This option can be used independently of a keystore.
++\f3Note\fP: This option can be used independently of a keystore.
+ .TP 3
+-\-printcrl \-file crl_ {\-v}
++\-printcrl \-file crl_ {\-v}
+ .LP
+-Reads the certificate revocation list (CRL) from the file \f2crl_file\fP.
++Reads the certificate revocation list (CRL) from the file \f2crl_file\fP.
+ .LP
+-A Certificate Revocation List (CRL) is a list of digital certificates which have been revoked by the Certificate Authority (CA) that issued them. The CA generates \f2crl_file\fP.
++A Certificate Revocation List (CRL) is a list of digital certificates which have been revoked by the Certificate Authority (CA) that issued them. The CA generates \f2crl_file\fP.
+ .LP
+-\f3Note\fP: This option can be used independently of a keystore.
++\f3Note\fP: This option can be used independently of a keystore.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Managing the Keystore
+ .LP
+ .RS 3
+ .TP 3
+-\-storepasswd [\-new new_storepass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
++\-storepasswd [\-new new_storepass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
+ .LP
+-Changes the password used to protect the integrity of the keystore contents. The new password is \f2new_storepass\fP, which must be at least 6 characters long.
++Changes the password used to protect the integrity of the keystore contents. The new password is \f2new_storepass\fP, which must be at least 6 characters long.
+ .TP 3
+-\-keypasswd {\-alias alias} [\-keypass old_keypass] [\-new new_keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
++\-keypasswd {\-alias alias} [\-keypass old_keypass] [\-new new_keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-Jjavaoption}
+ .LP
+-Changes the password under which the private/secret key identified by \f2alias\fP is protected, from \f2old_keypass\fP to \f2new_keypass\fP, which must be at least 6 characters long.
++Changes the password under which the private/secret key identified by \f2alias\fP is protected, from \f2old_keypass\fP to \f2new_keypass\fP, which must be at least 6 characters long.
+ .LP
+-If the \f2\-keypass\fP option is not provided at the command line, and the key password is different from the keystore password, the user is prompted for it.
++If the \f2\-keypass\fP option is not provided at the command line, and the key password is different from the keystore password, the user is prompted for it.
+ .LP
+-If the \f2\-new\fP option is not provided at the command line, the user is prompted for it.
++If the \f2\-new\fP option is not provided at the command line, the user is prompted for it.
+ .TP 3
+-\-delete [\-alias alias] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-delete [\-alias alias] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Deletes from the keystore the entry identified by \f2alias\fP. The user is prompted for the alias, if no alias is provided at the command line.
++Deletes from the keystore the entry identified by \f2alias\fP. The user is prompted for the alias, if no alias is provided at the command line.
+ .TP 3
+-\-changealias {\-alias alias} [\-destalias destalias] [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
++\-changealias {\-alias alias} [\-destalias destalias] [\-keypass keypass] {\-storetype storetype} {\-keystore keystore} [\-storepass storepass] {\-providerName provider_name} {\-providerClass provider_class_name {\-providerArg provider_arg}} {\-v} {\-protected} {\-Jjavaoption}
+ .LP
+-Move an existing keystore entry from the specified \f2alias\fP to a new alias, \f2destalias\fP. If no destination alias is provided, the command will prompt for one. If the original entry is protected with an entry password, the password can be supplied via the "\-keypass" option. If no key password is provided, the \f2storepass\fP (if given) will be attempted first. If that attempt fails, the user will be prompted for a password.
++Move an existing keystore entry from the specified \f2alias\fP to a new alias, \f2destalias\fP. If no destination alias is provided, the command will prompt for one. If the original entry is protected with an entry password, the password can be supplied via the "\-keypass" option. If no key password is provided, the \f2storepass\fP (if given) will be attempted first. If that attempt fails, the user will be prompted for a password.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Getting Help
+ .LP
+ .RS 3
+ .TP 3
+-\-help
++\-help
+ .LP
+-Lists the basic commands and their options.
++Lists the basic commands and their options.
+ .LP
+-For more information about a specific command, enter the following, where \f2command_name\fP is the name of the command:
++For more information about a specific command, enter the following, where \f2command_name\fP is the name of the command:
+ .nf
+ \f3
+ .fl
+@@ -995,7 +997,7 @@
+ .LP
+ Suppose you want to create a keystore for managing your public/private key pair and certificates from entities you trust.
+ .LP
+-.SS
++.SS
+ Generating Your Key Pair
+ .LP
+ .LP
+@@ -1041,7 +1043,7 @@
+ .LP
+ The rest of the examples assume you executed the \f2\-genkeypair\fP command without options specified, and that you responded to the prompts with values equal to those given in the first \f2\-genkeypair\fP command, above (for example, a distinguished name of "cn=Mark Jones, ou=Java, o=Oracle, c=US").
+ .LP
+-.SS
++.SS
+ Requesting a Signed Certificate from a Certification Authority
+ .LP
+ .LP
+@@ -1059,7 +1061,7 @@
+ .LP
+ This creates a CSR (for the entity identified by the default alias "mykey") and puts the request in the file named "MarkJ.csr". Submit this file to a CA, such as VeriSign, Inc. The CA will authenticate you, the requestor (usually off\-line), and then will return a certificate, signed by them, authenticating your public key. (In some cases, they will actually return a chain of certificates, each one authenticating the public key of the signer of the previous certificate in the chain.)
+ .LP
+-.SS
++.SS
+ Importing a Certificate for the CA
+ .LP
+ .LP
+@@ -1071,10 +1073,10 @@
+ .RS 3
+ .TP 2
+ o
+-If the certificate reply is a certificate chain, you just need the top certificate of the chain (that is, the "root" CA certificate authenticating that CA's public key).
++If the certificate reply is a certificate chain, you just need the top certificate of the chain (that is, the "root" CA certificate authenticating that CA's public key).
+ .TP 2
+ o
+-If the certificate reply is a single certificate, you need a certificate for the issuing CA (the one that signed it), and if that certificate is not self\-signed, you need a certificate for its signer, and so on, up to a self\-signed "root" CA certificate.
++If the certificate reply is a single certificate, you need a certificate for the issuing CA (the one that signed it), and if that certificate is not self\-signed, you need a certificate for its signer, and so on, up to a self\-signed "root" CA certificate.
+ .RE
+
+ .LP
+@@ -1102,11 +1104,11 @@
+ .LP
+ This creates a "trusted certificate" entry in the keystore, with the data from the file "ABCCA.cer", and assigns the alias "abc" to the entry.
+ .LP
+-.SS
++.SS
+ Importing the Certificate Reply from the CA
+ .LP
+ .LP
+-Once you've imported a certificate authenticating the public key of the CA you submitted your certificate signing request to (or there's already such a certificate in the "cacerts" file), you can import the certificate reply and thereby replace your self\-signed certificate with a certificate chain. This chain is the one returned by the CA in response to your request (if the CA reply is a chain), or one constructed (if the CA reply is a single certificate) using the certificate reply and trusted certificates that are already available in the keystore where you import the reply or in the "cacerts" keystore file.
++Once you've imported a certificate authenticating the public key of the CA you submitted your certificate signing request to (or there is already such a certificate in the "cacerts" file), you can import the certificate reply and thereby replace your self\-signed certificate with a certificate chain. This chain is the one returned by the CA in response to your request (if the CA reply is a chain), or one constructed (if the CA reply is a single certificate) using the certificate reply and trusted certificates that are already available in the keystore where you import the reply or in the "cacerts" keystore file.
+ .LP
+ .LP
+ For example, suppose you sent your certificate signing request to VeriSign. You can then import the reply via the following, which assumes the returned certificate is named "VSMarkJ.cer":
+@@ -1120,7 +1122,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Exporting a Certificate Authenticating Your Public Key
+ .LP
+ .LP
+@@ -1141,7 +1143,7 @@
+ .LP
+ Given that certificate, and the signed JAR file, a client can use the \f3jarsigner\fP tool to authenticate your signature.
+ .LP
+-.SS
++.SS
+ Importing Keystore
+ .LP
+ .LP
+@@ -1189,7 +1191,7 @@
+ .fi
+
+ .LP
+-.SS
++.SS
+ Generating Certificates for a Typical SSL Server
+ .LP
+ .LP
+@@ -1226,7 +1228,7 @@
+ .LP
+ .SH "TERMINOLOGY and WARNINGS"
+ .LP
+-.SS
++.SS
+ KeyStore
+ .LP
+ .LP
+@@ -1235,26 +1237,26 @@
+ .RS 3
+ .TP 2
+ o
+-\f3KeyStore Entries\fP
++\f3KeyStore Entries\fP
+ .LP
+-Keystores may have different types of entries. The two most applicable entry types for \f3keytool\fP include:
++Keystores may have different types of entries. The two most applicable entry types for \f3keytool\fP include:
+ .RS 3
+ .TP 3
+ 1.
+-\f3key entries\fP \- each holds very sensitive cryptographic key information, which is stored in a protected format to prevent unauthorized access. Typically, a key stored in this type of entry is a secret key, or a private key accompanied by the certificate "chain" for the corresponding public key. The \f3keytool\fP can handle both types of entries, while the \f3jarsigner\fP tool only handle the latter type of entry, that is private keys and their associated certificate chains.
++\f3key entries\fP \- each holds very sensitive cryptographic key information, which is stored in a protected format to prevent unauthorized access. Typically, a key stored in this type of entry is a secret key, or a private key accompanied by the certificate "chain" for the corresponding public key. The \f3keytool\fP can handle both types of entries, while the \f3jarsigner\fP tool only handle the latter type of entry, that is private keys and their associated certificate chains.
+ .TP 3
+ 2.
+-\f3trusted certificate entries\fP \- each contains a single public key certificate belonging to another party. It is called a "trusted certificate" because the keystore owner trusts that the public key in the certificate indeed belongs to the identity identified by the "subject" (owner) of the certificate. The issuer of the certificate vouches for this, by signing the certificate.
++\f3trusted certificate entries\fP \- each contains a single public key certificate belonging to another party. It is called a "trusted certificate" because the keystore owner trusts that the public key in the certificate indeed belongs to the identity identified by the "subject" (owner) of the certificate. The issuer of the certificate vouches for this, by signing the certificate.
+ .RE
+ .TP 2
+ o
+-\f3KeyStore Aliases\fP
++\f3KeyStore Aliases\fP
+ .LP
+-All keystore entries (key and trusted certificate entries) are accessed via unique \f2aliases\fP.
++All keystore entries (key and trusted certificate entries) are accessed via unique \f2aliases\fP.
+ .LP
+-An alias is specified when you add an entity to the keystore using the \-genseckey command to generate a secret key, \-genkeypair command to generate a key pair (public and private key) or the \-importcert command to add a certificate or certificate chain to the list of trusted certificates. Subsequent \f3keytool\fP commands must use this same alias to refer to the entity.
++An alias is specified when you add an entity to the keystore using the \-genseckey command to generate a secret key, \-genkeypair command to generate a key pair (public and private key) or the \-importcert command to add a certificate or certificate chain to the list of trusted certificates. Subsequent \f3keytool\fP commands must use this same alias to refer to the entity.
+ .LP
+-For example, suppose you use the alias \f2duke\fP to generate a new public/private key pair and wrap the public key into a self\-signed certificate (see Certificate Chains) via the following command:
++For example, suppose you use the alias \f2duke\fP to generate a new public/private key pair and wrap the public key into a self\-signed certificate (see Certificate Chains) via the following command:
+ .nf
+ \f3
+ .fl
+@@ -1263,7 +1265,7 @@
+ \fP
+ .fi
+ .LP
+-This specifies an initial password of "dukekeypasswd" required by subsequent commands to access the private key associated with the alias \f2duke\fP. If you later want to change duke's private key password, you use a command like the following:
++This specifies an initial password of "dukekeypasswd" required by subsequent commands to access the private key associated with the alias \f2duke\fP. If you later want to change duke's private key password, you use a command like the following:
+ .nf
+ \f3
+ .fl
+@@ -1272,36 +1274,36 @@
+ \fP
+ .fi
+ .LP
+-This changes the password from "dukekeypasswd" to "newpass".
++This changes the password from "dukekeypasswd" to "newpass".
+ .LP
+-Please note: A password should not actually be specified on a command line or in a script unless it is for testing purposes, or you are on a secure system. If you don't specify a required password option on a command line, you will be prompted for it.
++Please note: A password should not actually be specified on a command line or in a script unless it is for testing purposes, or you are on a secure system. If you don't specify a required password option on a command line, you will be prompted for it.
+ .TP 2
+ o
+-\f3KeyStore Implementation\fP
++\f3KeyStore Implementation\fP
+ .LP
+-The \f2KeyStore\fP class provided in the \f2java.security\fP package supplies well\-defined interfaces to access and modify the information in a keystore. It is possible for there to be multiple different concrete implementations, where each implementation is that for a particular \f2type\fP of keystore.
++The \f2KeyStore\fP class provided in the \f2java.security\fP package supplies well\-defined interfaces to access and modify the information in a keystore. It is possible for there to be multiple different concrete implementations, where each implementation is that for a particular \f2type\fP of keystore.
+ .LP
+-Currently, two command\-line tools (\f3keytool\fP and \f3jarsigner\fP) and a GUI\-based tool named \f3Policy Tool\fP make use of keystore implementations. Since \f2KeyStore\fP is publicly available, users can write additional security applications that use it.
++Currently, two command\-line tools (\f3keytool\fP and \f3jarsigner\fP) and a GUI\-based tool named \f3Policy Tool\fP make use of keystore implementations. Since \f2KeyStore\fP is publicly available, users can write additional security applications that use it.
+ .LP
+-There is a built\-in default implementation, provided by Oracle. It implements the keystore as a file, utilizing a proprietary keystore type (format) named "JKS". It protects each private key with its individual password, and also protects the integrity of the entire keystore with a (possibly different) password.
++There is a built\-in default implementation, provided by Oracle. It implements the keystore as a file, utilizing a proprietary keystore type (format) named "JKS". It protects each private key with its individual password, and also protects the integrity of the entire keystore with a (possibly different) password.
+ .LP
+-Keystore implementations are provider\-based. More specifically, the application interfaces supplied by \f2KeyStore\fP are implemented in terms of a "Service Provider Interface" (SPI). That is, there is a corresponding abstract \f2KeystoreSpi\fP class, also in the \f2java.security\fP package, which defines the Service Provider Interface methods that "providers" must implement. (The term "provider" refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API.) Thus, to provide a keystore implementation, clients must implement a "provider" and supply a KeystoreSpi subclass implementation, as described in
++Keystore implementations are provider\-based. More specifically, the application interfaces supplied by \f2KeyStore\fP are implemented in terms of a "Service Provider Interface" (SPI). That is, there is a corresponding abstract \f2KeystoreSpi\fP class, also in the \f2java.security\fP package, which defines the Service Provider Interface methods that "providers" must implement. (The term "provider" refers to a package or a set of packages that supply a concrete implementation of a subset of services that can be accessed by the Java Security API.) Thus, to provide a keystore implementation, clients must implement a "provider" and supply a KeystoreSpi subclass implementation, as described in
+ .na
+ \f2How to Implement a Provider for the Java Cryptography Architecture\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/crypto/HowToImplAProvider.html.
+ .LP
+-Applications can choose different \f2types\fP of keystore implementations from different providers, using the "getInstance" factory method supplied in the \f2KeyStore\fP class. A keystore type defines the storage and data format of the keystore information, and the algorithms used to protect private/secret keys in the keystore and the integrity of the keystore itself. Keystore implementations of different types are not compatible.
++Applications can choose different \f2types\fP of keystore implementations from different providers, using the "getInstance" factory method supplied in the \f2KeyStore\fP class. A keystore type defines the storage and data format of the keystore information, and the algorithms used to protect private/secret keys in the keystore and the integrity of the keystore itself. Keystore implementations of different types are not compatible.
+ .LP
+-\f3keytool\fP works on any file\-based keystore implementation. (It treats the keystore location that is passed to it at the command line as a filename and converts it to a FileInputStream, from which it loads the keystore information.) The \f3jarsigner\fP and \f3policytool\fP tools, on the other hand, can read a keystore from any location that can be specified using a URL.
++\f3keytool\fP works on any file\-based keystore implementation. (It treats the keystore location that is passed to it at the command line as a filename and converts it to a FileInputStream, from which it loads the keystore information.) The \f3jarsigner\fP and \f3policytool\fP tools, on the other hand, can read a keystore from any location that can be specified using a URL.
+ .LP
+-For \f3keytool\fP and \f3jarsigner\fP, you can specify a keystore type at the command line, via the \f2\-storetype\fP option. For \f3Policy Tool\fP, you can specify a keystore type via the "Keystore" menu.
++For \f3keytool\fP and \f3jarsigner\fP, you can specify a keystore type at the command line, via the \f2\-storetype\fP option. For \f3Policy Tool\fP, you can specify a keystore type via the "Keystore" menu.
+ .LP
+-If you don't explicitly specify a keystore type, the tools choose a keystore implementation based simply on the value of the \f2keystore.type\fP property specified in the security properties file. The security properties file is called \f2java.security\fP, and it resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
++If you don't explicitly specify a keystore type, the tools choose a keystore implementation based simply on the value of the \f2keystore.type\fP property specified in the security properties file. The security properties file is called \f2java.security\fP, and it resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
+ .LP
+-Each tool gets the \f2keystore.type\fP value and then examines all the currently\-installed providers until it finds one that implements keystores of that type. It then uses the keystore implementation from that provider.
++Each tool gets the \f2keystore.type\fP value and then examines all the currently\-installed providers until it finds one that implements keystores of that type. It then uses the keystore implementation from that provider.
+ .LP
+-The \f2KeyStore\fP class defines a static method named \f2getDefaultType\fP that lets applications and applets retrieve the value of the \f2keystore.type\fP property. The following line of code creates an instance of the default keystore type (as specified in the \f2keystore.type\fP property):
++The \f2KeyStore\fP class defines a static method named \f2getDefaultType\fP that lets applications and applets retrieve the value of the \f2keystore.type\fP property. The following line of code creates an instance of the default keystore type (as specified in the \f2keystore.type\fP property):
+ .nf
+ \f3
+ .fl
+@@ -1310,7 +1312,7 @@
+ \fP
+ .fi
+ .LP
+-The default keystore type is "jks" (the proprietary type of the keystore implementation provided by Oracle). This is specified by the following line in the security properties file:
++The default keystore type is "jks" (the proprietary type of the keystore implementation provided by Oracle). This is specified by the following line in the security properties file:
+ .nf
+ \f3
+ .fl
+@@ -1319,9 +1321,9 @@
+ \fP
+ .fi
+ .LP
+-To have the tools utilize a keystore implementation other than the default, you can change that line to specify a different keystore type.
++To have the tools utilize a keystore implementation other than the default, you can change that line to specify a different keystore type.
+ .LP
+-For example, if you have a provider package that supplies a keystore implementation for a keystore type called "pkcs12", change the line to
++For example, if you have a provider package that supplies a keystore implementation for a keystore type called "pkcs12", change the line to
+ .nf
+ \f3
+ .fl
+@@ -1330,100 +1332,100 @@
+ \fP
+ .fi
+ .LP
+-Note: case doesn't matter in keystore type designations. For example, "JKS" would be considered the same as "jks".
++Note: case doesn't matter in keystore type designations. For example, "JKS" would be considered the same as "jks".
+ .RE
+
+ .LP
+-.SS
++.SS
+ Certificate
+ .LP
+-A \f3certificate\fP (also known as a \f3public\-key certificate\fP) is a digitally signed statement from one entity (the \f2issuer\fP), saying that the public key (and some other information) of another entity (the \f2subject\fP) has some specific value.
++A \f3certificate\fP (also known as a \f3public\-key certificate\fP) is a digitally signed statement from one entity (the \f2issuer\fP), saying that the public key (and some other information) of another entity (the \f2subject\fP) has some specific value.
+ .RS 3
+ .TP 2
+ o
+-\f3Certificate Terms\fP
++\f3Certificate Terms\fP
+ .RS 3
+ .TP 3
+-Public Keys
++Public Keys
+ .LP
+-These are numbers associated with a particular entity, and are intended to be known to everyone who needs to have trusted interactions with that entity. Public keys are used to verify signatures.
++These are numbers associated with a particular entity, and are intended to be known to everyone who needs to have trusted interactions with that entity. Public keys are used to verify signatures.
+ .TP 3
+-Digitally Signed
++Digitally Signed
+ .LP
+-If some data is \f2digitally signed\fP it has been stored with the "identity" of an entity, and a signature that proves that entity knows about the data. The data is rendered unforgeable by signing with the entity's private key.
++If some data is \f2digitally signed\fP it has been stored with the "identity" of an entity, and a signature that proves that entity knows about the data. The data is rendered unforgeable by signing with the entity's private key.
+ .TP 3
+-Identity
++Identity
+ .LP
+-A known way of addressing an entity. In some systems the identity is the public key, in others it can be anything from a Unix UID to an Email address to an X.509 Distinguished Name.
++A known way of addressing an entity. In some systems the identity is the public key, in others it can be anything from a Unix UID to an Email address to an X.509 Distinguished Name.
+ .TP 3
+-Signature
++Signature
+ .LP
+-A signature is computed over some data using the private key of an entity (the \f2signer\fP, which in the case of a certificate is also known as the \f2issuer\fP).
++A signature is computed over some data using the private key of an entity (the \f2signer\fP, which in the case of a certificate is also known as the \f2issuer\fP).
+ .TP 3
+-Private Keys
++Private Keys
+ .LP
+-These are numbers, each of which is supposed to be known only to the particular entity whose private key it is (that is, it's supposed to be kept secret). Private and public keys exist in pairs in all public key cryptography systems (also referred to as "public key crypto systems"). In a typical public key crypto system, such as DSA, a private key corresponds to exactly one public key. Private keys are used to compute signatures.
++These are numbers, each of which is supposed to be known only to the particular entity whose private key it is (that is, it's supposed to be kept secret). Private and public keys exist in pairs in all public key cryptography systems (also referred to as "public key crypto systems"). In a typical public key crypto system, such as DSA, a private key corresponds to exactly one public key. Private keys are used to compute signatures.
+ .TP 3
+-Entity
++Entity
+ .LP
+-An entity is a person, organization, program, computer, business, bank, or something else you are trusting to some degree.
++An entity is a person, organization, program, computer, business, bank, or something else you are trusting to some degree.
+ .RE
+ .LP
+-Basically, public key cryptography requires access to users' public keys. In a large\-scale networked environment it is impossible to guarantee that prior relationships between communicating entities have been established or that a trusted repository exists with all used public keys. Certificates were invented as a solution to this public key distribution problem. Now a \f2Certification Authority\fP (CA) can act as a trusted third party. CAs are entities (for example, businesses) that are trusted to sign (issue) certificates for other entities. It is assumed that CAs will only create valid and reliable certificates, as they are bound by legal agreements. There are many public Certification Authorities, such as
++Basically, public key cryptography requires access to users' public keys. In a large\-scale networked environment it is impossible to guarantee that prior relationships between communicating entities have been established or that a trusted repository exists with all used public keys. Certificates were invented as a solution to this public key distribution problem. Now a \f2Certification Authority\fP (CA) can act as a trusted third party. CAs are entities (for example, businesses) that are trusted to sign (issue) certificates for other entities. It is assumed that CAs will only create valid and reliable certificates, as they are bound by legal agreements. There are many public Certification Authorities, such as
+ .na
+ \f2VeriSign\fP @
+ .fi
+-http://www.verisign.com/,
++http://www.verisign.com/,
+ .na
+ \f2Thawte\fP @
+ .fi
+-http://www.thawte.com/,
++http://www.thawte.com/,
+ .na
+ \f2Entrust\fP @
+ .fi
+-http://www.entrust.com/, and so on. You can also run your own Certification Authority using products such as Microsoft Certificate Server or the Entrust CA product for your organization.
++http://www.entrust.com/, and so on. You can also run your own Certification Authority using products such as Microsoft Certificate Server or the Entrust CA product for your organization.
+ .LP
+-Using \f3keytool\fP, it is possible to display, import, and export certificates. It is also possible to generate self\-signed certificates.
++Using \f3keytool\fP, it is possible to display, import, and export certificates. It is also possible to generate self\-signed certificates.
+ .LP
+-\f3keytool\fP currently handles X.509 certificates.
++\f3keytool\fP currently handles X.509 certificates.
+ .TP 2
+ o
+-\f3X.509 Certificates\fP
++\f3X.509 Certificates\fP
+ .LP
+-The X.509 standard defines what information can go into a certificate, and describes how to write it down (the data format). All the data in a certificate is encoded using two related standards called ASN.1/DER. \f2Abstract Syntax Notation 1\fP describes data. The \f2Definite Encoding Rules\fP describe a single way to store and transfer that data.
++The X.509 standard defines what information can go into a certificate, and describes how to write it down (the data format). All the data in a certificate is encoded using two related standards called ASN.1/DER. \f2Abstract Syntax Notation 1\fP describes data. The \f2Definite Encoding Rules\fP describe a single way to store and transfer that data.
+ .LP
+-All X.509 certificates have the following data, in addition to the signature:
++All X.509 certificates have the following data, in addition to the signature:
+ .RS 3
+ .TP 3
+-Version
++Version
+ .LP
+-This identifies which version of the X.509 standard applies to this certificate, which affects what information can be specified in it. Thus far, three versions are defined. \f3keytool\fP can import and export v1, v2, and v3 certificates. It generates v3 certificates.
++This identifies which version of the X.509 standard applies to this certificate, which affects what information can be specified in it. Thus far, three versions are defined. \f3keytool\fP can import and export v1, v2, and v3 certificates. It generates v3 certificates.
+ .LP
+-\f2X.509 Version 1\fP has been available since 1988, is widely deployed, and is the most generic.
++\f2X.509 Version 1\fP has been available since 1988, is widely deployed, and is the most generic.
+ .LP
+-\f2X.509 Version 2\fP introduced the concept of subject and issuer unique identifiers to handle the possibility of reuse of subject and/or issuer names over time. Most certificate profile documents strongly recommend that names not be reused, and that certificates should not make use of unique identifiers. Version 2 certificates are not widely used.
++\f2X.509 Version 2\fP introduced the concept of subject and issuer unique identifiers to handle the possibility of reuse of subject and/or issuer names over time. Most certificate profile documents strongly recommend that names not be reused, and that certificates should not make use of unique identifiers. Version 2 certificates are not widely used.
+ .LP
+-\f2X.509 Version 3\fP is the most recent (1996) and supports the notion of extensions, whereby anyone can define an extension and include it in the certificate. Some common extensions in use today are: \f2KeyUsage\fP (limits the use of the keys to particular purposes such as "signing\-only") and \f2AlternativeNames\fP (allows other identities to also be associated with this public key, e.g. DNS names, Email addresses, IP addresses). Extensions can be marked \f2critical\fP to indicate that the extension should be checked and enforced/used. For example, if a certificate has the KeyUsage extension marked critical and set to "keyCertSign" then if this certificate is presented during SSL communication, it should be rejected, as the certificate extension indicates that the associated private key should only be used for signing certificates and not for SSL use.
++\f2X.509 Version 3\fP is the most recent (1996) and supports the notion of extensions, whereby anyone can define an extension and include it in the certificate. Some common extensions in use today are: \f2KeyUsage\fP (limits the use of the keys to particular purposes such as "signing\-only") and \f2AlternativeNames\fP (allows other identities to also be associated with this public key, e.g. DNS names, Email addresses, IP addresses). Extensions can be marked \f2critical\fP to indicate that the extension should be checked and enforced/used. For example, if a certificate has the KeyUsage extension marked critical and set to "keyCertSign" then if this certificate is presented during SSL communication, it should be rejected, as the certificate extension indicates that the associated private key should only be used for signing certificates and not for SSL use.
+ .TP 3
+-Serial Number
++Serial Number
+ .LP
+-The entity that created the certificate is responsible for assigning it a serial number to distinguish it from other certificates it issues. This information is used in numerous ways, for example when a certificate is revoked its serial number is placed in a Certificate Revocation List (CRL).
++The entity that created the certificate is responsible for assigning it a serial number to distinguish it from other certificates it issues. This information is used in numerous ways, for example when a certificate is revoked its serial number is placed in a Certificate Revocation List (CRL).
+ .TP 3
+-Signature Algorithm Identifier
++Signature Algorithm Identifier
+ .LP
+-This identifies the algorithm used by the CA to sign the certificate.
++This identifies the algorithm used by the CA to sign the certificate.
+ .TP 3
+-Issuer Name
++Issuer Name
+ .LP
+-The X.500 Distinguished Name of the entity that signed the certificate. This is normally a CA. Using this certificate implies trusting the entity that signed this certificate. (Note that in some cases, such as \f2root or top\-level\fP CA certificates, the issuer signs its own certificate.)
++The X.500 Distinguished Name of the entity that signed the certificate. This is normally a CA. Using this certificate implies trusting the entity that signed this certificate. (Note that in some cases, such as \f2root or top\-level\fP CA certificates, the issuer signs its own certificate.)
+ .TP 3
+-Validity Period
++Validity Period
+ .LP
+-Each certificate is valid only for a limited amount of time. This period is described by a start date and time and an end date and time, and can be as short as a few seconds or almost as long as a century. The validity period chosen depends on a number of factors, such as the strength of the private key used to sign the certificate or the amount one is willing to pay for a certificate. This is the expected period that entities can rely on the public value, if the associated private key has not been compromised.
++Each certificate is valid only for a limited amount of time. This period is described by a start date and time and an end date and time, and can be as short as a few seconds or almost as long as a century. The validity period chosen depends on a number of factors, such as the strength of the private key used to sign the certificate or the amount one is willing to pay for a certificate. This is the expected period that entities can rely on the public value, if the associated private key has not been compromised.
+ .TP 3
+-Subject Name
++Subject Name
+ .LP
+-The name of the entity whose public key the certificate identifies. This name uses the X.500 standard, so it is intended to be unique across the Internet. This is the X.500 Distinguished Name (DN) of the entity, for example,
++The name of the entity whose public key the certificate identifies. This name uses the X.500 standard, so it is intended to be unique across the Internet. This is the X.500 Distinguished Name (DN) of the entity, for example,
+ .nf
+ \f3
+ .fl
+@@ -1432,36 +1434,36 @@
+ \fP
+ .fi
+ .LP
+-(These refer to the subject's Common Name, Organizational Unit, Organization, and Country.)
++(These refer to the subject's Common Name, Organizational Unit, Organization, and Country.)
+ .TP 3
+-Subject Public Key Information
++Subject Public Key Information
+ .LP
+-This is the public key of the entity being named, together with an algorithm identifier which specifies which public key crypto system this key belongs to and any associated key parameters.
++This is the public key of the entity being named, together with an algorithm identifier which specifies which public key crypto system this key belongs to and any associated key parameters.
+ .RE
+ .TP 2
+ o
+-\f3Certificate Chains\fP
++\f3Certificate Chains\fP
+ .LP
+-\f3keytool\fP can create and manage keystore "key" entries that each contain a private key and an associated certificate "chain". The first certificate in the chain contains the public key corresponding to the private key.
++\f3keytool\fP can create and manage keystore "key" entries that each contain a private key and an associated certificate "chain". The first certificate in the chain contains the public key corresponding to the private key.
+ .LP
+-When keys are first generated (see the \-genkeypair command), the chain starts off containing a single element, a \f2self\-signed certificate\fP. A self\-signed certificate is one for which the issuer (signer) is the same as the subject (the entity whose public key is being authenticated by the certificate). Whenever the \f2\-genkeypair\fP command is called to generate a new public/private key pair, it also wraps the public key into a self\-signed certificate.
++When keys are first generated (see the \-genkeypair command), the chain starts off containing a single element, a \f2self\-signed certificate\fP. A self\-signed certificate is one for which the issuer (signer) is the same as the subject (the entity whose public key is being authenticated by the certificate). Whenever the \f2\-genkeypair\fP command is called to generate a new public/private key pair, it also wraps the public key into a self\-signed certificate.
+ .LP
+-Later, after a Certificate Signing Request (CSR) has been generated (see the \-certreq command) and sent to a Certification Authority (CA), the response from the CA is imported (see \-importcert), and the self\-signed certificate is replaced by a chain of certificates. At the bottom of the chain is the certificate (reply) issued by the CA authenticating the subject's public key. The next certificate in the chain is one that authenticates the \f2CA\fP's public key.
++Later, after a Certificate Signing Request (CSR) has been generated (see the \-certreq command) and sent to a Certification Authority (CA), the response from the CA is imported (see \-importcert), and the self\-signed certificate is replaced by a chain of certificates. At the bottom of the chain is the certificate (reply) issued by the CA authenticating the subject's public key. The next certificate in the chain is one that authenticates the \f2CA\fP's public key.
+ .LP
+-In many cases, this is a self\-signed certificate (that is, a certificate from the CA authenticating its own public key) and the last certificate in the chain. In other cases, the CA may return a chain of certificates. In this case, the bottom certificate in the chain is the same (a certificate signed by the CA, authenticating the public key of the key entry), but the second certificate in the chain is a certificate signed by a \f2different\fP CA, authenticating the public key of the CA you sent the CSR to. Then, the next certificate in the chain will be a certificate authenticating the second CA's key, and so on, until a self\-signed "root" certificate is reached. Each certificate in the chain (after the first) thus authenticates the public key of the signer of the previous certificate in the chain.
++In many cases, this is a self\-signed certificate (that is, a certificate from the CA authenticating its own public key) and the last certificate in the chain. In other cases, the CA may return a chain of certificates. In this case, the bottom certificate in the chain is the same (a certificate signed by the CA, authenticating the public key of the key entry), but the second certificate in the chain is a certificate signed by a \f2different\fP CA, authenticating the public key of the CA you sent the CSR to. Then, the next certificate in the chain will be a certificate authenticating the second CA's key, and so on, until a self\-signed "root" certificate is reached. Each certificate in the chain (after the first) thus authenticates the public key of the signer of the previous certificate in the chain.
+ .LP
+-Many CAs only return the issued certificate, with no supporting chain, especially when there is a flat hierarchy (no intermediates CAs). In this case, the certificate chain must be established from trusted certificate information already stored in the keystore.
++Many CAs only return the issued certificate, with no supporting chain, especially when there is a flat hierarchy (no intermediates CAs). In this case, the certificate chain must be established from trusted certificate information already stored in the keystore.
+ .LP
+-A different reply format (defined by the PKCS#7 standard) also includes the supporting certificate chain, in addition to the issued certificate. Both reply formats can be handled by \f3keytool\fP.
++A different reply format (defined by the PKCS#7 standard) also includes the supporting certificate chain, in addition to the issued certificate. Both reply formats can be handled by \f3keytool\fP.
+ .LP
+-The top\-level (root) CA certificate is self\-signed. However, the trust into the root's public key does not come from the root certificate itself (anybody could generate a self\-signed certificate with the distinguished name of say, the VeriSign root CA!), but from other sources like a newspaper. The root CA public key is widely known. The only reason it is stored in a certificate is because this is the format understood by most tools, so the certificate in this case is only used as a "vehicle" to transport the root CA's public key. Before you add the root CA certificate to your keystore, you should view it (using the \f2\-printcert\fP option) and compare the displayed fingerprint with the well\-known fingerprint (obtained from a newspaper, the root CA's Web page, etc.).
++The top\-level (root) CA certificate is self\-signed. However, the trust into the root's public key does not come from the root certificate itself (anybody could generate a self\-signed certificate with the distinguished name of say, the VeriSign root CA!), but from other sources like a newspaper. The root CA public key is widely known. The only reason it is stored in a certificate is because this is the format understood by most tools, so the certificate in this case is only used as a "vehicle" to transport the root CA's public key. Before you add the root CA certificate to your keystore, you should view it (using the \f2\-printcert\fP option) and compare the displayed fingerprint with the well\-known fingerprint (obtained from a newspaper, the root CA's Web page, etc.).
+ .TP 2
+ o
+-\f3The cacerts Certificates File\fP
++\f3The cacerts Certificates File\fP
+ .LP
+-A certificates file named \f3"cacerts"\fP resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
++A certificates file named \f3"cacerts"\fP resides in the security properties directory, \f2java.home\fP/lib/security, where \f2java.home\fP is the runtime environment's directory (the \f2jre\fP directory in the SDK or the top\-level directory of the Java 2 Runtime Environment).
+ .LP
+-The "cacerts" file represents a system\-wide keystore with CA certificates. System administrators can configure and manage that file using \f3keytool\fP, specifying "jks" as the keystore type. The "cacerts" keystore file ships with a default set of root CA certificates; list them with the following command:
++The "cacerts" file represents a system\-wide keystore with CA certificates. System administrators can configure and manage that file using \f3keytool\fP, specifying "jks" as the keystore type. The "cacerts" keystore file ships with a default set of root CA certificates; list them with the following command:
+ .nf
+ \f3
+ .fl
+@@ -1470,22 +1472,22 @@
+ \fP
+ .fi
+ .LP
+-The initial password of the "cacerts" keystore file is "changeit". System administrators should change that password and the default access permission of that file upon installing the SDK.
++The initial password of the "cacerts" keystore file is "changeit". System administrators should change that password and the default access permission of that file upon installing the SDK.
+ .LP
+-\f3IMPORTANT: Verify Your \fP\f4cacerts\fP\f3 File\fP: Since you trust the CAs in the \f2cacerts\fP file as entities for signing and issuing certificates to other entities, you must manage the \f2cacerts\fP file carefully. The \f2cacerts\fP file should contain only certificates of the CAs you trust. It is your responsibility to verify the trusted root CA certificates bundled in the \f2cacerts\fP file and make your own trust decisions. To remove an untrusted CA certificate from the \f2cacerts\fP file, use the delete option of the \f2keytool\fP command. You can find the \f2cacerts\fP file in the JRE installation directory. Contact your system administrator if you do not have permission to edit this file.
++\f3IMPORTANT: Verify Your \fP\f4cacerts\fP\f3 File\fP: Since you trust the CAs in the \f2cacerts\fP file as entities for signing and issuing certificates to other entities, you must manage the \f2cacerts\fP file carefully. The \f2cacerts\fP file should contain only certificates of the CAs you trust. It is your responsibility to verify the trusted root CA certificates bundled in the \f2cacerts\fP file and make your own trust decisions. To remove an untrusted CA certificate from the \f2cacerts\fP file, use the delete option of the \f2keytool\fP command. You can find the \f2cacerts\fP file in the JRE installation directory. Contact your system administrator if you do not have permission to edit this file.
+ .TP 2
+ o
+-\f3The Internet RFC 1421 Certificate Encoding Standard\fP
++\f3The Internet RFC 1421 Certificate Encoding Standard\fP
+ .LP
+-Certificates are often stored using the printable encoding format defined by the Internet RFC 1421 standard, instead of their binary encoding. This certificate format, also known as "Base 64 encoding", facilitates exporting certificates to other applications by email or through some other mechanism.
++Certificates are often stored using the printable encoding format defined by the Internet RFC 1421 standard, instead of their binary encoding. This certificate format, also known as "Base 64 encoding", facilitates exporting certificates to other applications by email or through some other mechanism.
+ .LP
+-Certificates read by the \f2\-importcert\fP and \f2\-printcert\fP commands can be in either this format or binary encoded.
++Certificates read by the \f2\-importcert\fP and \f2\-printcert\fP commands can be in either this format or binary encoded.
+ .LP
+-The \f2\-exportcert\fP command by default outputs a certificate in binary encoding, but will instead output a certificate in the printable encoding format, if the \f2\-rfc\fP option is specified.
++The \f2\-exportcert\fP command by default outputs a certificate in binary encoding, but will instead output a certificate in the printable encoding format, if the \f2\-rfc\fP option is specified.
+ .LP
+-The \f2\-list\fP command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, while if the \f2\-rfc\fP option is specified, the certificate is output in the printable encoding format.
++The \f2\-list\fP command by default prints the SHA1 fingerprint of a certificate. If the \f2\-v\fP option is specified, the certificate is printed in human\-readable format, while if the \f2\-rfc\fP option is specified, the certificate is output in the printable encoding format.
+ .LP
+-In its printable encoding format, the encoded certificate is bounded at the beginning by
++In its printable encoding format, the encoded certificate is bounded at the beginning by
+ .nf
+ \f3
+ .fl
+@@ -1494,7 +1496,7 @@
+ \fP
+ .fi
+ .LP
+-and at the end by
++and at the end by
+ .nf
+ \f3
+ .fl
+@@ -1505,7 +1507,7 @@
+ .RE
+
+ .LP
+-.SS
++.SS
+ X.500 Distinguished Names
+ .LP
+ .LP
+@@ -1514,22 +1516,22 @@
+ .RS 3
+ .TP 2
+ o
+-\f2commonName\fP \- common name of a person, e.g., "Susan Jones"
++\f2commonName\fP \- common name of a person, e.g., "Susan Jones"
+ .TP 2
+ o
+-\f2organizationUnit\fP \- small organization (e.g., department or division) name, e.g., "Purchasing"
++\f2organizationUnit\fP \- small organization (e.g., department or division) name, e.g., "Purchasing"
+ .TP 2
+ o
+-\f2organizationName\fP \- large organization name, e.g., "ABCSystems, Inc."
++\f2organizationName\fP \- large organization name, e.g., "ABCSystems, Inc."
+ .TP 2
+ o
+-\f2localityName\fP \- locality (city) name, e.g., "Palo Alto"
++\f2localityName\fP \- locality (city) name, e.g., "Palo Alto"
+ .TP 2
+ o
+-\f2stateName\fP \- state or province name, e.g., "California"
++\f2stateName\fP \- state or province name, e.g., "California"
+ .TP 2
+ o
+-\f2country\fP \- two\-letter country code, e.g., "CH"
++\f2country\fP \- two\-letter country code, e.g., "CH"
+ .RE
+
+ .LP
+@@ -1623,7 +1625,7 @@
+ .LP
+ It is never necessary to specify a distinguished name string on a command line. If it is needed for a command, but not supplied on the command line, the user is prompted for each of the subcomponents. In this case, a comma does not need to be escaped by a "\\".
+ .LP
+-.SS
++.SS
+ WARNING Regarding Importing Trusted Certificates
+ .LP
+ .LP
+@@ -1665,7 +1667,7 @@
+ .LP
+ Note: it is not required that you execute a \f2\-printcert\fP command prior to importing a certificate, since before adding a certificate to the list of trusted certificates in the keystore, the \f2\-importcert\fP command prints out the certificate information and prompts you to verify it. You then have the option of aborting the import operation. Note, however, this is only the case if you invoke the \f2\-importcert\fP command without the \f2\-noprompt\fP option. If the \f2\-noprompt\fP option is given, there is no interaction with the user.
+ .LP
+-.SS
++.SS
+ Warning Regarding Passwords
+ .LP
+ .LP
+@@ -1677,11 +1679,11 @@
+ .LP
+ If you don't specify a required password option on a command line, you will be prompted for it.
+ .LP
+-.SS
++.SS
+ Warning Regarding Certificate Conformance
+ .LP
+ .LP
+-The Internet standard
++The Internet standard
+ .na
+ \f2RFC 5280\fP @
+ .fi
+@@ -1692,21 +1694,21 @@
+ .RS 3
+ .TP 2
+ o
+-jar(1) tool documentation
++jar(1) tool documentation
+ .TP 2
+ o
+-jarsigner(1) tool documentation
++jarsigner(1) tool documentation
+ .TP 2
+ o
+-the
++the
+ .na
+ \f4Security\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/security/index.html trail of the
++http://docs.oracle.com/javase/tutorial/security/index.html trail of the
+ .na
+ \f4Java Tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/tutorial/ for examples of the use of \f3keytool\fP
++http://docs.oracle.com/javase/tutorial/ for examples of the use of \f3keytool\fP
+ .RE
+
+ .LP
+@@ -1727,13 +1729,13 @@
+ .RS 3
+ .TP 2
+ o
+-\f2\-export\fP, renamed to \f2\-exportcert\fP
++\f2\-export\fP, renamed to \f2\-exportcert\fP
+ .TP 2
+ o
+-\f2\-genkey\fP, renamed to \f2\-genkeypair\fP
++\f2\-genkey\fP, renamed to \f2\-genkeypair\fP
+ .TP 2
+ o
+-\f2\-import\fP, renamed to \f2\-importcert\fP
++\f2\-import\fP, renamed to \f2\-importcert\fP
+ .RE
+
+ .LP
+@@ -1746,20 +1748,20 @@
+ .na
+ \f2\-keyclone\fP @
+ .fi
+-http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#keycloneCmd
++http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#keycloneCmd
+ .TP 2
+ o
+ .na
+ \f2\-identitydb\fP @
+ .fi
+-http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#identitydbCmd
++http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#identitydbCmd
+ .TP 2
+ o
+ .na
+ \f2\-selfcert\fP @
+ .fi
+-http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#selfcertCmd
++http://java.sun.com/j2se/1.5.0/docs/tooldocs/windows/keytool.html#selfcertCmd
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/native2ascii.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/native2ascii.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH native2ascii 1 "10 May 2011"
++.TH native2ascii 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -50,23 +50,23 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-reverse
++\-reverse
+ Perform the reverse operation: Convert a file encoded in ISO\-8859\-1 with Unicode escapes to a file in any character encoding supported by the Java runtime environment.
+ .br
+ .br
+ .TP 3
+-\-encoding encoding_name
+-Specifies the name of the character encoding to be used by the conversion procedure. If this option is not present, the default character encoding (as determined by the \f2java.nio.charset.Charset.defaultCharset\fP method) is used. The \f2encoding_name\fP string must be the name of a character encoding that is supported by the Java runtime environment \- see the
++\-encoding encoding_name
++Specifies the name of the character encoding to be used by the conversion procedure. If this option is not present, the default character encoding (as determined by the \f2java.nio.charset.Charset.defaultCharset\fP method) is used. The \f2encoding_name\fP string must be the name of a character encoding that is supported by the Java runtime environment \- see the
+ .na
+ \f4Supported Encodings\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/intl/encoding.doc.html document.
++http://docs.oracle.com/javase/7/docs/technotes/guides/intl/encoding.doc.html document.
+ .br
+ .br
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/orbd.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/orbd.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH orbd 1 "10 May 2011"
++.TH orbd 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -29,11 +29,11 @@
+ \f3orbd\fP is used to enable clients to transparently locate and invoke persistent objects on servers in the CORBA environment.
+ .LP
+ .LP
+-\f3See also:\fP
++\f3See also:\fP
+ .na
+ \f2Naming Service\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
+ .LP
+ .SH "SYNOPSIS"
+ .LP
+@@ -54,10 +54,10 @@
+ .RS 3
+ .TP 2
+ o
+-The object reference in the Naming Service remains independent of the server life cycle. For example, the object reference could be published by the server in the Naming Service when it is first installed, and then, independent of how many times the server is started or shutdown, the ORBD will always return the correct object reference to the invoking client.
++The object reference in the Naming Service remains independent of the server life cycle. For example, the object reference could be published by the server in the Naming Service when it is first installed, and then, independent of how many times the server is started or shutdown, the ORBD will always return the correct object reference to the invoking client.
+ .TP 2
+ o
+-The client needs to lookup the object reference in the Naming Service only once, and can keep re\-using this reference independent of the changes introduced due to server life cycle.
++The client needs to lookup the object reference in the Naming Service only once, and can keep re\-using this reference independent of the changes introduced due to server life cycle.
+ .RE
+
+ .LP
+@@ -65,79 +65,79 @@
+ To access ORBD's Server Manager, the server must be started using servertool(1), which is a command\-line interface for application programmers to register, unregister, startup, and shutdown a persistent server. For more information on the Server Manager, see the section in this document titled \f2Server Manager\fP.
+ .LP
+ .LP
+-When \f2orbd\fP starts up, it also starts a naming service. For more information on the naming service, link to
++When \f2orbd\fP starts up, it also starts a naming service. For more information on the naming service, link to
+ .na
+ \f2Naming Service\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html.
+ .LP
+ .SH "OPTIONS"
+ .LP
+-.SS
++.SS
+ Required Options
+ .LP
+ .RS 3
+ .TP 3
+-\-ORBInitialPort nameserverport
+-Specifies the port on which the name server should be started. Once started, \f2orbd\fP will listen for incoming requests on this port. Note that when using Solaris software, you must become root to start a process on a port under 1024. For this reason, we recommend that you use a port number greater than or equal to 1024. (required)
++\-ORBInitialPort nameserverport
++Specifies the port on which the name server should be started. Once started, \f2orbd\fP will listen for incoming requests on this port. Note that when using Solaris software, you must become root to start a process on a port under 1024. For this reason, we recommend that you use a port number greater than or equal to 1024. (required)
+ .RE
+
+ .LP
+ .LP
+
+ .LP
+-.SS
++.SS
+ OTHER OPTIONS
+ .LP
+ .RS 3
+ .TP 3
+-\-port port
+-Specifies the activation port where ORBD should be started, and where ORBD will be accepting requests for persistent objects. The default value for this port is 1049. This port number is added to the port field of the persistent Interoperable Object References (IOR). (optional)
++\-port port
++Specifies the activation port where ORBD should be started, and where ORBD will be accepting requests for persistent objects. The default value for this port is 1049. This port number is added to the port field of the persistent Interoperable Object References (IOR). (optional)
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-defaultdb directory
+-Specifies the base where the ORBD persistent storage directory \f2orb.db\fP is created. If this option is not specified, the default value is "./orb.db". (optional)
++\-defaultdb directory
++Specifies the base where the ORBD persistent storage directory \f2orb.db\fP is created. If this option is not specified, the default value is "./orb.db". (optional)
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-serverPollingTime milliseconds
+-Specifies how often ORBD checks for the health of persistent servers registered via \f2servertool\fP. The default value is 1,000 ms. The value specified for \f2milliseconds\fP must be a valid positive integer. (optional)
++\-serverPollingTime milliseconds
++Specifies how often ORBD checks for the health of persistent servers registered via \f2servertool\fP. The default value is 1,000 ms. The value specified for \f2milliseconds\fP must be a valid positive integer. (optional)
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-serverStartupDelay milliseconds
+-Specifies how long ORBD waits before sending a location forward exception after a persistent server that is registered via \f2servertool\fP is restarted. The default value is 1,000 ms. The value specified for \f2milliseconds\fP must be a valid positive integer. (optional)
++\-serverStartupDelay milliseconds
++Specifies how long ORBD waits before sending a location forward exception after a persistent server that is registered via \f2servertool\fP is restarted. The default value is 1,000 ms. The value specified for \f2milliseconds\fP must be a valid positive integer. (optional)
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
+ .TP 3
+-
++
+ .RE
+
+ .LP
+ .SH "Starting and Stopping the Naming Service"
+ .LP
+ .LP
+-A Naming Service is a CORBA service that allows
++A Naming Service is a CORBA service that allows
+ .na
+ \f2CORBA objects\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#CORBA%20object to be named by means of binding a name to an object reference. The
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#CORBA%20object to be named by means of binding a name to an object reference. The
+ .na
+ \f2name binding\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#name%20binding may be stored in the naming service, and a client may supply the name to obtain the desired object reference.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlGlossary.html#name%20binding may be stored in the naming service, and a client may supply the name to obtain the desired object reference.
+ .LP
+ .LP
+ Prior to running a client or a server, you will start ORBD. ORBD includes a persistent Naming Service and a transient Naming Service, both of which are an implementation of the COS Naming Service.
+@@ -146,7 +146,7 @@
+ The \f4Persistent\fP\f3 Naming Service\fP provides persistence for naming contexts. This means that this information is persistent across service shutdowns and startups, and is recoverable in the event of a service failure. If ORBD is restarted, the Persistent Naming Service will restore the naming context graph, so that the binding of all clients' and servers' names remains intact (persistent).
+ .LP
+ .LP
+-\
++\
+ .LP
+ .LP
+ For backward compatibility, \f2tnameserv\fP, a \f4Transient\fP\f3 Naming Service\fP shipped with older versions of the JDK, is also included in this release of J2SE. A transient naming service retains naming contexts as long as it is running. If there is a service interruption, the naming context graph is lost.
+@@ -212,26 +212,26 @@
+ To stop the naming service, use the relevant operating system command, such as \f2pkill orbd\fP on Solaris, or \f2Ctrl+C\fP in the DOS window in which \f2orbd\fP is running. Note that names registered with the naming service may disappear when the service is terminated if the naming service is transient. The Java IDL naming service will run until it is explicitly stopped.
+ .LP
+ .LP
+-For more information on the Naming Service included with ORBD, see
++For more information on the Naming Service included with ORBD, see
+ .na
+ \f2Naming Service\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html.
+ .LP
+ .SH "Server Manager"
+ .LP
+ .LP
+ To access ORBD's Server Manager and run a persistent server, the server must be started using servertool(1), which is a command\-line interface for application programmers to register, unregister, startup, and shutdown a persistent server. When a server is started using \f2servertool\fP, it must be started on the same host and port on which \f2orbd\fP is executing. If the server is run on a different port, the information stored in the database for local contexts will be invalid and the service will not work properly.
+ .LP
+-.SS
++.SS
+ Server Manager: an Example
+ .LP
+ .LP
+-Using the
++Using the
+ .na
+ \f2sample tutorial\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlExample.html for our demonstration, you would run the \f2idlj\fP compiler and \f2javac\fP compiler as shown in the tutorial. To run the Server Manager, follow these steps for running the application:
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlExample.html for our demonstration, you would run the \f2idlj\fP compiler and \f2javac\fP compiler as shown in the tutorial. To run the Server Manager, follow these steps for running the application:
+ .LP
+ .LP
+ Start \f2orbd\fP.
+@@ -240,12 +240,12 @@
+ To start \f2orbd\fP from a UNIX command shell, enter:
+ .LP
+ .LP
+-\
++\
+ .LP
+ .nf
+ \f3
+ .fl
+- orbd \-ORBInitialPort 1050
++ orbd \-ORBInitialPort 1050
+ .fl
+ \fP
+ .fi
+@@ -314,7 +314,7 @@
+ Run the client application from another terminal window or prompt:
+ .LP
+ .LP
+-\
++\
+ .LP
+ .nf
+ \f3
+@@ -332,10 +332,10 @@
+ Specify the name server (\f2orbd\fP) port as done in the previous step, for example, \f2\-ORBInitialPort 1050\fP.
+ .LP
+ .LP
+-\
++\
+ .LP
+ .LP
+-\
++\
+ .LP
+ .LP
+ When you have finished experimenting with the Server Manager, be sure to shut down or kill the name server (\f2orbd\fP) and \f2servertool\fP.
+@@ -354,15 +354,15 @@
+ .na
+ \f2Naming Service\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html
+ .br
+ .TP 2
+ o
+-servertool(1)
++servertool(1)
+ .RE
+
+ .LP
+ .br
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/pack200.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/pack200.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH pack200 1 "10 May 2011"
++.TH pack200 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -35,14 +35,14 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options.
++options
++Command\-line options.
+ .TP 3
+-output\-file
+-Name of the output file.
++output\-file
++Name of the output file.
+ .TP 3
+-JAR\-file
+-Name of the input file.
++JAR\-file
++Name of the input file.
+ .RE
+
+ .LP
+@@ -54,7 +54,7 @@
+ .LP
+ The \f2pack200\fP tool uses several options to fine\-tune and set the compression engine.
+ .LP
+-.SS
++.SS
+ Typical usage:
+ .LP
+ .LP
+@@ -138,17 +138,17 @@
+ .LP
+ .RS 3
+ .TP 3
+-true
++true
+ .TP 3
+-false
+-In either case, the packer will set the deflation hint accordingly in the output archive, and will not transmit the individual deflation hints of archive elements.
++false
++In either case, the packer will set the deflation hint accordingly in the output archive, and will not transmit the individual deflation hints of archive elements.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-keep
+-Preserve deflation hints observed in the input JAR. (This is the default.)
++keep
++Preserve deflation hints observed in the input JAR. (This is the default.)
+ .RE
+
+ .LP
+@@ -160,11 +160,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-latest
+-The packer will attempt to determine the latest modification time, among all the available entries in the original archive, or the latest modification time of all the available entries in that segment. This single value will be transmitted as part of the segment and applied to all the entries in each segment. This can marginally decrease the transmitted size of the archive at the expense of setting all installed files to a single date.
++latest
++The packer will attempt to determine the latest modification time, among all the available entries in the original archive, or the latest modification time of all the available entries in that segment. This single value will be transmitted as part of the segment and applied to all the entries in each segment. This can marginally decrease the transmitted size of the archive at the expense of setting all installed files to a single date.
+ .TP 3
+-keep
+-Preserves modification times observed in the input JAR. (This is the default.)
++keep
++Preserves modification times observed in the input JAR. (This is the default.)
+ .RE
+
+ .LP
+@@ -182,14 +182,14 @@
+ .LP
+ .RS 3
+ .TP 3
+-error
+-The \f2pack200\fP operation as a whole will fail with a suitable explanation.
++error
++The \f2pack200\fP operation as a whole will fail with a suitable explanation.
+ .TP 3
+-strip
+-The attribute will be dropped. Note: Removing the required VM attributes may cause Class Loader failures.
++strip
++The attribute will be dropped. Note: Removing the required VM attributes may cause Class Loader failures.
+ .TP 3
+-pass
+-Upon encountering this attribute, the entire class will be transmitted as though it is a resource.
++pass
++Upon encountering this attribute, the entire class will be transmitted as though it is a resource.
+ .RE
+
+ .LP
+@@ -207,16 +207,16 @@
+ .LP
+ .RS 3
+ .TP 3
+-some\-layout\-string
+-The layout language is defined in the JSR 200 specification.
++some\-layout\-string
++The layout language is defined in the JSR 200 specification.
+ .LP
+-Example: \f2\-\-class\-attribute=SourceFile=RUH\fP
++Example: \f2\-\-class\-attribute=SourceFile=RUH\fP
+ .TP 3
+-error
+-Upon encountering this attribute, the pack200 operation will fail with a suitable explanation.
++error
++Upon encountering this attribute, the pack200 operation will fail with a suitable explanation.
+ .TP 3
+-strip
+-Upon encountering this attribute, the attribute will be removed from the output. Note: removing VM\-required attributes may cause Class Loader failures.
++strip
++Upon encountering this attribute, the attribute will be removed from the output. Note: removing VM\-required attributes may cause Class Loader failures.
+ .RE
+
+ .LP
+@@ -304,28 +304,28 @@
+ .RS 3
+ .TP 2
+ o
+-unpack200(1)
++unpack200(1)
+ .TP 2
+ o
+ .na
+ \f2Java SE Documentation\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/index.html
++http://docs.oracle.com/javase/7/docs/index.html
+ .TP 2
+ o
+ .na
+ \f2Java Deployment Guide \- Pack200\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
+ .TP 2
+ o
+-jar(1) \- Java Archive Tool
++jar(1) \- Java Archive Tool
+ .TP 2
+ o
+-jarsigner(1) \- JAR Signer tool
++jarsigner(1) \- JAR Signer tool
+ .TP 2
+ o
+-\f2attributes(5)\fP man page
++\f2attributes(5)\fP man page
+ .RE
+
+ .LP
+@@ -337,4 +337,4 @@
+ .LP
+ The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/policytool.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/policytool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,71 +19,86 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH policytool 1 "10 May 2011"
++.TH policytool 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ policytool \- PolicyTool Administration GUI Utility
+ .LP
+-\f3policytool\fP reads and writes a plain text policy file based on user input via the utility GUI.
++\f3policytool\fP reads and writes a plain text policy file based on user input via the utility GUI.
+ .SH "SYNOPSIS"
+ .LP
+-.RS 3
+-.TP 3
+-\
+-.TP 3
++.LP
+ Run the policytool Administrator's utility
++.LP
++.LP
+ \f4policytool\fP
+-.TP 3
++.LP
++.LP
+ Run policytool and load the specified policy file
++.LP
++.LP
+ \f4policytool\fP\f2[\-file\ \fP\f2filename\fP\f2]\fP
+-.TP 3
+-\
+-.TP 3
++.LP
++.LP
+ where:
++.LP
+ .RS 3
+ .TP 3
+-file
+-directs \f2policytool\fP to load a local policy file
++file
++directs \f2policytool\fP to load a local policy file
+ .TP 3
+-filename
+-The file name
++filename
++The file name
+ .RE
++
++.LP
+ .SH "DESCRIPTION"
+ .LP
+-\f3policytool\fP is a GUI that allows users to create and manage policy files. For details, see
++.LP
++\f3policytool\fP is a GUI that allows users to create and manage policy files. For details, see
+ .na
+ \f2the Policytool Users Guide\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html.
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html.
++.LP
+ .SH "OPTIONS"
++.LP
+ .RS 3
+ .TP 3
+-file
+-Loads \f2filename\fP.
++file
++Loads \f2filename\fP.
++.RE
++
++.LP
+ .SH "SEE ALSO"
++.LP
+ .na
+ \f2Default Policy Implementation and Syntax\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyFiles.html
+ .br
++
++.LP
+ .na
+ \f2Policy Tool Users' Guide\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/PolicyGuide.html
+ .br
++
++.LP
+ .na
+ \f2Security Permissions\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/permissions.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/permissions.html
+ .br
++
++.LP
+ .na
+ \f2Security Overview\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/security/overview/jsoverview.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/security/overview/jsoverview.html
+ .br
+-.RE
+-.RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/rmic.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/rmic.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmic 1 "10 May 2011"
++.TH rmic 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -75,11 +75,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-bootclasspath path
+-Overrides location of bootstrap class files
++\-bootclasspath path
++Overrides location of bootstrap class files
+ .TP 3
+-\-classpath path
+-Specifies the path \f3rmic\fP uses to look up classes. This option overrides the default or the CLASSPATH environment variable if it is set. Directories are separated by colons. Thus the general format for \f2path\fP is:
++\-classpath path
++Specifies the path \f3rmic\fP uses to look up classes. This option overrides the default or the CLASSPATH environment variable if it is set. Directories are separated by colons. Thus the general format for \f2path\fP is:
+ .nf
+ \f3
+ .fl
+@@ -87,7 +87,7 @@
+ .fl
+ \fP
+ .fi
+-For example:
++For example:
+ .nf
+ \f3
+ .fl
+@@ -96,8 +96,8 @@
+ \fP
+ .fi
+ .TP 3
+-\-d directory
+-Specifies the root destination directory for the generated class hierarchy. You can use this option to specify a destination directory for the stub, skeleton, and tie files. For example, the command
++\-d directory
++Specifies the root destination directory for the generated class hierarchy. You can use this option to specify a destination directory for the stub, skeleton, and tie files. For example, the command
+ .nf
+ \f3
+ .fl
+@@ -107,43 +107,43 @@
+ .fi
+ would place the stub and skeleton classes derived from \f2MyClass\fP into the directory \f2/java/classes/foo\fP. If the \f2\-d\fP option is not specified, the default behavior is as if \f2"\-d\ ."\fP were specified: the package hierarchy of the target class is created in the current directory, and stub/tie/skeleton files are placed within it. (Note that in some previous versions of \f3rmic\fP, if \f2\-d\fP was not specified, then the package hierarchy was \f2not\fP created, and all of the output files were placed directly in the current directory.)
+ .br
+-\
++\
+ .TP 3
+-\-extdirs path
+-Overrides location of installed extensions
++\-extdirs path
++Overrides location of installed extensions
+ .TP 3
+-\-g
+-Enables generation of all debugging information, including local variables. By default, only line number information is generated.
++\-g
++Enables generation of all debugging information, including local variables. By default, only line number information is generated.
+ .TP 3
+-\-idl
+-Causes \f2rmic\fP to generate OMG IDL for the classes specified and any classes referenced. IDL provides a purely declarative, programming language\-independent way of specifying an object's API. The IDL is used as a specification for methods and data that can be written in and invoked from any language that provides CORBA bindings. This includes Java and C++ among others. See the
++\-idl
++Causes \f2rmic\fP to generate OMG IDL for the classes specified and any classes referenced. IDL provides a purely declarative, programming language\-independent way of specifying an object's API. The IDL is used as a specification for methods and data that can be written in and invoked from any language that provides CORBA bindings. This includes Java and C++ among others. See the
+ .na
+ \f2Java Language to IDL Mapping\fP @
+ .fi
+ http://www.omg.org/technology/documents/formal/java_language_mapping_to_omg_idl.htm (OMG) document for a complete description.
+ .br
+ .br
+-When the \f2\-idl\fP option is used, other options also include:
++When the \f2\-idl\fP option is used, other options also include:
+ .RS 3
+ .TP 3
+-\-always or \-alwaysgenerate
+-Forces re\-generation even when existing stubs/ties/IDL are newer than the input class.
++\-always or \-alwaysgenerate
++Forces re\-generation even when existing stubs/ties/IDL are newer than the input class.
+ .TP 3
+-\-factory
+-Uses factory keyword in generated IDL.
++\-factory
++Uses factory keyword in generated IDL.
+ .TP 3
+-\-idlModule\ fromJavaPackage[.class]\ toIDLModule
+-Specifies IDLEntity package mapping. For example:\ \f2\-idlModule foo.bar my::real::idlmod\fP.
++\-idlModule\ fromJavaPackage[.class]\ toIDLModule
++Specifies IDLEntity package mapping. For example:\ \f2\-idlModule foo.bar my::real::idlmod\fP.
+ .TP 3
+-\-idlFile\ fromJavaPackage[.class]\ toIDLFile
+-Specifies IDLEntity file mapping. For example:\ \f2\-idlFile test.pkg.X TEST16.idl\fP.\
++\-idlFile\ fromJavaPackage[.class]\ toIDLFile
++Specifies IDLEntity file mapping. For example:\ \f2\-idlFile test.pkg.X TEST16.idl\fP.\
+ .RE
+ .TP 3
+-\-iiop
++\-iiop
+ Causes \f2rmic\fP to generate IIOP stub and tie classes, rather than JRMP stub and skeleton classes. A stub class is a local proxy for a remote object and is used by clients to send calls to a server. Each remote interface requires a stub class, which implements that remote interface. A client's reference to a remote object is actually a reference to a stub. Tie classes are used on the server side to process incoming calls, and dispatch the calls to the proper implementation class. Each implementation class requires a tie class.
+ .br
+ .br
+-Invoking \f2rmic\fP with the \f2\-iiop\fP generates stubs and ties that conform to this naming convention:
++Invoking \f2rmic\fP with the \f2\-iiop\fP generates stubs and ties that conform to this naming convention:
+ .nf
+ \f3
+ .fl
+@@ -153,49 +153,49 @@
+ .fl
+ \fP
+ .fi
+-When the \f2\-iiop\fP option is used, other options also include:
++When the \f2\-iiop\fP option is used, other options also include:
+ .RS 3
+ .TP 3
+-\-always or \-alwaysgenerate
+-Forces re\-generation even when existing stubs/ties/IDL are newer than the input class.
++\-always or \-alwaysgenerate
++Forces re\-generation even when existing stubs/ties/IDL are newer than the input class.
+ .TP 3
+-\-nolocalstubs
+-Do not create stubs optimized for same\-process clients and servers.
++\-nolocalstubs
++Do not create stubs optimized for same\-process clients and servers.
+ .TP 3
+-\-noValueMethods
+-Must be used with the \f2\-idl\fP option. Prevents addition of \f2valuetype\fP methods and initializers to emitted IDL. These methods and initializers are optional for \f2valuetype\fPs, and are generated unless the \f2\-noValueMethods\fP option is specified when using the \f2\-idl\fP option.
++\-noValueMethods
++Must be used with the \f2\-idl\fP option. Prevents addition of \f2valuetype\fP methods and initializers to emitted IDL. These methods and initializers are optional for \f2valuetype\fPs, and are generated unless the \f2\-noValueMethods\fP option is specified when using the \f2\-idl\fP option.
+ .TP 3
+-\-poa
+-Changes the inheritance from \f2org.omg.CORBA_2_3.portable.ObjectImpl\fP to \f2org.omg.PortableServer.Servant\fP. The \f2PortableServer\fP module for the
++\-poa
++Changes the inheritance from \f2org.omg.CORBA_2_3.portable.ObjectImpl\fP to \f2org.omg.PortableServer.Servant\fP. The \f2PortableServer\fP module for the
+ .na
+ \f2Portable Object Adapter\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/POA.html (POA) defines the native \f2Servant\fP type. In the Java programming language, the \f2Servant\fP type is mapped to the Java \f2org.omg.PortableServer.Servant\fP class. It serves as the base class for all POA servant implementations and provides a number of methods that may be invoked by the application programmer, as well as methods which are invoked by the POA itself and may be overridden by the user to control aspects of servant behavior. Based on the OMG IDL to Java Language Mapping Specification, CORBA V 2.3.1 ptc/00\-01\-08.pdf.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/POA.html (POA) defines the native \f2Servant\fP type. In the Java programming language, the \f2Servant\fP type is mapped to the Java \f2org.omg.PortableServer.Servant\fP class. It serves as the base class for all POA servant implementations and provides a number of methods that may be invoked by the application programmer, as well as methods which are invoked by the POA itself and may be overridden by the user to control aspects of servant behavior. Based on the OMG IDL to Java Language Mapping Specification, CORBA V 2.3.1 ptc/00\-01\-08.pdf.
+ .RE
+ .TP 3
+-\-J
+-Used in conjunction with any \f2java\fP option, it passes the option following the \f2\-J\fP (no spaces between the \-J and the option) on to the \f2java\fP interpreter.
++\-J
++Used in conjunction with any \f2java\fP option, it passes the option following the \f2\-J\fP (no spaces between the \-J and the option) on to the \f2java\fP interpreter.
+ .TP 3
+-\-keep or \-keepgenerated
+-Retains the generated \f2.java\fP source files for the stub, skeleton, and/or tie classes and writes them to the same directory as the \f2.class\fP files.
++\-keep or \-keepgenerated
++Retains the generated \f2.java\fP source files for the stub, skeleton, and/or tie classes and writes them to the same directory as the \f2.class\fP files.
+ .TP 3
+-\-nowarn
+-Turns off warnings. If used the compiler does not print out any warnings.
++\-nowarn
++Turns off warnings. If used the compiler does not print out any warnings.
+ .TP 3
+-\-nowrite
+-Does not write compiled classes to the file system.
++\-nowrite
++Does not write compiled classes to the file system.
+ .TP 3
+-\-vcompat
+-Generates stub and skeleton classes compatible with both the 1.1 and 1.2 JRMP stub protocol versions. (This option was the default in releases prior to 5.0.) The generated stub classes will use the 1.1 stub protocol version when loaded in a JDK 1.1 virtual machine and will use the 1.2 stub protocol version when loaded into a 1.2 (or later) virtual machine. The generated skeleton classes will support both 1.1 and 1.2 stub protocol versions. The generated classes are relatively large in order to support both modes of operation.
++\-vcompat
++Generates stub and skeleton classes compatible with both the 1.1 and 1.2 JRMP stub protocol versions. (This option was the default in releases prior to 5.0.) The generated stub classes will use the 1.1 stub protocol version when loaded in a JDK 1.1 virtual machine and will use the 1.2 stub protocol version when loaded into a 1.2 (or later) virtual machine. The generated skeleton classes will support both 1.1 and 1.2 stub protocol versions. The generated classes are relatively large in order to support both modes of operation.
+ .TP 3
+-\-verbose
+-Causes the compiler and linker to print out messages about what classes are being compiled and what class files are being loaded.
++\-verbose
++Causes the compiler and linker to print out messages about what classes are being compiled and what class files are being loaded.
+ .TP 3
+-\-v1.1
+-Generates stub and skeleton classes for the 1.1 JRMP stub protocol version only. Note that this option is only useful for generating stub classes that are serialization\-compatible with pre\-existing, statically\-deployed stub classes that were generated by the \f3rmic\fP tool from JDK 1.1 and that cannot be upgraded (and dynamic class loading is not being used).
++\-v1.1
++Generates stub and skeleton classes for the 1.1 JRMP stub protocol version only. Note that this option is only useful for generating stub classes that are serialization\-compatible with pre\-existing, statically\-deployed stub classes that were generated by the \f3rmic\fP tool from JDK 1.1 and that cannot be upgraded (and dynamic class loading is not being used).
+ .TP 3
+-\-v1.2
+-(default) Generates stub classes for the 1.2 JRMP stub protocol version only. No skeleton classes are generated with this option because skeleton classes are not used with the 1.2 stub protocol version. The generated stub classes will not work if they are loaded into a JDK 1.1 virtual machine.
++\-v1.2
++(default) Generates stub classes for the 1.2 JRMP stub protocol version only. No skeleton classes are generated with this option because skeleton classes are not used with the 1.2 stub protocol version. The generated stub classes will not work if they are loaded into a JDK 1.1 virtual machine.
+ .RE
+
+ .LP
+@@ -203,8 +203,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-CLASSPATH
+-Used to provide the system a path to user\-defined classes. Directories are separated by colons. For example,
++CLASSPATH
++Used to provide the system a path to user\-defined classes. Directories are separated by colons. For example,
+ .nf
+ \f3
+ .fl
+@@ -218,10 +218,10 @@
+ .SH "SEE ALSO"
+ .LP
+ .LP
+-java(1), javac(1),
++java(1), javac(1),
+ .na
+ \f2CLASSPATH\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#classpath
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/rmid.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/rmid.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmid 1 "10 May 2011"
++.TH rmid 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -42,15 +42,15 @@
+ .SH "DESCRIPTION"
+ .LP
+ .LP
+-The \f3rmid\fP tool starts the activation system daemon. The activation system daemon must be started before activatable objects can be either registered with the activation system or activated in a VM. See the
++The \f3rmid\fP tool starts the activation system daemon. The activation system daemon must be started before activatable objects can be either registered with the activation system or activated in a VM. See the
+ .na
+ \f2Java RMI Specification\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/platform/rmi/spec/rmiTOC.html and
++http://docs.oracle.com/javase/7/docs/platform/rmi/spec/rmiTOC.html and
+ .na
+ \f2Activation tutorials\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/rmi/activation/overview.html for details on how to write programs that use activatable remote objects.
++http://docs.oracle.com/javase/7/docs/technotes/guides/rmi/activation/overview.html for details on how to write programs that use activatable remote objects.
+ .LP
+ .LP
+ The daemon can be started by executing the \f2rmid\fP command, and specifying a security policy file, as follows:
+@@ -73,10 +73,10 @@
+ .RS 3
+ .TP 2
+ o
+-starts the Activator and an internal registry on the default port, 1098, and
++starts the Activator and an internal registry on the default port, 1098, and
+ .TP 2
+ o
+-binds an \f2ActivationSystem\fP to the name \f2java.rmi.activation.ActivationSystem\fP in this internal registry.
++binds an \f2ActivationSystem\fP to the name \f2java.rmi.activation.ActivationSystem\fP in this internal registry.
+ .RE
+
+ .LP
+@@ -95,11 +95,11 @@
+ .LP
+ starts the activation system daemon and a registry on the registry's default port, 1099.
+ .LP
+-.SS
++.SS
+ Starting rmid from inetd/xinetd
+ .LP
+ .LP
+-An alternative to starting \f2rmid\fP from the command line is to configure \f2inetd\fP (Solaris) or \f2xinetd\fP (Bsd) to start \f2rmid\fP on demand.
++An alternative to starting \f2rmid\fP from the command line is to configure \f2inetd\fP (Solaris) or \f2xinetd\fP (Linux or BSD) to start \f2rmid\fP on demand.
+ .LP
+ .LP
+ When \f2rmid\fP starts up, it attempts to obtain an inherited channel (inherited from \f2inetd\fP/\f2xinetd\fP) by invoking the \f2System.inheritedChannel\fP method. If the inherited channel is \f2null\fP or not an instance of \f2java.nio.channels.ServerSocketChannel\fP, then \f2rmid\fP assumes that it was not started by \f2inetd\fP/\f2xinetd\fP, and it starts up as described above.
+@@ -110,25 +110,25 @@
+ .RS 3
+ .TP 2
+ o
+-Output printed to \f2System.err\fP is redirected to a file. This file is located in the directory specified by the \f2java.io.tmpdir\fP system property (typically \f2/var/tmp\fP or \f2/tmp\fP) with the prefix \f2"rmid\-err"\fP and the suffix \f2"tmp"\fP.
++Output printed to \f2System.err\fP is redirected to a file. This file is located in the directory specified by the \f2java.io.tmpdir\fP system property (typically \f2/var/tmp\fP or \f2/tmp\fP) with the prefix \f2"rmid\-err"\fP and the suffix \f2"tmp"\fP.
+ .TP 2
+ o
+-The \f2\-port\fP option is disallowed. If this option is specified, \f2rmid\fP will exit with an error message.
++The \f2\-port\fP option is disallowed. If this option is specified, \f2rmid\fP will exit with an error message.
+ .TP 2
+ o
+-The \f2\-log\fP option is required. If this option is not specified, \f2rmid\fP will exit with an error message.
++The \f2\-log\fP option is required. If this option is not specified, \f2rmid\fP will exit with an error message.
+ .RE
+
+ .LP
+ .LP
+-See the man pages for \f2inetd\fP (Solaris) or \f2xinetd\fP (Bsd) for details on how to configure services to be started on demand.
++See the man pages for \f2inetd\fP (Solaris) or \f2xinetd\fP (Linux or BSD) for details on how to configure services to be started on demand.
+ .LP
+ .SH "OPTIONS"
+ .LP
+ .RS 3
+ .TP 3
+-\-C<someCommandLineOption>
+-Specifies an option that is passed as a command\-line argument to each child process (activation group) of \f2rmid\fP when that process is created. For example, you could pass a property to each virtual machine spawned by the activation system daemon:
++\-C<someCommandLineOption>
++Specifies an option that is passed as a command\-line argument to each child process (activation group) of \f2rmid\fP when that process is created. For example, you could pass a property to each virtual machine spawned by the activation system daemon:
+ .nf
+ \f3
+ .fl
+@@ -136,7 +136,7 @@
+ .fl
+ \fP
+ .fi
+-This ability to pass command\-line arguments to child processes can be useful for debugging. For example, the following command:
++This ability to pass command\-line arguments to child processes can be useful for debugging. For example, the following command:
+ .nf
+ \f3
+ .fl
+@@ -144,11 +144,11 @@
+ .fl
+ \fP
+ .fi
+-will enable server\-call logging in all child VMs.
++will enable server\-call logging in all child VMs.
+ .LP
+ .TP 3
+-\-J<someCommandLineOption>
+-Specifies an option that is passed to the \f2java\fP interpreter running \f2rmid\fP. For example, to specify that \f2rmid\fP use a policy file named \f2rmid.policy\fP, the \f2\-J\fP option can be used to define the \f2java.security.policy\fP property on \f2rmid\fP's command line, for example:
++\-J<someCommandLineOption>
++Specifies an option that is passed to the \f2java\fP interpreter running \f2rmid\fP. For example, to specify that \f2rmid\fP use a policy file named \f2rmid.policy\fP, the \f2\-J\fP option can be used to define the \f2java.security.policy\fP property on \f2rmid\fP's command line, for example:
+ .nf
+ \f3
+ .fl
+@@ -157,16 +157,16 @@
+ \fP
+ .fi
+ .TP 3
+-\-J\-Dsun.rmi.activation.execPolicy=<policy>
+-Specifies the policy that \f2rmid\fP employs to check commands and command\-line options used to launch the VM in which an activation group runs. Please note that this option exists only in Sun's implementation of the Java RMI activation daemon. If this property is not specified on the command line, the result is the same as if \f2\-J\-Dsun.rmi.activation.execPolicy=default\fP were specified. The possible values of \f2<policy>\fP can be \f2default\fP, \f2<policyClassName>\fP, or \f2none\fP:
++\-J\-Dsun.rmi.activation.execPolicy=<policy>
++Specifies the policy that \f2rmid\fP employs to check commands and command\-line options used to launch the VM in which an activation group runs. Please note that this option exists only in Sun's implementation of the Java RMI activation daemon. If this property is not specified on the command line, the result is the same as if \f2\-J\-Dsun.rmi.activation.execPolicy=default\fP were specified. The possible values of \f2<policy>\fP can be \f2default\fP, \f2<policyClassName>\fP, or \f2none\fP:
+ .RS 3
+ .TP 2
+ o
+-\f3default (or if this property is \fP\f4unspecified\fP\f3)\fP
++\f3default (or if this property is \fP\f4unspecified\fP\f3)\fP
+ .LP
+-The default \f2execPolicy\fP allows \f2rmid\fP to execute commands with specific command\-line options only if \f2rmid\fP has been granted permission to execute those commands and options in the security policy file that \f2rmid\fP uses. Only the default activation group implementation can be used with the \f2default\fP execution policy.
++The default \f2execPolicy\fP allows \f2rmid\fP to execute commands with specific command\-line options only if \f2rmid\fP has been granted permission to execute those commands and options in the security policy file that \f2rmid\fP uses. Only the default activation group implementation can be used with the \f2default\fP execution policy.
+ .LP
+-\f2rmid\fP launches a VM for an activation group using the information in the group's registered activation group descriptor, an \f2ActivationGroupDesc\fP. The group descriptor specifies an optional \f2ActivationGroupDesc.CommandEnvironment\fP which includes the \f2command\fP to execute to start the activation group as well as any command line \f2options\fP to be added to the command line. By default, \f2rmid\fP uses the \f2java\fP command found in \f2java.home\fP. The group descriptor also contains \f2properties\fP overrides that are added to the command line as options defined as:
++\f2rmid\fP launches a VM for an activation group using the information in the group's registered activation group descriptor, an \f2ActivationGroupDesc\fP. The group descriptor specifies an optional \f2ActivationGroupDesc.CommandEnvironment\fP which includes the \f2command\fP to execute to start the activation group as well as any command line \f2options\fP to be added to the command line. By default, \f2rmid\fP uses the \f2java\fP command found in \f2java.home\fP. The group descriptor also contains \f2properties\fP overrides that are added to the command line as options defined as:
+ .nf
+ \f3
+ .fl
+@@ -175,33 +175,33 @@
+ \fP
+ .fi
+ .LP
+-The permission \f2com.sun.rmi.rmid.ExecPermission\fP is used to grant \f2rmid\fP permission to execute a command, specified in the group descriptor's \f2CommandEnvironment\fP to launch an activation group. The permission \f2com.sun.rmi.rmid.ExecOptionPermission\fP is used to allow \f2rmid\fP to use command\-line options, specified as properties overrides in the group descriptor or as options in the \f2CommandEnvironment\fP, when launching the activation group.
++The permission \f2com.sun.rmi.rmid.ExecPermission\fP is used to grant \f2rmid\fP permission to execute a command, specified in the group descriptor's \f2CommandEnvironment\fP to launch an activation group. The permission \f2com.sun.rmi.rmid.ExecOptionPermission\fP is used to allow \f2rmid\fP to use command\-line options, specified as properties overrides in the group descriptor or as options in the \f2CommandEnvironment\fP, when launching the activation group.
+ .LP
+-When granting \f2rmid\fP permission to execute various commands and options, the permissions \f2ExecPermission\fP and \f2ExecOptionPermission\fP need to be granted universally (i.e., granted to all code sources).
++When granting \f2rmid\fP permission to execute various commands and options, the permissions \f2ExecPermission\fP and \f2ExecOptionPermission\fP need to be granted universally (i.e., granted to all code sources).
+ .RS 3
+ .TP 3
+-ExecPermission
+-The \f2ExecPermission\fP class represents permission for \f2rmid\fP to execute a specific \f2command\fP to launch an activation group.
++ExecPermission
++The \f2ExecPermission\fP class represents permission for \f2rmid\fP to execute a specific \f2command\fP to launch an activation group.
+ .LP
+ \f3Syntax\fP
+ .br
+-The \f2name\fP of an \f2ExecPermission\fP is the path name of a command to grant \f2rmid\fP permission to execute. A path name that ends in "/*" indicates all the files contained in that directory (where "/" is the file\-separator character, \f2File.separatorChar\fP). A path name that ends with "/\-" indicates all files and subdirectories contained in that directory (recursively). A path name consisting of the special token "<<ALL FILES>>" matches \f3any\fP file.
++The \f2name\fP of an \f2ExecPermission\fP is the path name of a command to grant \f2rmid\fP permission to execute. A path name that ends in "/*" indicates all the files contained in that directory (where "/" is the file\-separator character, \f2File.separatorChar\fP). A path name that ends with "/\-" indicates all files and subdirectories contained in that directory (recursively). A path name consisting of the special token "<<ALL FILES>>" matches \f3any\fP file.
+ .LP
+-\f3Note:\fP A path name consisting of a single "*" indicates all the files in the current directory, while a path name consisting of a single "\-" indicates all the files in the current directory and (recursively) all files and subdirectories contained in the current directory.
++\f3Note:\fP A path name consisting of a single "*" indicates all the files in the current directory, while a path name consisting of a single "\-" indicates all the files in the current directory and (recursively) all files and subdirectories contained in the current directory.
+ .TP 3
+-ExecOptionPermission
+-The \f2ExecOptionPermission\fP class represents permission for \f2rmid\fP to use a specific command\-line \f2option\fP when launching an activation group. The \f2name\fP of an \f2ExecOptionPermission\fP is the value of a command line option.
++ExecOptionPermission
++The \f2ExecOptionPermission\fP class represents permission for \f2rmid\fP to use a specific command\-line \f2option\fP when launching an activation group. The \f2name\fP of an \f2ExecOptionPermission\fP is the value of a command line option.
+ .LP
+ \f3Syntax\fP
+ .br
+-Options support a limited wildcard scheme. An asterisk signifies a wildcard match, and it may appear as the option name itself (i.e., it matches any option), or an asterisk may appear at the end of the option name only if the asterisk follows either a "." or "=".
++Options support a limited wildcard scheme. An asterisk signifies a wildcard match, and it may appear as the option name itself (i.e., it matches any option), or an asterisk may appear at the end of the option name only if the asterisk follows either a "." or "=".
+ .LP
+-For example: "*" or "\-Dfoo.*" or "\-Da.b.c=*" is valid, "*foo" or "\-Da*b" or "ab*" is not.
++For example: "*" or "\-Dfoo.*" or "\-Da.b.c=*" is valid, "*foo" or "\-Da*b" or "ab*" is not.
+ .TP 3
+-Policy file for rmid
+-When granting \f2rmid\fP permission to execute various commands and options, the permissions \f2ExecPermission\fP and \f2ExecOptionPermission\fP need to be granted universally (i.e., granted to all code sources). It is safe to grant these permissions universally because only \f2rmid\fP checks these permissions.
++Policy file for rmid
++When granting \f2rmid\fP permission to execute various commands and options, the permissions \f2ExecPermission\fP and \f2ExecOptionPermission\fP need to be granted universally (i.e., granted to all code sources). It is safe to grant these permissions universally because only \f2rmid\fP checks these permissions.
+ .LP
+-An example policy file that grants various execute permissions to \f2rmid\fP is:
++An example policy file that grants various execute permissions to \f2rmid\fP is:
+ .nf
+ \f3
+ .fl
+@@ -239,21 +239,21 @@
+ .fl
+ \fP
+ .fi
+-The first permission granted allow \f2rmid\fP to execute the 1.7.0 version of the \f2java\fP command, specified by its explicit path name. Note that by default, the version of the \f2java\fP command found in \f2java.home\fP is used (the same one that \f2rmid\fP uses), and does not need to be specified in the policy file. The second permission allows \f2rmid\fP to execute any command in the directory \f2/files/apps/rmidcmds\fP.
++The first permission granted allow \f2rmid\fP to execute the 1.7.0 version of the \f2java\fP command, specified by its explicit path name. Note that by default, the version of the \f2java\fP command found in \f2java.home\fP is used (the same one that \f2rmid\fP uses), and does not need to be specified in the policy file. The second permission allows \f2rmid\fP to execute any command in the directory \f2/files/apps/rmidcmds\fP.
+ .LP
+-The third permission granted, an \f2ExecOptionPermission\fP, allows \f2rmid\fP to launch an activation group that defines the security policy file to be \f2/files/policies/group.policy\fP. The next permission allows the \f2java.security.debug\fP property to be used by an activation group. The last permission allows any property in the \f2sun.rmi\fP property name hierarchy to be used by activation groups.
++The third permission granted, an \f2ExecOptionPermission\fP, allows \f2rmid\fP to launch an activation group that defines the security policy file to be \f2/files/policies/group.policy\fP. The next permission allows the \f2java.security.debug\fP property to be used by an activation group. The last permission allows any property in the \f2sun.rmi\fP property name hierarchy to be used by activation groups.
+ .LP
+-To start \f2rmid\fP with a policy file, the \f2java.security.policy\fP property needs to be specified on \f2rmid\fP's command line, for example:
++To start \f2rmid\fP with a policy file, the \f2java.security.policy\fP property needs to be specified on \f2rmid\fP's command line, for example:
+ .LP
+-\f2rmid \-J\-Djava.security.policy=rmid.policy\fP
++\f2rmid \-J\-Djava.security.policy=rmid.policy\fP
+ .RE
+ .TP 2
+ o
+-\f4<policyClassName>\fP
++\f4<policyClassName>\fP
+ .LP
+-If the default behavior is not flexible enough, an administrator can provide, when starting \f2rmid\fP, the name of a class whose \f2checkExecCommand\fP method is executed in order to check commands to be executed by rmid.
++If the default behavior is not flexible enough, an administrator can provide, when starting \f2rmid\fP, the name of a class whose \f2checkExecCommand\fP method is executed in order to check commands to be executed by rmid.
+ .LP
+-The \f2policyClassName\fP specifies a public class with a public, no\-argument constructor and an implementation of the following \f2checkExecCommand\fP method:
++The \f2policyClassName\fP specifies a public class with a public, no\-argument constructor and an implementation of the following \f2checkExecCommand\fP method:
+ .nf
+ \f3
+ .fl
+@@ -265,25 +265,25 @@
+ .fl
+ \fP
+ .fi
+-Before launching an activation group, \f2rmid\fP calls the policy's \f2checkExecCommand\fP method, passing it the activation group descriptor and an array containing the complete command to launch the activation group. If the \f2checkExecCommand\fP throws a \f2SecurityException\fP, \f2rmid\fP will not launch the activation group and an \f2ActivationException\fP will be thrown to the caller attempting to activate the object.
++Before launching an activation group, \f2rmid\fP calls the policy's \f2checkExecCommand\fP method, passing it the activation group descriptor and an array containing the complete command to launch the activation group. If the \f2checkExecCommand\fP throws a \f2SecurityException\fP, \f2rmid\fP will not launch the activation group and an \f2ActivationException\fP will be thrown to the caller attempting to activate the object.
+ .TP 2
+ o
+-\f3none\fP
++\f3none\fP
+ .LP
+-If the \f2sun.rmi.activation.execPolicy\fP property value is "none", then \f2rmid\fP will not perform any validation of commands to launch activation groups.
++If the \f2sun.rmi.activation.execPolicy\fP property value is "none", then \f2rmid\fP will not perform any validation of commands to launch activation groups.
+ .RE
+ .LP
+ .TP 3
+-\-log dir
+-Specifies the name of the directory the activation system daemon uses to write its database and associated information. The log directory defaults to creating a directory, \f2log\fP, in the directory in which the \f2rmid\fP command was executed.
++\-log dir
++Specifies the name of the directory the activation system daemon uses to write its database and associated information. The log directory defaults to creating a directory, \f2log\fP, in the directory in which the \f2rmid\fP command was executed.
+ .LP
+ .TP 3
+-\-port port
+-Specifies the port \f2rmid\fP's registry uses. The activation system daemon binds the \f2ActivationSystem\fP, with the name \f2java.rmi.activation.ActivationSystem\fP, in this registry. Thus, the \f2ActivationSystem\fP on the local machine can be obtained using the following \f2Naming.lookup\fP method call:
++\-port port
++Specifies the port \f2rmid\fP's registry uses. The activation system daemon binds the \f2ActivationSystem\fP, with the name \f2java.rmi.activation.ActivationSystem\fP, in this registry. Thus, the \f2ActivationSystem\fP on the local machine can be obtained using the following \f2Naming.lookup\fP method call:
+ .nf
+ \f3
+ .fl
+- import java.rmi.*;
++ import java.rmi.*;
+ .fl
+ import java.rmi.activation.*;
+ .fl
+@@ -295,8 +295,8 @@
+ .fl
+ .fi
+ .TP 3
+-\-stop
+-Stops the current invocation of \f2rmid\fP, for a port specified by the \f2\-port\fP option. If no port is specified, it will stop the \f2rmid\fP running on port 1098.
++\-stop
++Stops the current invocation of \f2rmid\fP, for a port specified by the \f2\-port\fP option. If no port is specified, it will stop the \f2rmid\fP running on port 1098.
+ .RE
+
+ .LP
+@@ -304,8 +304,8 @@
+ .LP
+ .RS 3
+ .TP 3
+-CLASSPATH
+-Used to provide the system a path to user\-defined classes. Directories are separated by colons. For example:
++CLASSPATH
++Used to provide the system a path to user\-defined classes. Directories are separated by colons. For example:
+ .nf
+ \f3
+ .fl
+@@ -319,10 +319,10 @@
+ .SH "SEE ALSO"
+ .LP
+ .LP
+-rmic(1),
++rmic(1),
+ .na
+ \f2CLASSPATH\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/tools/index.html#classpath, java(1)
++http://docs.oracle.com/javase/7/docs/technotes/tools/index.html#classpath, java(1)
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/rmiregistry.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/rmiregistry.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,14 +19,14 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH rmiregistry 1 "10 May 2011"
++.TH rmiregistry 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ rmiregistry \- The Java Remote Object Registry
+ .LP
+ .RS 3
+-The \f3rmiregistry\fP command starts a remote object registry on the specified port on the current host.
++The \f3rmiregistry\fP command starts a remote object registry on the specified port on the current host.
+ .RE
+
+ .LP
+@@ -65,19 +65,19 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-J
+-Used in conjunction with any \f2java\fP option, it passes the option following the \f2\-J\fP (no spaces between the \-J and the option) on to the \f2java\fP interpreter.
++\-J
++Used in conjunction with any \f2java\fP option, it passes the option following the \f2\-J\fP (no spaces between the \-J and the option) on to the \f2java\fP interpreter.
+ .RE
+
+ .LP
+ .SH "SEE ALSO"
+ .LP
+-java(1),
++java(1),
+ .na
+ \f2java.rmi.registry.LocateRegistry\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/rmi/registry/LocateRegistry.html and
++http://docs.oracle.com/javase/7/docs/api/java/rmi/registry/LocateRegistry.html and
+ .na
+ \f2java.rmi.Naming\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/rmi/Naming.html
++http://docs.oracle.com/javase/7/docs/api/java/rmi/Naming.html
+--- jdk/src/bsd/doc/man/schemagen.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/schemagen.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH schemagen 1 "10 May 2011"
++.TH schemagen 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -39,7 +39,7 @@
+ The current schema generator can process either Java source files or class files.
+ .LP
+ .LP
+-We also provide an Ant task to run the schema generator \- see the instructions for
++We also provide an Ant task to run the schema generator \- see the instructions for
+ .na
+ \f2using schemagen with Ant\fP @
+ .fi
+@@ -59,13 +59,13 @@
+ .LP
+ If your java sources/classes reference other classes, they must be accessable on your system CLASSPATH environment variable, or they need to be given to the tool by using the \f2\-classpath\fP/\f2\-cp\fP options. Otherwise you will see errors when generating your schema.
+ .LP
+-.SS
++.SS
+ Command Line Options
+ .LP
+ .nf
+ \f3
+ .fl
+-Usage: schemagen [\-options ...] <java files>
++Usage: schemagen [\-options ...] <java files>
+ .fl
+
+ .fl
+@@ -94,7 +94,7 @@
+ .SH "Generated Resource Files"
+ .LP
+ .LP
+-The current schema generator simply creates a schema file for each namespace referenced in your Java classes. There is no way to control the name of the generated schema files at this time. For that purpose, use
++The current schema generator simply creates a schema file for each namespace referenced in your Java classes. There is no way to control the name of the generated schema files at this time. For that purpose, use
+ .na
+ \f2the schema generator ant task\fP @
+ .fi
+@@ -110,18 +110,18 @@
+ .na
+ \f2command\-line instructions\fP @
+ .fi
+-https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagen.html,
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagen.html,
+ .na
+ \f2using the SchemaGen Ant task\fP @
+ .fi
+-https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagenTask.html]
++https://jaxb.dev.java.net/nonav/2.1.3/docs/schemagenTask.html]
+ .TP 2
+ o
+ .na
+ \f2Java Architecture for XML Binding (JAXB)\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
+ .RE
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/serialver.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/serialver.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH serialver 1 "10 May 2011"
++.TH serialver 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -40,11 +40,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-options
+-Command\-line options, as specified in this document.
++options
++Command\-line options, as specified in this document.
+ .TP 3
+-classnames
+-One or more class names
++classnames
++One or more class names
+ .RE
+
+ .LP
+@@ -57,18 +57,18 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-classpath <directories and zip/jar files separated by :>
+-Set search path for application classes and resources.
++\-classpath <directories and zip/jar files separated by :>
++Set search path for application classes and resources.
+ .RE
+
+ .LP
+ .RS 3
+ .TP 3
+-\-show
+-Displays a simple user interface. Enter the full class name and press either the Enter key or the Show button to display the serialVersionUID.
++\-show
++Displays a simple user interface. Enter the full class name and press either the Enter key or the Show button to display the serialVersionUID.
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for the java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes.
+ .RE
+
+ .LP
+@@ -92,6 +92,6 @@
+ .na
+ \f2java.io.ObjectStreamClass\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/api/java/io/ObjectStreamClass.html
++http://docs.oracle.com/javase/7/docs/api/java/io/ObjectStreamClass.html
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/servertool.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/servertool.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,13 +19,13 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH servertool 1 "10 May 2011"
++.TH servertool 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ servertool \- The Java(TM) IDL Server Tool
+ .LP
+-\f3servertool\fP provides a command\-line interface for application programmers to register, unregister, startup, and shutdown a persistent server.
++\f3servertool\fP provides a command\-line interface for application programmers to register, unregister, startup, and shutdown a persistent server.
+ .SH "SYNOPSIS"
+ .LP
+ .nf
+@@ -55,11 +55,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-ORBInitialHost nameserverhost
+-Specifies the host machine on which the name server is running and listening for incoming requests. The \f2nameserverhost\fP defaults to \f2localhost\fP if this option is not specified. If \f2orbd\fP and \f2servertool\fP are running on different machines, you must specify the name or IP address of the host on which \f2orbd\fP is running.
++\-ORBInitialHost nameserverhost
++Specifies the host machine on which the name server is running and listening for incoming requests. The \f2nameserverhost\fP defaults to \f2localhost\fP if this option is not specified. If \f2orbd\fP and \f2servertool\fP are running on different machines, you must specify the name or IP address of the host on which \f2orbd\fP is running.
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
+ .RE
+
+ .LP
+@@ -67,47 +67,47 @@
+ .LP
+ .RS 3
+ .TP 3
+-register \-server\ <server\ class\ name> \ \-classpath\ <classpath\ to\ server> [\ \-applicationName\ <application\ name> \-args\ <args\ to\ server> \-vmargs\ <flags\ to\ be\ passed\ to\ Java\ VM> \ ]
+-Register a new persistent server with the Object Request Broker Daemon (ORBD). If the server is not already registered, it is registered and activated. This command causes an install method to be invoked in the main class of the server identified by the \f2\-server\fP option. The install method must be \f2public static void install(org.omg.CORBA.ORB)\fP. The install method is optional and enables the developer to provide their own server installation behavior (for example, creating database schema).
++register \-server\ <server\ class\ name> \ \-classpath\ <classpath\ to\ server> [\ \-applicationName\ <application\ name> \-args\ <args\ to\ server> \-vmargs\ <flags\ to\ be\ passed\ to\ Java\ VM> \ ]
++Register a new persistent server with the Object Request Broker Daemon (ORBD). If the server is not already registered, it is registered and activated. This command causes an install method to be invoked in the main class of the server identified by the \f2\-server\fP option. The install method must be \f2public static void install(org.omg.CORBA.ORB)\fP. The install method is optional and enables the developer to provide their own server installation behavior (for example, creating database schema).
+ .TP 3
+-unregister \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
+-Unregister a server from the ORBD by using either its server id or its application name. This command causes an uninstall method to be invoked in the main class of the server identified by the \f2\-server\fP option. The uninstall method must be \f2public static void uninstall(org.omg.CORBA.ORB)\fP. The uninstall method is optional and enables the developer to provide their own server uninstall behavior (for example, undoing the behavior of the install method).
++unregister \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++Unregister a server from the ORBD by using either its server id or its application name. This command causes an uninstall method to be invoked in the main class of the server identified by the \f2\-server\fP option. The uninstall method must be \f2public static void uninstall(org.omg.CORBA.ORB)\fP. The uninstall method is optional and enables the developer to provide their own server uninstall behavior (for example, undoing the behavior of the install method).
+ .TP 3
+-getserverid \-applicationName\ <application\ name>
+-Return the server id that corresponds with an application.
++getserverid \-applicationName\ <application\ name>
++Return the server id that corresponds with an application.
+ .TP 3
+-list
+-List information about all persistent servers registered with the ORBD.
++list
++List information about all persistent servers registered with the ORBD.
+ .TP 3
+-listappnames
+-List the application names for all servers currently registered with the ORBD.
++listappnames
++List the application names for all servers currently registered with the ORBD.
+ .TP 3
+-listactive
+-List information about all persistent servers that have been launched by the ORBD and are currently running.
++listactive
++List information about all persistent servers that have been launched by the ORBD and are currently running.
+ .TP 3
+-locate \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-endpointType\ <endpointType>\ ]
+-Locate the endpoints (ports) of a specific type for all ORBs created by a registered server. If a server is not already running, it is activated. If an endpoint type is not specified, then the plain/non\-protected endpoint associated with each ORB in a server is returned.
++locate \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-endpointType\ <endpointType>\ ]
++Locate the endpoints (ports) of a specific type for all ORBs created by a registered server. If a server is not already running, it is activated. If an endpoint type is not specified, then the plain/non\-protected endpoint associated with each ORB in a server is returned.
+ .TP 3
+-locateperorb \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-orbid\ <ORB\ name>\ ]
+-Locate all the endpoints (ports) registered by a specific ORB of registered server. If a server is not already running, then it is activated. If an \f2orbid\fP is not specified, the default value of "" is assigned to the \f2orbid\fP. If any ORBs are created with an \f2orbid\fP of empty string, all ports registered by it are returned.
++locateperorb \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name> [\-orbid\ <ORB\ name>\ ]
++Locate all the endpoints (ports) registered by a specific ORB of registered server. If a server is not already running, then it is activated. If an \f2orbid\fP is not specified, the default value of "" is assigned to the \f2orbid\fP. If any ORBs are created with an \f2orbid\fP of empty string, all ports registered by it are returned.
+ .TP 3
+-orblist \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
+-Lists the ORBId of the ORBs defined on a server. An ORBId is the string name for the ORB created by the server. If the server is not already running, it is activated.
++orblist \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++Lists the ORBId of the ORBs defined on a server. An ORBId is the string name for the ORB created by the server. If the server is not already running, it is activated.
+ .TP 3
+-shutdown \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
+-Shutdown an active server that is registered with ORBD. During execution of this command, the \f2shutdown()\fP method defined in the class specified by either the \f2\-serverid\fP or \f2\-applicationName\fP parameter is also invoked to shutdown the server process appropriately.
++shutdown \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++Shutdown an active server that is registered with ORBD. During execution of this command, the \f2shutdown()\fP method defined in the class specified by either the \f2\-serverid\fP or \f2\-applicationName\fP parameter is also invoked to shutdown the server process appropriately.
+ .TP 3
+-startup \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
+-Startup or activate a server that is registered with ORBD. If the server is not running, this command launches the server. If the server is already running, an error message is returned to the user.
++startup \-serverid\ <server\ id\ >\ | \-applicationName\ <application\ name>
++Startup or activate a server that is registered with ORBD. If the server is not running, this command launches the server. If the server is already running, an error message is returned to the user.
+ .TP 3
+-help
+-List all the commands available to the server through the server tool.
++help
++List all the commands available to the server through the server tool.
+ .TP 3
+-quit
+-Exit the server tool.
++quit
++Exit the server tool.
+ .RE
+
+ .LP
+ .SH "SEE ALSO"
+ .LP
+-orbd(1)
++orbd(1)
+--- jdk/src/bsd/doc/man/tnameserv.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/tnameserv.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,18 +19,18 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH tnameserv 1 "10 May 2011"
++.TH tnameserv 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+ Java IDL: Transient Naming Service \- \f2tnameserv\fP
+ .LP
+ .LP
+-This document discusses using the Java IDL Transient Naming Service, \f2tnameserv\fP. Java IDL also includes the Object Request Broker Daemon (ORBD). ORBD is a daemon process containing a Bootstrap Service, a Transient Naming Service, a \f3Persistent\fP Naming Service, and a Server Manager. The Java IDL tutorials all use ORBD, however, you can substitute \f2tnameserv\fP for \f2orbd\fP in any of the examples that use a Transient Naming Service. For documentation on the \f2orbd\fP tool, link to its orbd(1) or the
++This document discusses using the Java IDL Transient Naming Service, \f2tnameserv\fP. Java IDL also includes the Object Request Broker Daemon (ORBD). ORBD is a daemon process containing a Bootstrap Service, a Transient Naming Service, a \f3Persistent\fP Naming Service, and a Server Manager. The Java IDL tutorials all use ORBD, however, you can substitute \f2tnameserv\fP for \f2orbd\fP in any of the examples that use a Transient Naming Service. For documentation on the \f2orbd\fP tool, link to its orbd(1) or the
+ .na
+ \f2Java IDL Naming Service Included with ORBD\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html topic.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/jidlNaming.html topic.
+ .LP
+ .LP
+ Topics in this section include:
+@@ -38,19 +38,19 @@
+ .RS 3
+ .TP 2
+ o
+-Java\ IDL Transient Naming Service
++Java\ IDL Transient Naming Service
+ .TP 2
+ o
+-Starting the Java\ IDL Transient Naming Service
++Starting the Java\ IDL Transient Naming Service
+ .TP 2
+ o
+-Stopping the Java\ IDL Transient Naming Service
++Stopping the Java\ IDL Transient Naming Service
+ .TP 2
+ o
+-Sample Client: Adding Objects to the Namespace
++Sample Client: Adding Objects to the Namespace
+ .TP 2
+ o
+-Sample Client: Browsing the Namespace
++Sample Client: Browsing the Namespace
+ .RE
+
+ .LP
+@@ -109,22 +109,22 @@
+ .LP
+ Clients of the name server must be made aware of the new port number. Do this by setting the \f2org.omg.CORBA.ORBInitialPort\fP property to the new port number when creating the ORB object.
+ .LP
+-.SS
++.SS
+ Running the server and client on different hosts
+ .LP
+ .LP
+ In most of the Java IDL and RMI\-IIOP tutorials, the Naming Service, Server, and Client are all running on the development machine. In real world deployment, it is likely that the client and server will run on different host machines than the Naming Service.
+ .LP
+ .LP
+-For the client and server to find the Naming Service, they must be made aware of the port number and host on which the naming service is running. Do this by setting the \f2org.omg.CORBA.ORBInitialPort\fP and \f2org.omg.CORBA.ORBInitialHost\fP properties in the client and server files to the machine name and port number on which the Naming Service is running. An example of this is shown in
++For the client and server to find the Naming Service, they must be made aware of the port number and host on which the naming service is running. Do this by setting the \f2org.omg.CORBA.ORBInitialPort\fP and \f2org.omg.CORBA.ORBInitialHost\fP properties in the client and server files to the machine name and port number on which the Naming Service is running. An example of this is shown in
+ .na
+ \f2The Hello World Example Using RMI\-IIOP\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/rmi\-iiop/rmiiiopexample.html. You could also use the command line options \f2\-ORBInitialPort\fP \f2nameserverport#\fP and \f2\-ORBInitialHost\fP \f2nameserverhostname\fP to tell the client and server where to find the Naming Service.
++http://docs.oracle.com/javase/7/docs/technotes/guides/rmi\-iiop/rmiiiopexample.html. You could also use the command line options \f2\-ORBInitialPort\fP \f2nameserverport#\fP and \f2\-ORBInitialHost\fP \f2nameserverhostname\fP to tell the client and server where to find the Naming Service.
+ .na
+ \f2Java IDL: Running the Hello World Example on TWO Machines\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/idl/tutorial/jidl2machines.html shows one way of doing this using the command line option.
++http://docs.oracle.com/javase/7/docs/technotes/guides/idl/tutorial/jidl2machines.html shows one way of doing this using the command line option.
+ .LP
+ .LP
+ For example, suppose the Transient Naming Service, \f2tnameserv\fP is running on port 1050 on host \f2nameserverhost\fP. The client is running on host \f2clienthost\fP and the server is running on host \f2serverhost\fP.
+@@ -132,7 +132,7 @@
+ .RS 3
+ .TP 2
+ o
+-Start \f2tnameserv\fP on the host \f2nameserverhost\fP, as follows:
++Start \f2tnameserv\fP on the host \f2nameserverhost\fP, as follows:
+ .nf
+ \f3
+ .fl
+@@ -144,7 +144,7 @@
+ .fi
+ .TP 2
+ o
+-Start the server on the \f2serverhost\fP, as follows:
++Start the server on the \f2serverhost\fP, as follows:
+ .nf
+ \f3
+ .fl
+@@ -154,7 +154,7 @@
+ .fi
+ .TP 2
+ o
+-Start the client on the \f2clienthost\fP, as follows:
++Start the client on the \f2clienthost\fP, as follows:
+ .nf
+ \f3
+ .fl
+@@ -165,14 +165,14 @@
+ .RE
+
+ .LP
+-.SS
++.SS
+ The \-J option
+ .LP
+-This command\-line option is available for use with \f2tnameserve\fP:
++This command\-line option is available for use with \f2tnameserve\fP:
+ .RS 3
+ .TP 3
+-\-Joption
+-Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
++\-Joption
++Pass \f2option\fP to the Java virtual machine, where \f2option\fP is one of the options described on the reference page for java(1). For example, \f3\-J\-Xms48m\fP sets the startup memory to 48 megabytes. It is a common convention for \f3\-J\fP to pass options to the underlying virtual machine.
+ .RE
+
+ .LP
+@@ -189,21 +189,21 @@
+ .RS 3
+ .TP 2
+ o
+-\f4Initial Naming Context\fP
++\f4Initial Naming Context\fP
+ .RS 3
+ .TP 2
+ *
+-\f3plans\fP
++\f3plans\fP
+ .TP 2
+ *
+-\f4Personal\fP
++\f4Personal\fP
+ .RS 3
+ .TP 2
+ -
+-\f3calendar\fP
++\f3calendar\fP
+ .TP 2
+ -
+-\f3schedule\fP
++\f3schedule\fP
+ .RE
+ .RE
+ .RE
+@@ -237,7 +237,7 @@
+ .fi
+
+ .LP
+-In the above section, Starting the Java IDL Transient Naming Service, the nameserver was started on port 1050. The following code ensures that the client program is aware of this port number.
++In the above section, Starting the Java IDL Transient Naming Service, the nameserver was started on port 1050. The following code ensures that the client program is aware of this port number.
+ .nf
+ \f3
+ .fl
+@@ -253,7 +253,7 @@
+ .fi
+
+ .LP
+-This code obtains the initial naming context and assigns it to \f3ctx\fP. The second line copies \f3ctx\fP into a dummy object reference \f3objref\fP that we'll attach to various names and add into the namespace.
++This code obtains the initial naming context and assigns it to \f3ctx\fP. The second line copies \f3ctx\fP into a dummy object reference \f3objref\fP that we'll attach to various names and add into the namespace.
+ .nf
+ \f3
+ .fl
+@@ -269,7 +269,7 @@
+ .fi
+
+ .LP
+-This code creates a name "plans" of type "text" and binds it to our dummy object reference. "plans" is then added under the initial naming context using \f2rebind\fP. The \f2rebind\fP method allows us to run this program over and over again without getting the exceptions we'd get from using \f2bind\fP.
++This code creates a name "plans" of type "text" and binds it to our dummy object reference. "plans" is then added under the initial naming context using \f2rebind\fP. The \f2rebind\fP method allows us to run this program over and over again without getting the exceptions we'd get from using \f2bind\fP.
+ .nf
+ \f3
+ .fl
+@@ -279,7 +279,7 @@
+ .fl
+ ctx.rebind(name1, objref);
+ .fl
+- System.out.println("plans rebind sucessful!");
++ System.out.println("plans rebind successful!");
+ .fl
+
+ .fl
+@@ -287,7 +287,7 @@
+ .fi
+
+ .LP
+-This code creates a naming context called "Personal" of type "directory". The resulting object reference, \f3ctx2\fP, is bound to the name and added under the initial naming context.
++This code creates a naming context called "Personal" of type "directory". The resulting object reference, \f3ctx2\fP, is bound to the name and added under the initial naming context.
+ .nf
+ \f3
+ .fl
+@@ -305,7 +305,7 @@
+ .fi
+
+ .LP
+-The remainder of the code binds the dummy object reference using the names "schedule" and "calendar" under the "Personal" naming context (\f3ctx2\fP).
++The remainder of the code binds the dummy object reference using the names "schedule" and "calendar" under the "Personal" naming context (\f3ctx2\fP).
+ .nf
+ \f3
+ .fl
+@@ -315,7 +315,7 @@
+ .fl
+ ctx2.rebind(name3, objref);
+ .fl
+- System.out.println("schedule rebind sucessful!");
++ System.out.println("schedule rebind successful!");
+ .fl
+
+ .fl
+@@ -325,7 +325,7 @@
+ .fl
+ ctx2.rebind(name4, objref);
+ .fl
+- System.out.println("calender rebind sucessful!");
++ System.out.println("calender rebind successful!");
+ .fl
+
+ .fl
+@@ -375,7 +375,7 @@
+ .fi
+
+ .LP
+-In the above section, Starting the Java IDL Transient Naming Service, the nameserver was started on port 1050. The following code ensures that the client program is aware of this port number.
++In the above section, Starting the Java IDL Transient Naming Service, the nameserver was started on port 1050. The following code ensures that the client program is aware of this port number.
+ .nf
+ \f3
+ .fl
+@@ -395,7 +395,7 @@
+ .fi
+
+ .LP
+-The following code obtains the intial naming context.
++The following code obtains the initial naming context.
+ .nf
+ \f3
+ .fl
+@@ -409,7 +409,7 @@
+ .fi
+
+ .LP
+-The \f2list\fP method lists the bindings in the naming context. In this case, up to 1000 bindings from the initial naming context will be returned in the BindingListHolder; any remaining bindings are returned in the BindingIteratorHolder.
++The \f2list\fP method lists the bindings in the naming context. In this case, up to 1000 bindings from the initial naming context will be returned in the BindingListHolder; any remaining bindings are returned in the BindingIteratorHolder.
+ .nf
+ \f3
+ .fl
+@@ -425,7 +425,7 @@
+ .fi
+
+ .LP
+-This code gets the array of bindings out of the returned BindingListHolder. If there are no bindings, the program ends.
++This code gets the array of bindings out of the returned BindingListHolder. If there are no bindings, the program ends.
+ .nf
+ \f3
+ .fl
+@@ -439,7 +439,7 @@
+ .fi
+
+ .LP
+-The remainder of the code loops through the bindings and prints the names out.
++The remainder of the code loops through the bindings and prints the names out.
+ .nf
+ \f3
+ .fl
+@@ -491,4 +491,4 @@
+ .fi
+
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/unpack200.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/unpack200.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH unpack200 1 "10 May 2011"
++.TH unpack200 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -35,11 +35,11 @@
+ .LP
+ .RS 3
+ .TP 3
+-input\-file
+-Name of the input file, which can be a pack200 gzip file or a pack200 file. The input could also be JAR file produced by pack200(1) with an effort of 0. In this case the contents of the input file will be copied to the output JAR file with the Pack200 marker.
++input\-file
++Name of the input file, which can be a pack200 gzip file or a pack200 file. The input could also be JAR file produced by pack200(1) with an effort of 0. In this case the contents of the input file will be copied to the output JAR file with the Pack200 marker.
+ .TP 3
+-JAR\-file
+-Name of the output JAR file.
++JAR\-file
++Name of the output JAR file.
+ .RE
+
+ .LP
+@@ -120,28 +120,28 @@
+ .RS 3
+ .TP 2
+ o
+-pack200(1)
++pack200(1)
+ .TP 2
+ o
+ .na
+ \f2Java SE Documentation\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/index.html
++http://docs.oracle.com/javase/7/docs/index.html
+ .TP 2
+ o
+ .na
+ \f2Java Deployment Guide \- Pack200\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/deployment/deployment\-guide/pack200.html
+ .TP 2
+ o
+-jar(1) \- Java Archive Tool
++jar(1) \- Java Archive Tool
+ .TP 2
+ o
+-jarsigner(1) \- JAR Signer tool
++jarsigner(1) \- JAR Signer tool
+ .TP 2
+ o
+-\f2attributes(5)\fP man page
++\f2attributes(5)\fP man page
+ .RE
+
+ .LP
+@@ -153,4 +153,4 @@
+ .LP
+ The Java SE API Specification provided with the JDK is the superseding authority, in case of discrepancies.
+ .LP
+-
++
+--- jdk/src/bsd/doc/man/wsgen.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/wsgen.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH wsgen 1 "10 May 2011"
++.TH wsgen 1 "16 Mar 2012"
+ .SH "Name"
+ wsgen \- Java(TM) API for XML Web Services (JAX\-WS) 2.0
+ .LP
+@@ -30,7 +30,7 @@
+ The \f2wsgen\fP tool generates JAX\-WS portable artifacts used in JAX\-WS web services. The tool reads a web service endpoint implementation class (SEI) and generates all the required artifacts for web service deployment, and invocation
+ .SH "Overview"
+ .LP
+-The \f2wsgen\fP tool generates JAX\-WS portable artifacts used in JAX\-WS web services. The tool reads a web service endpoint class and generates all the required artifacts for web service deployment, and invocation. JAXWS 2.1.1 RI also provides a wsgen ant task, see
++The \f2wsgen\fP tool generates JAX\-WS portable artifacts used in JAX\-WS web services. The tool reads a web service endpoint class and generates all the required artifacts for web service deployment, and invocation. JAXWS 2.1.1 RI also provides a wsgen ant task, see
+ .na
+ \f2Wsgen ant task\fP @
+ .fi
+@@ -40,25 +40,25 @@
+ .RS 3
+ .TP 2
+ o
+-\f3Solaris/Bsd\fP
++\f3Solaris/Linux/BSD\fP
+ .RS 3
+ .TP 2
+ *
+-\f2export JAXWS_HOME=/pathto/jaxws\-ri\fP
++\f2export JAXWS_HOME=/pathto/jaxws\-ri\fP
+ .TP 2
+ *
+-\f2$JAXWS_HOME/bin/wsgen.sh \-help\fP
++\f2$JAXWS_HOME/bin/wsgen.sh \-help\fP
+ .RE
+ .TP 2
+ o
+-\f3Windows\fP
++\f3Windows\fP
+ .RS 3
+ .TP 2
+ *
+-\f2set JAXWS_HOME=c:\\pathto\\jaxws\-ri\fP
++\f2set JAXWS_HOME=c:\\pathto\\jaxws\-ri\fP
+ .TP 2
+ *
+-\f2%JAXWS_HOME%\\bin\\wsgen.bat \-help\fP
++\f2%JAXWS_HOME%\\bin\\wsgen.bat \-help\fP
+ .RE
+ .RE
+
+@@ -77,6 +77,7 @@
+ The following table lists the \f2wsgen\fP options.
+ .br
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -361,13 +362,13 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Option\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-classpath <path>\fP\h'|\n(41u'
+@@ -383,7 +384,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-cp <path>\fP\h'|\n(41u'
+@@ -399,7 +400,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-d <directory>\fP\h'|\n(41u'
+@@ -415,7 +416,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-extension\fP\h'|\n(41u'
+@@ -429,17 +430,17 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-help\fP\h'|\n(41u'Display help
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-keep\fP\h'|\n(41u'Keep generated files
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-r <directory>\fP\h'|\n(41u'
+@@ -455,7 +456,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-s <directory>\fP\h'|\n(41u'
+@@ -471,7 +472,7 @@
+ .sp |\n(31u
+ .ne \n(g|u+\n(.Vu
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-verbose\fP\h'|\n(41u'
+@@ -487,7 +488,7 @@
+ .sp |\n(31u
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-version\fP\h'|\n(41u'
+@@ -503,7 +504,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-wsdl[:protocol]\fP\h'|\n(41u'
+@@ -519,7 +520,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-servicename <name>\fP\h'|\n(41u'
+@@ -535,7 +536,7 @@
+ .sp |\n(31u
+ .ne \n(k|u+\n(.Vu
+ .if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f4\-portname <name>\fP\h'|\n(41u'
+@@ -564,6 +565,7 @@
+ .rm i+
+ .rm j+
+ .rm k+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-53
+
+ .LP
+@@ -571,7 +573,7 @@
+ .nf
+ \f3
+ .fl
+-\fP\f3wsgen \-d stock \-cp myclasspath stock.StockService\fP
++\fP\f3wsgen \-d stock \-cp myclasspath stock.StockService\fP
+ .fl
+ .fi
+ .LP
+@@ -579,7 +581,7 @@
+ .nf
+ \f3
+ .fl
+-\fP\f3wsgen \-wsdl \-d stock \-cp myclasspath stock.StockService\fP
++\fP\f3wsgen \-wsdl \-d stock \-cp myclasspath stock.StockService\fP
+ .fl
+ .fi
+ .LP
+@@ -587,10 +589,10 @@
+ .nf
+ \f3
+ .fl
+-\fP\f3wsgen \-wsdl:Xsoap1.2 \-d stock \-cp myclasspath stock.StockService\fP
++\fP\f3wsgen \-wsdl:Xsoap1.2 \-d stock \-cp myclasspath stock.StockService\fP
+ .fl
+ .fi
+ .LP
+ Will generate a SOAP 1.2 WSDL.
+ .LP
+-Note that you do not have to generate WSDL at the development time as JAXWS runtime will automatically generate a WSDL for you when you deploy your service.
++Note that you do not have to generate WSDL at the development time as JAXWS runtime will automatically generate a WSDL for you when you deploy your service.
+--- jdk/src/bsd/doc/man/wsimport.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/wsimport.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH wsimport 1 "10 May 2011"
++.TH wsimport 1 "16 Mar 2012"
+ .SH "Name"
+ wsimport \- Java(TM) API for XML Web Services (JAX\-WS) 2.0
+ .LP
+@@ -33,22 +33,22 @@
+ .RS 3
+ .TP 2
+ o
+-Service Endpoint Interface (SEI)
++Service Endpoint Interface (SEI)
+ .TP 2
+ o
+-Service
++Service
+ .TP 2
+ o
+-Exception class mapped from wsdl:fault (if any)
++Exception class mapped from wsdl:fault (if any)
+ .TP 2
+ o
+-Async Reponse Bean derived from response wsdl:message (if any)
++Async Reponse Bean derived from response wsdl:message (if any)
+ .TP 2
+ o
+-JAXB generated value types (mapped java classes from schema types)
++JAXB generated value types (mapped java classes from schema types)
+ .RE
+ .LP
+-These artifacts can be packaged in a WAR file with the WSDL and schema documents along with the endpoint implementation to be deployed. also provides wsimport ant task, see
++These artifacts can be packaged in a WAR file with the WSDL and schema documents along with the endpoint implementation to be deployed. also provides wsimport ant task, see
+ .na
+ \f2Wsimport ant task\fP @
+ .fi
+@@ -60,19 +60,19 @@
+ .RS 3
+ .TP 2
+ o
+-\f3Solaris/Bsd\fP
++\f3Solaris/Linux/BSD\fP
+ .RS 3
+ .TP 2
+ *
+-\f2/bin/wsimport.sh \-help\fP
++\f2/bin/wsimport.sh \-help\fP
+ .RE
+ .TP 2
+ o
+-\f3Windows\fP
++\f3Windows\fP
+ .RS 3
+ .TP 2
+ *
+-\f2\\bin\\wsimport.bat \-help\fP
++\f2\\bin\\wsimport.bat \-help\fP
+ .RE
+ .RE
+
+@@ -88,6 +88,7 @@
+ .LP
+ The following table lists the \f2wsimport\fP options.
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -431,13 +432,13 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Option\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-d <directory> \fP\h'|\n(41u'
+@@ -453,7 +454,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-b <path> \fP\h'|\n(41u'
+@@ -469,7 +470,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-B <jaxbOption>\fP\h'|\n(41u'
+@@ -485,7 +486,7 @@
+ .sp |\n(31u
+ .ne \n(d|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-catalog\fP\h'|\n(41u'
+@@ -501,7 +502,7 @@
+ .sp |\n(31u
+ .ne \n(e|u+\n(.Vu
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-extension \fP\h'|\n(41u'
+@@ -515,7 +516,7 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-help \fP\h'|\n(41u'Display help
+@@ -523,7 +524,7 @@
+ .ne \n(g|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+ .if (\n(g|+\n(#^-1v)>\n(#- .nr #- +(\n(g|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -544,13 +545,13 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-keep \fP\h'|\n(41u'Keep generated files
+ .ne \n(h|u+\n(.Vu
+ .if (\n(h|+\n(#^-1v)>\n(#- .nr #- +(\n(h|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-p \fP\h'|\n(41u'
+@@ -566,7 +567,7 @@
+ .sp |\n(31u
+ .ne \n(i|u+\n(.Vu
+ .if (\n(i|+\n(#^-1v)>\n(#- .nr #- +(\n(i|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-s <directory> \fP\h'|\n(41u'
+@@ -582,7 +583,7 @@
+ .sp |\n(31u
+ .ne \n(j|u+\n(.Vu
+ .if (\n(j|+\n(#^-1v)>\n(#- .nr #- +(\n(j|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-verbose \fP\h'|\n(41u'
+@@ -598,7 +599,7 @@
+ .sp |\n(31u
+ .ne \n(k|u+\n(.Vu
+ .if (\n(k|+\n(#^-1v)>\n(#- .nr #- +(\n(k|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-version \fP\h'|\n(41u'
+@@ -616,7 +617,7 @@
+ .ne \n(m|u+\n(.Vu
+ .if (\n(l|+\n(#^-1v)>\n(#- .nr #- +(\n(l|+\n(#^-\n(#--1v)
+ .if (\n(m|+\n(#^-1v)>\n(#- .nr #- +(\n(m|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -639,7 +640,7 @@
+ .sp |\n(31u
+ .ne \n(n|u+\n(.Vu
+ .if (\n(n|+\n(#^-1v)>\n(#- .nr #- +(\n(n|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-target \fP\h'|\n(41u'
+@@ -653,7 +654,7 @@
+ .mk 32
+ .if \n(32>\n(31 .nr 31 \n(32
+ .sp |\n(31u
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-quiet \fP\h'|\n(41u'Suppress wsimport output
+@@ -675,9 +676,10 @@
+ .rm l+
+ .rm m+
+ .rm n+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-66
+ .LP
+-Multiple JAX\-WS and JAXB binding files can be specified using \f2\-b\fP option and they can be used to customize various things like package names, bean names, etc. More information on JAX\-WS and JAXB binding files can be found in the
++Multiple JAX\-WS and JAXB binding files can be specified using \f2\-b\fP option and they can be used to customize various things like package names, bean names, etc. More information on JAX\-WS and JAXB binding files can be found in the
+ .na
+ \f2customization documentation\fP @
+ .fi
+@@ -685,6 +687,7 @@
+ .LP
+ The following table lists \f2wsimport\fP non\-standard options:
+ .LP
++.TS
+ .if \n+(b.=1 .nr d. \n(.c-\n(c.-1
+ .de 35
+ .ps \n(.s
+@@ -856,13 +859,13 @@
+ .ls
+ ..
+ .ec
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3Option\fP\h'|\n(41u'\f3Description\fP
+ .ne \n(a|u+\n(.Vu
+ .if (\n(a|+\n(#^-1v)>\n(#- .nr #- +(\n(a|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-XadditionalHeaders\fP\h'|\n(41u'
+@@ -878,7 +881,7 @@
+ .sp |\n(31u
+ .ne \n(b|u+\n(.Vu
+ .if (\n(b|+\n(#^-1v)>\n(#- .nr #- +(\n(b|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-Xauthfile <file>\fP\h'|\n(41u'
+@@ -894,7 +897,7 @@
+ .sp |\n(31u
+ .ne \n(c|u+\n(.Vu
+ .if (\n(c|+\n(#^-1v)>\n(#- .nr #- +(\n(c|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-Xdebug\fP\h'|\n(41u'
+@@ -912,7 +915,7 @@
+ .ne \n(e|u+\n(.Vu
+ .if (\n(d|+\n(#^-1v)>\n(#- .nr #- +(\n(d|+\n(#^-\n(#--1v)
+ .if (\n(e|+\n(#^-1v)>\n(#- .nr #- +(\n(e|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\h'|\n(41u'
+@@ -935,7 +938,7 @@
+ .sp |\n(31u
+ .ne \n(f|u+\n(.Vu
+ .if (\n(f|+\n(#^-1v)>\n(#- .nr #- +(\n(f|+\n(#^-\n(#--1v)
+-.ta \n(80u \n(81u
++.ta \n(80u \n(81u
+ .nr 31 \n(.f
+ .nr 35 1m
+ \&\h'|\n(40u'\f3\-Xnocompile\fP\h'|\n(41u'
+@@ -959,6 +962,7 @@
+ .rm d+
+ .rm e+
+ .rm f+
++.TE
+ .if \n-(b.=0 .nr c. \n(.c-\n(d.-26
+
+ .LP
+@@ -972,4 +976,4 @@
+ .LP
+ This will generate the Java artifacts and compile them by importing the \f2http://stockquote.example.com/quote?wsdl\fP.
+ .br
+-
++
+--- jdk/src/bsd/doc/man/xjc.1 2012-08-10 10:22:51.000000000 -0700
++++ jdk/src/bsd/doc/man/xjc.1 2013-03-09 08:44:53.000000000 -0800
+@@ -19,7 +19,7 @@
+ ." or visit www.oracle.com if you need additional information or have any
+ ." questions.
+ ."
+-.TH xjc 1 "10 May 2011"
++.TH xjc 1 "16 Mar 2012"
+
+ .LP
+ .SH "Name"
+@@ -35,7 +35,7 @@
+ .SH "Launching xjc"
+ .LP
+ .LP
+-The binding compiler can be launched using the appropriate \f2xjc\fP shell script in the \f2bin\fP directory for your platform. We also provide an Ant task to run the binding complier \- see the instructions for
++The binding compiler can be launched using the appropriate \f2xjc\fP shell script in the \f2bin\fP directory for your platform. We also provide an Ant task to run the binding complier \- see the instructions for
+ .na
+ \f2using the XJC Ant task\fP @
+ .fi
+@@ -44,7 +44,7 @@
+ .LP
+ \f2% xjc \-help\fP
+ .LP
+-.SS
++.SS
+ Output
+ .LP
+ .nf
+@@ -124,115 +124,115 @@
+ .LP
+ .RS 3
+ .TP 3
+-\-nv
+-By default, the XJC binding compiler performs strict validation of the source schema before processing it. Use this option to disable strict schema validation. This does not mean that the binding compiler will not perform any validation, it simply means that it will perform less\-strict validation.
++\-nv
++By default, the XJC binding compiler performs strict validation of the source schema before processing it. Use this option to disable strict schema validation. This does not mean that the binding compiler will not perform any validation, it simply means that it will perform less\-strict validation.
+ .TP 3
+-\-extension
+-By default, the XJC binding compiler strictly enforces the rules outlined in the Compatibility chapter of the JAXB Specification. Appendix E.2 defines a set of W3C XML Schema features that are not completely supported by JAXB v1.0. In some cases, you may be allowed to use them in the "\-extension" mode enabled by this switch. In the default (strict) mode, you are also limited to using only the binding customizations defined in the specification. By using the "\-extension" switch, you will be allowed to use the JAXB Vendor Extensions
++\-extension
++By default, the XJC binding compiler strictly enforces the rules outlined in the Compatibility chapter of the JAXB Specification. Appendix E.2 defines a set of W3C XML Schema features that are not completely supported by JAXB v1.0. In some cases, you may be allowed to use them in the "\-extension" mode enabled by this switch. In the default (strict) mode, you are also limited to using only the binding customizations defined in the specification. By using the "\-extension" switch, you will be allowed to use the JAXB Vendor Extensions
+ .TP 3
+-\-b <file>
++\-b <file>
+ Specify one or more external binding files to process. (Each binding file must have its own \f2"\-b"\fP switch.) The syntax of the external binding files is extremely flexible. You may have a single binding file that contains customizations for multiple schemas or you can break the customizations into multiple bindings files: \f2xjc schema1.xsd schema2.xsd schema3.xsd \-b bindings123.xjb\fP
+ .br
+-\f2xjc schema1.xsd schema2.xsd schema3.xsd \-b bindings1.xjb \-b bindings2.xjb \-b bindings3.xjb\fP In addition, the ordering of the schema files and binding files on the command line does not matter.
++\f2xjc schema1.xsd schema2.xsd schema3.xsd \-b bindings1.xjb \-b bindings2.xjb \-b bindings3.xjb\fP In addition, the ordering of the schema files and binding files on the command line does not matter.
+ .TP 3
+-\-d <dir>
+-By default, the XJC binding compiler will generate the Java content classes in the current directory. Use this option to specify an alternate output directory. The output directory must already exist, the XJC binding compiler will not create it for you.
++\-d <dir>
++By default, the XJC binding compiler will generate the Java content classes in the current directory. Use this option to specify an alternate output directory. The output directory must already exist, the XJC binding compiler will not create it for you.
+ .TP 3
+-\-p <pkg>
+-Specifying a target package via this command\-line option overrides any binding customization for package name and the default package name algorithm defined in the specification.
++\-p <pkg>
++Specifying a target package via this command\-line option overrides any binding customization for package name and the default package name algorithm defined in the specification.
+ .TP 3
+-\-httpproxy <proxy>
+-Specify the HTTP/HTTPS proxy. The format is [user[:password]@]proxyHost[:proxyPort]. The old \f2\-host\fP and \f2\-port\fP are still supported by the RI for backwards compatibility, but they have been deprecated. Note that the password specified with this option is an argument that is visible to other users who use the \f2top\fP command, for example. For greater security, use \f2\-httpproxyfile\fP, below.
++\-httpproxy <proxy>
++Specify the HTTP/HTTPS proxy. The format is [user[:password]@]proxyHost[:proxyPort]. The old \f2\-host\fP and \f2\-port\fP are still supported by the RI for backwards compatibility, but they have been deprecated. Note that the password specified with this option is an argument that is visible to other users who use the \f2top\fP command, for example. For greater security, use \f2\-httpproxyfile\fP, below.
+ .TP 3
+-\-httpproxyfile <file>
+-Specify the HTTP/HTTPS proxy using a file. Same format as above, but the password specified in the file is not visible to other users.
++\-httpproxyfile <file>
++Specify the HTTP/HTTPS proxy using a file. Same format as above, but the password specified in the file is not visible to other users.
+ .TP 3
+-\-classpath <arg>
+-Specify where to find client application class files used by the \f2<jxb:javaType>\fP and \f2<xjc:superClass>\fP customizations.
++\-classpath <arg>
++Specify where to find client application class files used by the \f2<jxb:javaType>\fP and \f2<xjc:superClass>\fP customizations.
+ .TP 3
+-\-catalog <file>
+-Specify catalog files to resolve external entity references. Supports TR9401, XCatalog, and OASIS XML Catalog format. Please read the XML Entity and URI Resolvers document or the \f2catalog\-resolver\fP sample application.
++\-catalog <file>
++Specify catalog files to resolve external entity references. Supports TR9401, XCatalog, and OASIS XML Catalog format. Please read the XML Entity and URI Resolvers document or the \f2catalog\-resolver\fP sample application.
+ .TP 3
+-\-readOnly
+-By default, the XJC binding compiler does not write\-protect the Java source files it generates. Use this option to force the XJC binding compiler to mark the generated Java sources read\-only.
++\-readOnly
++By default, the XJC binding compiler does not write\-protect the Java source files it generates. Use this option to force the XJC binding compiler to mark the generated Java sources read\-only.
+ .TP 3
+-\-npa
+-Supress the generation of package level annotations into **/package\-info.java. Using this switch causes the generated code to internalize those annotations into the other generated classes.
++\-npa
++Supress the generation of package level annotations into **/package\-info.java. Using this switch causes the generated code to internalize those annotations into the other generated classes.
+ .TP 3
+-\-no\-header
+-Supress the generation of a file header comment that includes some note and timestamp. Using this makes the generated code more diff\-friendly.
++\-no\-header
++Supress the generation of a file header comment that includes some note and timestamp. Using this makes the generated code more diff\-friendly.
+ .TP 3
+-\-target 2.0
+-Avoid generating code that relies on any JAXB 2.1 features. This will allow the generated code to run with JAXB 2.0 runtime (such as JavaSE 6.)
++\-target 2.0
++Avoid generating code that relies on any JAXB 2.1 features. This will allow the generated code to run with JAXB 2.0 runtime (such as JavaSE 6.)
+ .TP 3
+-\-xmlschema
+-Treat input schemas as W3C XML Schema (default). If you do not specify this switch, your input schemas will be treated as W3C XML Schema.
++\-xmlschema
++Treat input schemas as W3C XML Schema (default). If you do not specify this switch, your input schemas will be treated as W3C XML Schema.
+ .TP 3
+-\-relaxng
+-Treat input schemas as RELAX NG (experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
++\-relaxng
++Treat input schemas as RELAX NG (experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
+ .TP 3
+-\-relaxng\-compact
+-Treat input schemas as RELAX NG compact syntax(experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
++\-relaxng\-compact
++Treat input schemas as RELAX NG compact syntax(experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
+ .TP 3
+-\-dtd
+-Treat input schemas as XML DTD (experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
++\-dtd
++Treat input schemas as XML DTD (experimental, unsupported). Support for RELAX NG schemas is provided as a JAXB Vendor Extension.
+ .TP 3
+-\-wsdl
+-Treat input as WSDL and compile schemas inside it (experimental,unsupported).
++\-wsdl
++Treat input as WSDL and compile schemas inside it (experimental,unsupported).
+ .TP 3
+-\-quiet
+-Suppress compiler output, such as progress information and warnings.
++\-quiet
++Suppress compiler output, such as progress information and warnings.
+ .TP 3
+-\-verbose
+-Be extra verbose, such as printing informational messages or displaying stack traces upon some errors.
++\-verbose
++Be extra verbose, such as printing informational messages or displaying stack traces upon some errors.
+ .TP 3
+-\-help
+-Display a brief summary of the compiler switches.
++\-help
++Display a brief summary of the compiler switches.
+ .TP 3
+-\-version
+-Display the compiler version information.
++\-version
++Display the compiler version information.
+ .TP 3
+-<schema file/URL/dir>
+-Specify one or more schema files to compile. If you specify a directory, then xjc will scan it for all schema files and compile them.
++<schema file/URL/dir>
++Specify one or more schema files to compile. If you specify a directory, then xjc will scan it for all schema files and compile them.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Non\-Standard Command Line Options
+ .LP
+ .RS 3
+ .TP 3
+-\-Xlocator
+-Causes the generated code to expose SAX Locator information about the source XML in the Java bean instances after unmarshalling.
++\-Xlocator
++Causes the generated code to expose SAX Locator information about the source XML in the Java bean instances after unmarshalling.
+ .TP 3
+-\-Xsync\-methods
+-Causes all of the generated method signatures to include the \f2synchronized\fP keyword.
++\-Xsync\-methods
++Causes all of the generated method signatures to include the \f2synchronized\fP keyword.
+ .TP 3
+-\-mark\-generated
+-Mark the generated code with the annotation \f2@javax.annotation.Generated\fP.
++\-mark\-generated
++Mark the generated code with the annotation \f2@javax.annotation.Generated\fP.
+ .TP 3
+-\-episode <file>
+-Generate the specified episode file for separate compilation.
++\-episode <file>
++Generate the specified episode file for separate compilation.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Deprecated and Removed Command Line Options
+ .LP
+ .RS 3
+ .TP 3
+-\-host & \-port
+-These options have been deprecated and replaced with the \f3\-httpproxy\fP option. For backwards compatibility, we will continue to support these options, but they will no longer be documented and may be removed from future releases.
++\-host & \-port
++These options have been deprecated and replaced with the \f3\-httpproxy\fP option. For backwards compatibility, we will continue to support these options, but they will no longer be documented and may be removed from future releases.
+ .TP 3
+-\-use\-runtime
+-Since the JAXB 2.0 specification has defined a portable runtime, it is no longer necessary for the JAXB RI to generate **/impl/runtime packages. Therefore, this switch is obsolete and has been removed.
++\-use\-runtime
++Since the JAXB 2.0 specification has defined a portable runtime, it is no longer necessary for the JAXB RI to generate **/impl/runtime packages. Therefore, this switch is obsolete and has been removed.
+ .TP 3
+-\-source
+-The \-source compatibility switch was introduced in the first JAXB 2.0 Early Access release. We have decided to remove this switch from future releases of JAXB 2.0. If you need to generate 1.0.x code, please use an installation of the 1.0.x codebase.
++\-source
++The \-source compatibility switch was introduced in the first JAXB 2.0 Early Access release. We have decided to remove this switch from future releases of JAXB 2.0. If you need to generate 1.0.x code, please use an installation of the 1.0.x codebase.
+ .RE
+
+ .LP
+-.SS
++.SS
+ Compiler Restrictions
+ .LP
+ .LP
+@@ -244,30 +244,30 @@
+ .RS 3
+ .TP 2
+ o
+-To compile multiple schemas at the same time, keep the following precedence rules for the target Java package name in mind:
++To compile multiple schemas at the same time, keep the following precedence rules for the target Java package name in mind:
+ .RS 3
+ .TP 3
+ 1.
+-The "\f2\-p\fP" command line option takes the highest precedence.
++The "\f2\-p\fP" command line option takes the highest precedence.
+ .TP 3
+ 2.
+-<\f2jaxb:package\fP> customization
++<\f2jaxb:package\fP> customization
+ .TP 3
+ 3.
+-If \f2targetNamespace\fP is declared, apply \f2targetNamespace\fP \-> Java package name algorithm defined in the specification.
++If \f2targetNamespace\fP is declared, apply \f2targetNamespace\fP \-> Java package name algorithm defined in the specification.
+ .TP 3
+ 4.
+-If no \f2targetNamespace\fP is declared, use a hardcoded package named "generated".
++If no \f2targetNamespace\fP is declared, use a hardcoded package named "generated".
+ .RE
+ .TP 2
+ o
+-It is not legal to have more than one <\f2jaxb:schemaBindings\fP> per namespace, so it is impossible to have two schemas in the same target namespace compiled into different Java packages.
++It is not legal to have more than one <\f2jaxb:schemaBindings\fP> per namespace, so it is impossible to have two schemas in the same target namespace compiled into different Java packages.
+ .TP 2
+ o
+-All schemas being compiled into the same Java package must be submitted to the XJC binding compiler at the same time \- they cannot be compiled independently and work as expected.
++All schemas being compiled into the same Java package must be submitted to the XJC binding compiler at the same time \- they cannot be compiled independently and work as expected.
+ .TP 2
+ o
+-Element substitution groups spread across multiple schema files must be compiled at the same time.
++Element substitution groups spread across multiple schema files must be compiled at the same time.
+ .RE
+
+ .LP
+@@ -280,18 +280,18 @@
+ .na
+ \f2command\-line instructions\fP @
+ .fi
+-https://jaxb.dev.java.net/nonav/2.1.3/docs/xjc.html,
++https://jaxb.dev.java.net/nonav/2.1.3/docs/xjc.html,
+ .na
+ \f2using the XJC Ant task\fP @
+ .fi
+-https://jaxb.dev.java.net/nonav/2.1.3/docs/xjcTask.html]
++https://jaxb.dev.java.net/nonav/2.1.3/docs/xjcTask.html]
+ .TP 2
+ o
+ .na
+ \f2Java Architecture for XML Binding (JAXB)\fP @
+ .fi
+-http://download.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
++http://docs.oracle.com/javase/7/docs/technotes/guides/xml/jaxb/index.html
+ .RE
+
+ .LP
+-
++
--- jdk/src/macosx/classes/com/apple/laf/AquaPanelUI.java 2012-08-10 10:23:05.000000000 -0700
+++ jdk/src/macosx/classes/com/apple/laf/AquaPanelUI.java 2013-01-16 00:07:00.000000000 -0800
@@ -32,20 +32,10 @@
@@ -10180,7 +52041,7 @@
+}
+
--- jdk/src/share/bin/java.c 2012-08-10 10:23:29.000000000 -0700
-+++ jdk/src/share/bin/java.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/bin/java.c 2013-03-09 08:44:53.000000000 -0800
@@ -104,7 +104,6 @@
static jboolean InitializeJVM(JavaVM **pvm, JNIEnv **penv,
InvocationFunctions *ifn);
@@ -10305,7 +52166,7 @@
}
--- jdk/src/share/bin/jli_util.h 2012-08-10 10:23:29.000000000 -0700
-+++ jdk/src/share/bin/jli_util.h 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/bin/jli_util.h 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2005, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -10339,10 +52200,12 @@
#define JLI_StrLen(p1) strlen((p1))
#define JLI_StrChr(p1, p2) strchr((p1), (p2))
#define JLI_StrRChr(p1, p2) strrchr((p1), (p2))
-@@ -56,8 +67,10 @@
+@@ -55,9 +66,11 @@
+ #include <io.h>
#define JLI_StrCaseCmp(p1, p2) stricmp((p1), (p2))
#define JLI_StrNCaseCmp(p1, p2, p3) strnicmp((p1), (p2), (p3))
- #define JLI_Snprintf _snprintf
+-#define JLI_Snprintf _snprintf
++int JLI_Snprintf(char *buffer, size_t size, const char *format, ...);
+void JLI_CmdToArgs(char *cmdline);
#else
#include <unistd.h>
@@ -10408,6 +52271,49 @@
return JLI_Launch(margc, margv,
sizeof(const_jargs) / sizeof(char *), const_jargs,
sizeof(const_appclasspath) / sizeof(char *), const_appclasspath,
+--- jdk/src/share/bin/parse_manifest.c 2012-08-10 10:23:29.000000000 -0700
++++ jdk/src/share/bin/parse_manifest.c 2013-03-09 08:44:48.000000000 -0800
+@@ -490,9 +490,9 @@
+ #ifdef O_BINARY
+ | O_BINARY /* use binary mode on windows */
+ #endif
+- )) == -1)
++ )) == -1) {
+ return (-1);
+-
++ }
+ info->manifest_version = NULL;
+ info->main_class = NULL;
+ info->jre_version = NULL;
+@@ -539,12 +539,14 @@
+ zentry entry;
+ void *data = NULL;
+
+- fd = open(jarfile, O_RDONLY
++ if ((fd = open(jarfile, O_RDONLY
+ #ifdef O_BINARY
+ | O_BINARY /* use binary mode on windows */
+ #endif
+- );
+- if (fd != -1 && find_file(fd, &entry, filename) == 0) {
++ )) == -1) {
++ return NULL;
++ }
++ if (find_file(fd, &entry, filename) == 0) {
+ data = inflate_file(fd, &entry, size);
+ }
+ close(fd);
+@@ -586,8 +588,9 @@
+ #ifdef O_BINARY
+ | O_BINARY /* use binary mode on windows */
+ #endif
+- )) == -1)
++ )) == -1) {
+ return (-1);
++ }
+
+ if (rc = find_file(fd, &entry, manifest_name) != 0) {
+ close(fd);
--- jdk/src/share/bin/wildcard.c 2012-08-10 10:23:30.000000000 -0700
+++ jdk/src/share/bin/wildcard.c 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -12057,7 +53963,7 @@
}
return field;
--- jdk/src/share/classes/com/sun/beans/finder/MethodFinder.java 2012-08-10 10:23:33.000000000 -0700
-+++ jdk/src/share/classes/com/sun/beans/finder/MethodFinder.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/com/sun/beans/finder/MethodFinder.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -12074,7 +53980,24 @@
/**
* This utility class provides {@code static} methods
* to find a public method with specified name and parameter types
-@@ -120,7 +122,7 @@
+@@ -64,11 +66,14 @@
+ Signature signature = new Signature(type, name, args);
+
+ Method method = CACHE.get(signature);
+- if (method != null) {
++ boolean cached = method != null;
++ if (cached && isPackageAccessible(method.getDeclaringClass())) {
+ return method;
+ }
+ method = findAccessibleMethod(new MethodFinder(name, args).find(type.getMethods()));
+- CACHE.put(signature, method);
++ if (!cached) {
++ CACHE.put(signature, method);
++ }
+ return method;
+ }
+
+@@ -120,7 +125,7 @@
*/
public static Method findAccessibleMethod(Method method) throws NoSuchMethodException {
Class<?> type = method.getDeclaringClass();
@@ -12083,7 +54006,7 @@
return method;
}
if (Modifier.isStatic(method.getModifiers())) {
-@@ -164,10 +166,8 @@
+@@ -164,10 +169,8 @@
return findAccessibleMethod(m);
}
Type[] gpts = m.getGenericParameterTypes();
@@ -12360,6 +54283,27 @@
}
+--- jdk/src/share/classes/com/sun/crypto/provider/DHKeyAgreement.java 2012-08-10 10:23:34.000000000 -0700
++++ jdk/src/share/classes/com/sun/crypto/provider/DHKeyAgreement.java 2013-03-09 08:44:48.000000000 -0800
+@@ -41,6 +41,8 @@
+ import javax.crypto.SecretKey;
+ import javax.crypto.spec.*;
+
++import sun.security.util.KeyUtil;
++
+ /**
+ * This class implements the Diffie-Hellman key agreement protocol between
+ * any number of parties.
+@@ -200,6 +202,9 @@
+ throw new InvalidKeyException("Incompatible parameters");
+ }
+
++ // validate the Diffie-Hellman public key
++ KeyUtil.validate(dhPubKey);
++
+ // store the y value
+ this.y = dhPubKey.getY();
+
--- jdk/src/share/classes/com/sun/java/swing/plaf/windows/WindowsRootPaneUI.java 2012-08-10 10:24:01.000000000 -0700
+++ jdk/src/share/classes/com/sun/java/swing/plaf/windows/WindowsRootPaneUI.java 2013-01-16 08:58:10.000000000 -0800
@@ -30,6 +30,8 @@
@@ -12392,6 +54336,323 @@
MenuElement[] path = new MenuElement[2];
path[0] = mbar;
path[1] = menu;
+--- jdk/src/share/classes/com/sun/java/util/jar/pack/BandStructure.java 2012-08-10 10:24:12.000000000 -0700
++++ jdk/src/share/classes/com/sun/java/util/jar/pack/BandStructure.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1003,7 +1003,6 @@
+
+ /** Write a constant pool reference. */
+ public void putRef(Entry e) {
+- assert(index != null);
+ addValue(encodeRefOrNull(e, index));
+ }
+ public void putRef(Entry e, Index index) {
+@@ -1055,6 +1054,8 @@
+
+
+ int encodeRef(Entry e, Index ix) {
++ if (ix == null)
++ throw new RuntimeException("null index for " + e.stringValue());
+ int coding = ix.indexOf(e);
+ if (verbose > 2)
+ Utils.log.fine("putRef "+coding+" => "+e);
+--- jdk/src/share/classes/com/sun/java/util/jar/pack/ConstantPool.java 2012-08-10 10:24:13.000000000 -0700
++++ jdk/src/share/classes/com/sun/java/util/jar/pack/ConstantPool.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1053,6 +1053,8 @@
+
+ /** Index of all CP entries of a given tag and class. */
+ public Index getMemberIndex(byte tag, ClassEntry classRef) {
++ if (classRef == null)
++ throw new RuntimeException("missing class reference for " + tagName(tag));
+ if (indexByTagAndClass == null)
+ indexByTagAndClass = new Index[CONSTANT_Limit][];
+ Index allClasses = getIndexByTag(CONSTANT_Class);
+--- jdk/src/share/classes/com/sun/java/util/jar/pack/NativeUnpack.java 2012-08-10 10:24:14.000000000 -0700
++++ jdk/src/share/classes/com/sun/java/util/jar/pack/NativeUnpack.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -104,6 +104,10 @@
+ return (p200 == null)? null: p200._nunp;
+ }
+
++ private synchronized long getUnpackerPtr() {
++ return unpackerPtr;
++ }
++
+ // Callback from the unpacker engine to get more data.
+ private long readInputFn(ByteBuffer pbuf, long minlen) throws IOException {
+ if (in == null) return 0; // nothing is readable
+--- jdk/src/share/classes/com/sun/java/util/jar/pack/PackerImpl.java 2012-08-10 10:24:14.000000000 -0700
++++ jdk/src/share/classes/com/sun/java/util/jar/pack/PackerImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -84,7 +84,7 @@
+ * @param out an OutputStream
+ * @exception IOException if an error is encountered.
+ */
+- public void pack(JarFile in, OutputStream out) throws IOException {
++ public synchronized void pack(JarFile in, OutputStream out) throws IOException {
+ assert(Utils.currentInstance.get() == null);
+ TimeZone tz = (props.getBoolean(Utils.PACK_DEFAULT_TIMEZONE))
+ ? null
+@@ -119,7 +119,7 @@
+ * @param out an OutputStream
+ * @exception IOException if an error is encountered.
+ */
+- public void pack(JarInputStream in, OutputStream out) throws IOException {
++ public synchronized void pack(JarInputStream in, OutputStream out) throws IOException {
+ assert(Utils.currentInstance.get() == null);
+ TimeZone tz = (props.getBoolean(Utils.PACK_DEFAULT_TIMEZONE)) ? null :
+ TimeZone.getDefault();
+--- jdk/src/share/classes/com/sun/java/util/jar/pack/UnpackerImpl.java 2012-08-10 10:24:14.000000000 -0700
++++ jdk/src/share/classes/com/sun/java/util/jar/pack/UnpackerImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -107,7 +107,7 @@
+ * @param out a JarOutputStream.
+ * @exception IOException if an error is encountered.
+ */
+- public void unpack(InputStream in, JarOutputStream out) throws IOException {
++ public synchronized void unpack(InputStream in, JarOutputStream out) throws IOException {
+ if (in == null) {
+ throw new NullPointerException("null input");
+ }
+@@ -152,7 +152,7 @@
+ * @param out a JarOutputStream.
+ * @exception IOException if an error is encountered.
+ */
+- public void unpack(File in, JarOutputStream out) throws IOException {
++ public synchronized void unpack(File in, JarOutputStream out) throws IOException {
+ if (in == null) {
+ throw new NullPointerException("null input");
+ }
+--- jdk/src/share/classes/com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport.java 2012-08-10 10:24:19.000000000 -0700
++++ jdk/src/share/classes/com/sun/jmx/mbeanserver/ClassLoaderRepositorySupport.java 2013-03-09 08:44:48.000000000 -0800
+@@ -36,6 +36,7 @@
+
+ import javax.management.ObjectName;
+ import javax.management.loading.PrivateClassLoader;
++import sun.reflect.misc.ReflectUtil;
+
+ /**
+ * This class keeps the list of Class Loaders registered in the MBean Server.
+@@ -192,6 +193,7 @@
+ final ClassLoader without,
+ final ClassLoader stop)
+ throws ClassNotFoundException {
++ ReflectUtil.checkPackageAccess(className);
+ final int size = list.length;
+ for(int i=0; i<size; i++) {
+ try {
+--- jdk/src/share/classes/com/sun/jmx/mbeanserver/Introspector.java 2012-08-10 10:24:19.000000000 -0700
++++ jdk/src/share/classes/com/sun/jmx/mbeanserver/Introspector.java 2013-03-09 08:44:48.000000000 -0800
+@@ -56,6 +56,8 @@
+ import java.lang.reflect.InvocationTargetException;
+ import javax.management.AttributeNotFoundException;
+ import javax.management.openmbean.CompositeData;
++import sun.reflect.misc.MethodUtil;
++import sun.reflect.misc.ReflectUtil;
+
+ /**
+ * This class contains the methods for performing all the tests needed to verify
+@@ -528,8 +530,10 @@
+ // to locate method
+ readMethod = SimpleIntrospector.getReadMethod(clazz, element);
+ }
+- if (readMethod != null)
+- return readMethod.invoke(complex);
++ if (readMethod != null) {
++ ReflectUtil.checkPackageAccess(readMethod.getDeclaringClass());
++ return MethodUtil.invoke(readMethod, complex, new Class[0]);
++ }
+
+ throw new AttributeNotFoundException(
+ "Could not find the getter method for the property " +
+--- jdk/src/share/classes/com/sun/jmx/mbeanserver/JmxMBeanServer.java 2012-08-10 10:24:19.000000000 -0700
++++ jdk/src/share/classes/com/sun/jmx/mbeanserver/JmxMBeanServer.java 2013-03-09 08:44:48.000000000 -0800
+@@ -51,6 +51,7 @@
+ import javax.management.MBeanRegistrationException;
+ import javax.management.MBeanServer;
+ import javax.management.MBeanServerDelegate;
++import javax.management.MBeanServerPermission;
+ import javax.management.NotCompliantMBeanException;
+ import javax.management.NotificationFilter;
+ import javax.management.NotificationListener;
+@@ -1409,6 +1410,8 @@
+ // Default is true.
+ final boolean fairLock = DEFAULT_FAIR_LOCK_POLICY;
+
++ checkNewMBeanServerPermission();
++
+ // This constructor happens to disregard the value of the interceptors
+ // flag - that is, it always uses the default value - false.
+ // This is admitedly a bug, but we chose not to fix it for now
+@@ -1494,4 +1497,11 @@
+ }
+ }
+
++ private static void checkNewMBeanServerPermission() {
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null) {
++ Permission perm = new MBeanServerPermission("newMBeanServer");
++ sm.checkPermission(perm);
++ }
++ }
+ }
+--- jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanInstantiator.java 2012-08-10 10:24:19.000000000 -0700
++++ jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanInstantiator.java 2013-03-09 08:44:48.000000000 -0800
+@@ -32,11 +32,13 @@
+ import java.io.ObjectInputStream;
+ import java.lang.reflect.Constructor;
+ import java.lang.reflect.InvocationTargetException;
++import java.security.Permission;
+ import java.util.Map;
+ import java.util.logging.Level;
+
+ import javax.management.InstanceNotFoundException;
+ import javax.management.MBeanException;
++import javax.management.MBeanPermission;
+ import javax.management.NotCompliantMBeanException;
+ import javax.management.ObjectName;
+ import javax.management.OperationsException;
+@@ -44,7 +46,7 @@
+ import javax.management.RuntimeErrorException;
+ import javax.management.RuntimeMBeanException;
+ import javax.management.RuntimeOperationsException;
+-
++import sun.reflect.misc.ConstructorUtil;
+ import sun.reflect.misc.ReflectUtil;
+
+ /**
+@@ -56,7 +58,6 @@
+ * @since 1.5
+ */
+ public class MBeanInstantiator {
+-
+ private final ModifiableClassLoaderRepository clr;
+ // private MetaData meta = null;
+
+@@ -88,6 +89,7 @@
+ "Exception occurred during object instantiation");
+ }
+
++ ReflectUtil.checkPackageAccess(className);
+ try {
+ if (clr == null) throw new ClassNotFoundException(className);
+ theClass = clr.loadClass(className);
+@@ -162,6 +164,7 @@
+ continue;
+ }
+
++ ReflectUtil.checkPackageAccess(signature[i]);
+ // Ok we do not have a primitive type ! We need to build
+ // the signature of the method
+ //
+@@ -205,6 +208,9 @@
+ */
+ public Object instantiate(Class<?> theClass)
+ throws ReflectionException, MBeanException {
++
++ checkMBeanPermission(theClass, null, null, "instantiate");
++
+ Object moi;
+
+
+@@ -260,6 +266,9 @@
+ public Object instantiate(Class<?> theClass, Object params[],
+ String signature[], ClassLoader loader)
+ throws ReflectionException, MBeanException {
++
++ checkMBeanPermission(theClass, null, null, "instantiate");
++
+ // Instantiate the new object
+
+ // ------------------------------
+@@ -407,6 +416,8 @@
+ throw new RuntimeOperationsException(new
+ IllegalArgumentException(), "Null className passed in parameter");
+ }
++
++ ReflectUtil.checkPackageAccess(className);
+ Class<?> theClass;
+ if (loaderName == null) {
+ // Load the class using the agent class loader
+@@ -619,13 +630,13 @@
+ **/
+ static Class<?> loadClass(String className, ClassLoader loader)
+ throws ReflectionException {
+-
+ Class<?> theClass;
+ if (className == null) {
+ throw new RuntimeOperationsException(new
+ IllegalArgumentException("The class name cannot be null"),
+ "Exception occurred during object instantiation");
+ }
++ ReflectUtil.checkPackageAccess(className);
+ try {
+ if (loader == null)
+ loader = MBeanInstantiator.class.getClassLoader();
+@@ -676,6 +687,7 @@
+ // We need to load the class through the class
+ // loader of the target object.
+ //
++ ReflectUtil.checkPackageAccess(signature[i]);
+ tab[i] = Class.forName(signature[i], false, aLoader);
+ }
+ } catch (ClassNotFoundException e) {
+@@ -701,7 +713,7 @@
+
+ private Constructor<?> findConstructor(Class<?> c, Class<?>[] params) {
+ try {
+- return c.getConstructor(params);
++ return ConstructorUtil.getConstructor(c, params);
+ } catch (Exception e) {
+ return null;
+ }
+@@ -715,4 +727,18 @@
+ char.class, boolean.class})
+ primitiveClasses.put(c.getName(), c);
+ }
++
++ private static void checkMBeanPermission(Class<?> clazz,
++ String member,
++ ObjectName objectName,
++ String actions) {
++ SecurityManager sm = System.getSecurityManager();
++ if (clazz != null && sm != null) {
++ Permission perm = new MBeanPermission(clazz.getName(),
++ member,
++ objectName,
++ actions);
++ sm.checkPermission(perm);
++ }
++ }
+ }
+--- jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanSupport.java 2012-08-10 10:24:19.000000000 -0700
++++ jdk/src/share/classes/com/sun/jmx/mbeanserver/MBeanSupport.java 2013-03-09 08:44:48.000000000 -0800
+@@ -38,6 +38,7 @@
+ import javax.management.ObjectName;
+ import javax.management.ReflectionException;
+ import com.sun.jmx.mbeanserver.MXBeanMappingFactory;
++import sun.reflect.misc.ReflectUtil;
+
+ /**
+ * Base class for MBeans. There is one instance of this class for
+@@ -131,6 +132,7 @@
+ " is not an instance of " + mbeanInterfaceType.getName();
+ throw new NotCompliantMBeanException(msg);
+ }
++ ReflectUtil.checkPackageAccess(mbeanInterfaceType);
+ this.resource = resource;
+ MBeanIntrospector<M> introspector = getMBeanIntrospector();
+ this.perInterface = introspector.getPerInterface(mbeanInterfaceType);
--- jdk/src/share/classes/com/sun/jmx/remote/internal/ServerNotifForwarder.java 2012-08-10 10:24:20.000000000 -0700
+++ jdk/src/share/classes/com/sun/jmx/remote/internal/ServerNotifForwarder.java 2013-01-16 08:58:10.000000000 -0800
@@ -68,9 +68,9 @@
@@ -12730,16 +54991,381 @@
Context cx = enterContext();
--- jdk/src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic.properties 2012-08-10 10:25:42.000000000 -0700
+++ jdk/src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic.properties 2013-01-16 00:07:04.000000000 -0800
-@@ -71,9 +71,6 @@
- FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
- FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
-
+@@ -1,189 +1,186 @@
+-# This properties file is used to create a PropertyResourceBundle
+-# It contains Locale specific strings used in Swing
+-# Currently, the following components need this for support:
+-#
+-# ColorChooser
+-# FileChooser
+-# OptionPane
+-#
+-# When this file is read in, the strings are put into the
+-# defaults table. This is an implementation detail of the current
+-# workings of Swing. DO NOT DEPEND ON THIS.
+-# This may change in future versions of Swing as we improve localization
+-# support.
+-#
+-# MNEMONIC NOTE:
+-# Many of strings in this file are used by widgets that have a
+-# mnemonic, for example:
+-# ColorChooser.rgbNameTextAndMnemonic=R&GB
+-#
+-# Indicates that the tab in the ColorChooser for RGB colors will have
+-# the text 'RGB', further the mnemonic character will be 'g' and that
+-# a decoration will be provided under the 'G'. This will typically
+-# look like: RGB
+-# -
+-#
+-# One important thing to remember is that the mnemonic MUST exist in
+-# the String, if it does not exist you should add text that makes it
+-# exist. This will typically take the form 'XXXX (M)' where M is the
+-# character for the mnemonic.
+-#
+-# @author Steve Wilson
+-
+-############ FILE CHOOSER STRINGS #############
+-FileChooser.fileDescription.textAndMnemonic=Generic File
+-FileChooser.directoryDescription.textAndMnemonic=Directory
+-FileChooser.newFolderError.textAndMnemonic=Error creating new folder
+-FileChooser.newFolderErrorSeparator= :
+-FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
+-FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
+-FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
+-FileChooser.renameError.textAndMnemonic=Cannot rename {0}
++# This properties file is used to create a PropertyResourceBundle
++# It contains Locale specific strings used in Swing
++# Currently, the following components need this for support:
++#
++# ColorChooser
++# FileChooser
++# OptionPane
++#
++# When this file is read in, the strings are put into the
++# defaults table. This is an implementation detail of the current
++# workings of Swing. DO NOT DEPEND ON THIS.
++# This may change in future versions of Swing as we improve localization
++# support.
++#
++# MNEMONIC NOTE:
++# Many of strings in this file are used by widgets that have a
++# mnemonic, for example:
++# ColorChooser.rgbNameTextAndMnemonic=R&GB
++#
++# Indicates that the tab in the ColorChooser for RGB colors will have
++# the text 'RGB', further the mnemonic character will be 'g' and that
++# a decoration will be provided under the 'G'. This will typically
++# look like: RGB
++# -
++#
++# One important thing to remember is that the mnemonic MUST exist in
++# the String, if it does not exist you should add text that makes it
++# exist. This will typically take the form 'XXXX (M)' where M is the
++# character for the mnemonic.
++#
++# @author Steve Wilson
++
++############ FILE CHOOSER STRINGS #############
++FileChooser.fileDescription.textAndMnemonic=Generic File
++FileChooser.directoryDescription.textAndMnemonic=Directory
++FileChooser.newFolderError.textAndMnemonic=Error creating new folder
++FileChooser.newFolderErrorSeparator= :
++FileChooser.newFolderParentDoesntExistTitle.textAndMnemonic=Unable to create folder
++FileChooser.newFolderParentDoesntExist.textAndMnemonic=Unable to create the folder.\n\nThe system cannot find the path specified.
++FileChooser.renameErrorTitle.textAndMnemonic=Error Renaming File or Folder
++FileChooser.renameError.textAndMnemonic=Cannot rename {0}
+ FileChooser.renameErrorFileExists.textAndMnemonic=Cannot rename {0}: A file with the name you specified already exists. \
+- Specify a different file name.
+-FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
+-FileChooser.cancelButton.textAndMnemonic=Cancel
+-FileChooser.saveButton.textAndMnemonic=&Save
+-FileChooser.openButton.textAndMnemonic=&Open
+-FileChooser.saveDialogTitle.textAndMnemonic=Save
+-FileChooser.openDialogTitle.textAndMnemonic=Open
+-FileChooser.updateButton.textAndMnemonic=&Update
+-FileChooser.helpButton.textAndMnemonic=&Help
+-FileChooser.directoryOpenButton.textAndMnemonic=&Open
+-
+-# File Size Units
+-FileChooser.fileSizeKiloBytes={0} KB
+-FileChooser.fileSizeMegaBytes={0} MB
+-FileChooser.fileSizeGigaBytes={0} GB
+-
+-# These strings are platform dependent not look and feel dependent.
+-FileChooser.win32.newFolder=New Folder
+-FileChooser.win32.newFolder.subsequent=New Folder ({0})
+-FileChooser.other.newFolder=NewFolder
+-FileChooser.other.newFolder.subsequent=NewFolder.{0}
+-
+-
+-## file chooser tooltips ###
+-FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
+-FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
+-FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
+-FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
+-FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
+-FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
+-
-FileChooser.filesListAccessibleName=Files List
-FileChooser.filesDetailsAccessibleName=Files Details
-
- ############ COLOR CHOOSER STRINGS #############
- ColorChooser.preview.textAndMnemonic=Preview
- ColorChooser.ok.textAndMnemonic=OK
+-############ COLOR CHOOSER STRINGS #############
+-ColorChooser.preview.textAndMnemonic=Preview
+-ColorChooser.ok.textAndMnemonic=OK
+-ColorChooser.cancel.textAndMnemonic=Cancel
+-ColorChooser.reset.textAndMnemonic=&Reset
+-ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
+-ColorChooser.swatches.textAndMnemonic=&Swatches
+-ColorChooser.swatchesRecent.textAndMnemonic=Recent:
+-ColorChooser.hsv.textAndMnemonic=&HSV
+-ColorChooser.hsvHue.textAndMnemonic=Hue
+-ColorChooser.hsvSaturation.textAndMnemonic=Saturation
+-ColorChooser.hsvValue.textAndMnemonic=Value
+-ColorChooser.hsvTransparency.textAndMnemonic=Transparency
+-ColorChooser.hsl.textAndMnemonic=HS&L
+-ColorChooser.hslHue.textAndMnemonic=Hue
+-ColorChooser.hslSaturation.textAndMnemonic=Saturation
+-ColorChooser.hslLightness.textAndMnemonic=Lightness
+-ColorChooser.hslTransparency.textAndMnemonic=Transparency
+-ColorChooser.rgb.textAndMnemonic=R&GB
+-ColorChooser.rgbRed.textAndMnemonic=Re&d
+-ColorChooser.rgbGreen.textAndMnemonic=Gree&n
+-ColorChooser.rgbBlue.textAndMnemonic=&Blue
+-ColorChooser.rgbAlpha.textAndMnemonic=Alpha
+-ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
+-ColorChooser.cmyk.textAndMnemonic=C&MYK
+-ColorChooser.cmykCyan.textAndMnemonic=Cyan
+-ColorChooser.cmykMagenta.textAndMnemonic=Magenta
+-ColorChooser.cmykYellow.textAndMnemonic=Yellow
+-ColorChooser.cmykBlack.textAndMnemonic=Black
+-ColorChooser.cmykAlpha.textAndMnemonic=Alpha
+-
+-############ OPTION PANE STRINGS #############
+-# We only define mnemonics for YES/NO, but for completeness you can
+-# define mnemonics for any of the buttons.
+-OptionPane.yesButton.textAndMnemonic=&Yes
+-OptionPane.noButton.textAndMnemonic=&No
+-OptionPane.okButton.textAndMnemonic=OK
+-#OptionPane.okButtonMnemonic=0
+-OptionPane.cancelButton.textAndMnemonic=Cancel
+-#OptionPane.cancelButtonMnemonic=0
+-OptionPane.title.textAndMnemonic=Select an Option
+-# Title for the dialog for the showInputDialog methods. Only used if
+-# the developer uses one of the variants that doesn't take a title.
+-OptionPane.inputDialog.titleAndMnemonic=Input
+-# Title for the dialog for the showMessageDialog methods. Only used if
+-# the developer uses one of the variants that doesn't take a title.
+-OptionPane.messageDialog.titleAndMnemonic=Message
+-
+-############ Printing Dialog Strings ############
+-PrintingDialog.titleProgress.textAndMnemonic=Printing
+-PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
+-
+-PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
+-
+-# The following string will be formatted by a MessageFormat
+-# and {0} will be replaced by page number being printed
+-PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
+-
+-PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
+-
+-PrintingDialog.abortButton.textAndMnemonic=&Abort
+-PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
+-
+-############ Internal Frame Strings ############
+-InternalFrame.iconButtonToolTip=Minimize
+-InternalFrame.maxButtonToolTip=Maximize
+-InternalFrame.restoreButtonToolTip=Restore
+-InternalFrame.closeButtonToolTip=Close
+-
+-############ Internal Frame Title Pane Strings ############
+-InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
+-InternalFrameTitlePane.moveButton.textAndMnemonic=Move
+-InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
+-InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
+-InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
+-InternalFrameTitlePane.closeButton.textAndMnemonic=Close
+-
+-############ Text strings #############
+-# Used for html forms
+-FormView.submitButton.textAndMnemonic=Submit Query
+-FormView.resetButton.textAndMnemonic=Reset
+-FormView.browseFileButton.textAndMnemonic=Browse...
+-
+-############ Abstract Document Strings ############
+-AbstractDocument.styleChange.textAndMnemonic=style change
+-AbstractDocument.addition.textAndMnemonic=addition
+-AbstractDocument.deletion.textAndMnemonic=deletion
+-AbstractDocument.undo.textAndMnemonic=Undo
+-AbstractDocument.redo.textAndMnemonic=Redo
+-
+-############ Abstract Button Strings ############
+-AbstractButton.click.textAndMnemonic=click
+-
+-############ Abstract Undoable Edit Strings ############
+-AbstractUndoableEdit.undo.textAndMnemonic=Undo
+-AbstractUndoableEdit.redo.textAndMnemonic=Redo
+-
+-############ Combo Box Strings ############
+-ComboBox.togglePopup.textAndMnemonic=togglePopup
+-
+-############ Progress Monitor Strings ############
+-ProgressMonitor.progress.textAndMnemonic=Progress...
+-
+-############ Split Pane Strings ############
+-SplitPane.leftButton.textAndMnemonic=left button
+-SplitPane.rightButton.textAndMnemonic=right button
+-# Used for Isindex
+-IsindexView.prompt=This is a searchable index. Enter search keywords:
+-
+-############ InternalFrameTitlePane Strings ############
+-InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
+-InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
+-InternalFrameTitlePane.closeButtonAccessibleName=Close
++ Specify a different file name.
++FileChooser.acceptAllFileFilter.textAndMnemonic=All Files
++FileChooser.cancelButton.textAndMnemonic=Cancel
++FileChooser.saveButton.textAndMnemonic=&Save
++FileChooser.openButton.textAndMnemonic=&Open
++FileChooser.saveDialogTitle.textAndMnemonic=Save
++FileChooser.openDialogTitle.textAndMnemonic=Open
++FileChooser.updateButton.textAndMnemonic=&Update
++FileChooser.helpButton.textAndMnemonic=&Help
++FileChooser.directoryOpenButton.textAndMnemonic=&Open
++
++# File Size Units
++FileChooser.fileSizeKiloBytes={0} KB
++FileChooser.fileSizeMegaBytes={0} MB
++FileChooser.fileSizeGigaBytes={0} GB
++
++# These strings are platform dependent not look and feel dependent.
++FileChooser.win32.newFolder=New Folder
++FileChooser.win32.newFolder.subsequent=New Folder ({0})
++FileChooser.other.newFolder=NewFolder
++FileChooser.other.newFolder.subsequent=NewFolder.{0}
++
++
++## file chooser tooltips ###
++FileChooser.cancelButtonToolTip.textAndMnemonic=Abort file chooser dialog
++FileChooser.saveButtonToolTip.textAndMnemonic=Save selected file
++FileChooser.openButtonToolTip.textAndMnemonic=Open selected file
++FileChooser.updateButtonToolTip.textAndMnemonic=Update directory listing
++FileChooser.helpButtonToolTip.textAndMnemonic=FileChooser help
++FileChooser.directoryOpenButtonToolTip.textAndMnemonic=Open selected directory
++
++############ COLOR CHOOSER STRINGS #############
++ColorChooser.preview.textAndMnemonic=Preview
++ColorChooser.ok.textAndMnemonic=OK
++ColorChooser.cancel.textAndMnemonic=Cancel
++ColorChooser.reset.textAndMnemonic=&Reset
++ColorChooser.sample.textAndMnemonic=Sample Text Sample Text
++ColorChooser.swatches.textAndMnemonic=&Swatches
++ColorChooser.swatchesRecent.textAndMnemonic=Recent:
++ColorChooser.hsv.textAndMnemonic=&HSV
++ColorChooser.hsvHue.textAndMnemonic=Hue
++ColorChooser.hsvSaturation.textAndMnemonic=Saturation
++ColorChooser.hsvValue.textAndMnemonic=Value
++ColorChooser.hsvTransparency.textAndMnemonic=Transparency
++ColorChooser.hsl.textAndMnemonic=HS&L
++ColorChooser.hslHue.textAndMnemonic=Hue
++ColorChooser.hslSaturation.textAndMnemonic=Saturation
++ColorChooser.hslLightness.textAndMnemonic=Lightness
++ColorChooser.hslTransparency.textAndMnemonic=Transparency
++ColorChooser.rgb.textAndMnemonic=R&GB
++ColorChooser.rgbRed.textAndMnemonic=Re&d
++ColorChooser.rgbGreen.textAndMnemonic=Gree&n
++ColorChooser.rgbBlue.textAndMnemonic=&Blue
++ColorChooser.rgbAlpha.textAndMnemonic=Alpha
++ColorChooser.rgbHexCode.textAndMnemonic=&Color Code
++ColorChooser.cmyk.textAndMnemonic=C&MYK
++ColorChooser.cmykCyan.textAndMnemonic=Cyan
++ColorChooser.cmykMagenta.textAndMnemonic=Magenta
++ColorChooser.cmykYellow.textAndMnemonic=Yellow
++ColorChooser.cmykBlack.textAndMnemonic=Black
++ColorChooser.cmykAlpha.textAndMnemonic=Alpha
++
++############ OPTION PANE STRINGS #############
++# We only define mnemonics for YES/NO, but for completeness you can
++# define mnemonics for any of the buttons.
++OptionPane.yesButton.textAndMnemonic=&Yes
++OptionPane.noButton.textAndMnemonic=&No
++OptionPane.okButton.textAndMnemonic=OK
++#OptionPane.okButtonMnemonic=0
++OptionPane.cancelButton.textAndMnemonic=Cancel
++#OptionPane.cancelButtonMnemonic=0
++OptionPane.title.textAndMnemonic=Select an Option
++# Title for the dialog for the showInputDialog methods. Only used if
++# the developer uses one of the variants that doesn't take a title.
++OptionPane.inputDialog.titleAndMnemonic=Input
++# Title for the dialog for the showMessageDialog methods. Only used if
++# the developer uses one of the variants that doesn't take a title.
++OptionPane.messageDialog.titleAndMnemonic=Message
++
++############ Printing Dialog Strings ############
++PrintingDialog.titleProgress.textAndMnemonic=Printing
++PrintingDialog.titleAborting.textAndMnemonic=Printing (Aborting)
++
++PrintingDialog.contentInitial.textAndMnemonic=Printing in progress...
++
++# The following string will be formatted by a MessageFormat
++# and {0} will be replaced by page number being printed
++PrintingDialog.contentProgress.textAndMnemonic=Printed page {0}...
++
++PrintingDialog.contentAborting.textAndMnemonic=Printing aborting...
++
++PrintingDialog.abortButton.textAndMnemonic=&Abort
++PrintingDialog.abortButtonToolTip.textAndMnemonic=Abort Printing
++
++############ Internal Frame Strings ############
++InternalFrame.iconButtonToolTip=Minimize
++InternalFrame.maxButtonToolTip=Maximize
++InternalFrame.restoreButtonToolTip=Restore
++InternalFrame.closeButtonToolTip=Close
++
++############ Internal Frame Title Pane Strings ############
++InternalFrameTitlePane.restoreButton.textAndMnemonic=Restore
++InternalFrameTitlePane.moveButton.textAndMnemonic=Move
++InternalFrameTitlePane.sizeButton.textAndMnemonic=Size
++InternalFrameTitlePane.minimizeButton.textAndMnemonic=Minimize
++InternalFrameTitlePane.maximizeButton.textAndMnemonic=Maximize
++InternalFrameTitlePane.closeButton.textAndMnemonic=Close
++
++############ Text strings #############
++# Used for html forms
++FormView.submitButton.textAndMnemonic=Submit Query
++FormView.resetButton.textAndMnemonic=Reset
++FormView.browseFileButton.textAndMnemonic=Browse...
++
++############ Abstract Document Strings ############
++AbstractDocument.styleChange.textAndMnemonic=style change
++AbstractDocument.addition.textAndMnemonic=addition
++AbstractDocument.deletion.textAndMnemonic=deletion
++AbstractDocument.undo.textAndMnemonic=Undo
++AbstractDocument.redo.textAndMnemonic=Redo
++
++############ Abstract Button Strings ############
++AbstractButton.click.textAndMnemonic=click
++
++############ Abstract Undoable Edit Strings ############
++AbstractUndoableEdit.undo.textAndMnemonic=Undo
++AbstractUndoableEdit.redo.textAndMnemonic=Redo
++
++############ Combo Box Strings ############
++ComboBox.togglePopup.textAndMnemonic=togglePopup
++
++############ Progress Monitor Strings ############
++ProgressMonitor.progress.textAndMnemonic=Progress...
++
++############ Split Pane Strings ############
++SplitPane.leftButton.textAndMnemonic=left button
++SplitPane.rightButton.textAndMnemonic=right button
++# Used for Isindex
++IsindexView.prompt=This is a searchable index. Enter search keywords:
++
++############ InternalFrameTitlePane Strings ############
++InternalFrameTitlePane.iconifyButtonAccessibleName=Iconify
++InternalFrameTitlePane.maximizeButtonAccessibleName=Maximize
++InternalFrameTitlePane.closeButtonAccessibleName=Close
--- jdk/src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic_de.properties 2012-08-10 10:25:42.000000000 -0700
+++ jdk/src/share/classes/com/sun/swing/internal/plaf/basic/resources/basic_de.properties 2013-01-16 00:07:04.000000000 -0800
@@ -70,9 +70,6 @@
@@ -12992,6 +55618,121 @@
private static class TypeAheadMarker {
long after;
Component untilFocused;
+--- jdk/src/share/classes/java/awt/Dialog.java 2012-08-10 10:25:55.000000000 -0700
++++ jdk/src/share/classes/java/awt/Dialog.java 2013-03-09 08:44:48.000000000 -0800
+@@ -39,6 +39,7 @@
+ import sun.awt.util.IdentityArrayList;
+ import sun.awt.util.IdentityLinkedList;
+ import sun.security.util.SecurityConstants;
++import java.security.AccessControlException;
+
+ /**
+ * A Dialog is a top-level window with a title and a border
+@@ -128,6 +129,8 @@
+ */
+ boolean undecorated = false;
+
++ private transient boolean initialized = false;
++
+ /**
+ * Modal dialogs block all input to some top-level windows.
+ * Whether a particular window is blocked depends on dialog's type
+@@ -671,6 +674,7 @@
+ this.title = title;
+ setModalityType(modalityType);
+ SunToolkit.checkAndSetPolicy(this);
++ initialized = true;
+ }
+
+ /**
+@@ -722,6 +726,7 @@
+ this.title = title;
+ setModalityType(modalityType);
+ SunToolkit.checkAndSetPolicy(this);
++ initialized = true;
+ }
+
+ /**
+@@ -851,12 +856,9 @@
+ if (modalityType == type) {
+ return;
+ }
+- if (type == ModalityType.TOOLKIT_MODAL) {
+- SecurityManager sm = System.getSecurityManager();
+- if (sm != null) {
+- sm.checkPermission(SecurityConstants.AWT.TOOLKIT_MODALITY_PERMISSION);
+- }
+- }
++
++ checkModalityPermission(type);
++
+ modalityType = type;
+ modal = (modalityType != ModalityType.MODELESS);
+ }
+@@ -1025,6 +1027,9 @@
+ */
+ @Deprecated
+ public void show() {
++ if (!initialized) throw new IllegalStateException(
++ "The dialog component has not been initialized properly");
++
+ beforeFirstShow = false;
+ if (!isModal()) {
+ conditionalShow(null, null);
+@@ -1600,18 +1605,51 @@
+ }
+ }
+
++ private void checkModalityPermission(ModalityType mt) {
++ if (mt == ModalityType.TOOLKIT_MODAL) {
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null) {
++ sm.checkPermission(
++ SecurityConstants.AWT.TOOLKIT_MODALITY_PERMISSION
++ );
++ }
++ }
++ }
++
+ private void readObject(ObjectInputStream s)
+ throws ClassNotFoundException, IOException, HeadlessException
+ {
+ GraphicsEnvironment.checkHeadless();
+- s.defaultReadObject();
++
++ java.io.ObjectInputStream.GetField fields =
++ s.readFields();
++
++ ModalityType localModalityType = (ModalityType)fields.get("modalityType", null);
++
++ try {
++ checkModalityPermission(localModalityType);
++ } catch (AccessControlException ace) {
++ localModalityType = DEFAULT_MODALITY_TYPE;
++ }
+
+ // in 1.5 or earlier modalityType was absent, so use "modal" instead
+- if (modalityType == null) {
++ if (localModalityType == null) {
++ this.modal = fields.get("modal", false);
+ setModal(modal);
++ } else {
++ this.modalityType = localModalityType;
+ }
+
++ this.resizable = fields.get("resizable", true);
++ this.undecorated = fields.get("undecorated", false);
++ this.title = (String)fields.get("title", "");
++
+ blockedWindows = new IdentityArrayList();
++
++ SunToolkit.checkAndSetPolicy(this);
++
++ initialized = true;
++
+ }
+
+ /*
--- jdk/src/share/classes/java/awt/EventDispatchThread.java 2012-08-10 10:25:55.000000000 -0700
+++ jdk/src/share/classes/java/awt/EventDispatchThread.java 2013-01-16 08:58:10.000000000 -0800
@@ -67,8 +67,7 @@
@@ -13057,7 +55798,7 @@
catch (Throwable e) {
processException(e);
--- jdk/src/share/classes/java/awt/EventQueue.java 2012-08-10 10:25:55.000000000 -0700
-+++ jdk/src/share/classes/java/awt/EventQueue.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/java/awt/EventQueue.java 2013-03-09 08:44:48.000000000 -0800
@@ -52,7 +52,6 @@
import java.util.concurrent.atomic.AtomicInteger;
@@ -13066,13 +55807,14 @@
import sun.misc.SharedSecrets;
import sun.misc.JavaSecurityAccess;
-@@ -188,6 +187,17 @@
+@@ -188,6 +187,23 @@
public boolean isDispatchThreadImpl(EventQueue eventQueue) {
return eventQueue.isDispatchThreadImpl();
}
+ public void removeSourceEvents(EventQueue eventQueue,
+ Object source,
-+ boolean removeAllEvents) {
++ boolean removeAllEvents)
++ {
+ eventQueue.removeSourceEvents(source, removeAllEvents);
+ }
+ public boolean noEvents(EventQueue eventQueue) {
@@ -13081,9 +55823,40 @@
+ public void wakeup(EventQueue eventQueue, boolean isShutdown) {
+ eventQueue.wakeup(isShutdown);
+ }
++ public void invokeAndWait(Object source, Runnable r)
++ throws InterruptedException, InvocationTargetException
++ {
++ EventQueue.invokeAndWait(source, r);
++ }
});
}
+@@ -1223,8 +1239,14 @@
+ * @since 1.2
+ */
+ public static void invokeAndWait(Runnable runnable)
+- throws InterruptedException, InvocationTargetException {
++ throws InterruptedException, InvocationTargetException
++ {
++ invokeAndWait(Toolkit.getDefaultToolkit(), runnable);
++ }
+
++ static void invokeAndWait(Object source, Runnable runnable)
++ throws InterruptedException, InvocationTargetException
++ {
+ if (EventQueue.isDispatchThread()) {
+ throw new Error("Cannot call invokeAndWait from the event dispatcher thread");
+ }
+@@ -1233,8 +1255,7 @@
+ Object lock = new AWTInvocationLock();
+
+ InvocationEvent event =
+- new InvocationEvent(Toolkit.getDefaultToolkit(), runnable, lock,
+- true);
++ new InvocationEvent(source, runnable, lock, true);
+
+ synchronized (lock) {
+ Toolkit.getEventQueue().postEvent(event);
--- jdk/src/share/classes/java/awt/KeyboardFocusManager.java 2012-08-10 10:25:56.000000000 -0700
+++ jdk/src/share/classes/java/awt/KeyboardFocusManager.java 2013-01-16 08:58:10.000000000 -0800
@@ -56,7 +56,6 @@
@@ -13299,8 +56072,29 @@
* Private <code>SystemTray</code> constructor.
*
--- jdk/src/share/classes/java/awt/TextComponent.java 2012-08-10 10:25:57.000000000 -0700
-+++ jdk/src/share/classes/java/awt/TextComponent.java 2013-01-16 00:07:05.000000000 -0800
-@@ -233,14 +233,9 @@
++++ jdk/src/share/classes/java/awt/TextComponent.java 2013-03-09 08:44:48.000000000 -0800
+@@ -107,12 +107,6 @@
+ // the background color of non-editable TextComponents.
+ boolean backgroundSetByClientCode = false;
+
+- /**
+- * True if this <code>TextComponent</code> has access
+- * to the System clipboard.
+- */
+- transient private boolean canAccessClipboard;
+-
+ transient protected TextListener textListener;
+
+ /*
+@@ -137,7 +131,6 @@
+ GraphicsEnvironment.checkHeadless();
+ this.text = (text != null) ? text : "";
+ setCursor(Cursor.getPredefinedCursor(Cursor.TEXT_CURSOR));
+- checkSystemClipboardAccess();
+ }
+
+ private void enableInputMethodsIfNecessary() {
+@@ -233,14 +226,9 @@
* @see java.awt.TextComponent#getText
*/
public synchronized void setText(String t) {
@@ -13316,6 +56110,39 @@
peer.setText(text);
}
}
+@@ -732,17 +720,14 @@
+ /**
+ * Assigns a valid value to the canAccessClipboard instance variable.
+ */
+- private void checkSystemClipboardAccess() {
+- canAccessClipboard = true;
++ private boolean canAccessClipboard() {
+ SecurityManager sm = System.getSecurityManager();
+- if (sm != null) {
+- try {
+- sm.checkSystemClipboardAccess();
+- }
+- catch (SecurityException e) {
+- canAccessClipboard = false;
+- }
+- }
++ if (sm == null) return true;
++ try {
++ sm.checkSystemClipboardAccess();
++ return true;
++ } catch (SecurityException e) {}
++ return false;
+ }
+
+ /*
+@@ -825,7 +810,6 @@
+ }
+ }
+ enableInputMethodsIfNecessary();
+- checkSystemClipboardAccess();
+ }
+
+
--- jdk/src/share/classes/java/awt/TrayIcon.java 2012-08-10 10:25:58.000000000 -0700
+++ jdk/src/share/classes/java/awt/TrayIcon.java 2013-01-16 08:58:10.000000000 -0800
@@ -25,19 +25,11 @@
@@ -13356,6 +56183,17 @@
}
private TrayIcon()
+--- jdk/src/share/classes/java/awt/Window.java 2012-08-10 10:25:58.000000000 -0700
++++ jdk/src/share/classes/java/awt/Window.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1206,7 +1206,7 @@
+ }
+ else {
+ try {
+- EventQueue.invokeAndWait(action);
++ EventQueue.invokeAndWait(this, action);
+ }
+ catch (InterruptedException e) {
+ System.err.println("Disposal was interrupted:");
--- jdk/src/share/classes/java/awt/event/KeyEvent.java 2012-08-10 10:26:01.000000000 -0700
+++ jdk/src/share/classes/java/awt/event/KeyEvent.java 2013-01-16 08:58:10.000000000 -0800
@@ -25,12 +25,12 @@
@@ -13832,8 +56670,219 @@
}
/**
+--- jdk/src/share/classes/java/io/ObjectInputStream.java 2012-08-10 10:26:15.000000000 -0700
++++ jdk/src/share/classes/java/io/ObjectInputStream.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1750,6 +1750,12 @@
+ ObjectStreamClass desc = readClassDesc(false);
+ desc.checkDeserialize();
+
++ Class<?> cl = desc.forClass();
++ if (cl == String.class || cl == Class.class
++ || cl == ObjectStreamClass.class) {
++ throw new InvalidClassException("invalid class descriptor");
++ }
++
+ Object obj;
+ try {
+ obj = desc.isInstantiable() ? desc.newInstance() : null;
+--- jdk/src/share/classes/java/lang/Class.java 2012-08-10 10:26:32.000000000 -0700
++++ jdk/src/share/classes/java/lang/Class.java 2013-03-09 08:44:48.000000000 -0800
+@@ -65,7 +65,9 @@
+ import sun.reflect.generics.scope.ClassScope;
+ import sun.security.util.SecurityConstants;
+ import java.lang.annotation.Annotation;
++import java.lang.reflect.Proxy;
+ import sun.reflect.annotation.*;
++import sun.reflect.misc.ReflectUtil;
+
+ /**
+ * Instances of the class {@code Class} represent classes and
+@@ -320,7 +322,7 @@
+ throws InstantiationException, IllegalAccessException
+ {
+ if (System.getSecurityManager() != null) {
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), false);
+ }
+ return newInstance0();
+ }
+@@ -1297,7 +1299,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), false);
+
+ // Privileged so this implementation can look at DECLARED classes,
+ // something the caller might not have privilege to do. The code here
+@@ -1372,7 +1374,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ return copyFields(privateGetPublicFields(null));
+ }
+
+@@ -1423,7 +1425,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ return copyMethods(privateGetPublicMethods());
+ }
+
+@@ -1472,7 +1474,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ return copyConstructors(privateGetDeclaredConstructors(true));
+ }
+
+@@ -1531,7 +1533,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ Field field = getField0(name);
+ if (field == null) {
+ throw new NoSuchFieldException(name);
+@@ -1616,7 +1618,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ Method method = getMethod0(name, parameterTypes);
+ if (method == null) {
+ throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
+@@ -1670,7 +1672,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.PUBLIC, ClassLoader.getCallerClassLoader(), true);
+ return getConstructor0(parameterTypes, Member.PUBLIC);
+ }
+
+@@ -1712,7 +1714,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), false);
+ return getDeclaredClasses0();
+ }
+
+@@ -1756,7 +1758,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ return copyFields(privateGetDeclaredFields(false));
+ }
+
+@@ -1804,7 +1806,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ return copyMethods(privateGetDeclaredMethods(false));
+ }
+
+@@ -1849,7 +1851,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ return copyConstructors(privateGetDeclaredConstructors(false));
+ }
+
+@@ -1893,7 +1895,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ Field field = searchFields(privateGetDeclaredFields(false), name);
+ if (field == null) {
+ throw new NoSuchFieldException(name);
+@@ -1948,7 +1950,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ Method method = searchMethods(privateGetDeclaredMethods(false), name, parameterTypes);
+ if (method == null) {
+ throw new NoSuchMethodException(getName() + "." + name + argumentTypesToString(parameterTypes));
+@@ -1998,7 +2000,7 @@
+ // be very careful not to change the stack depth of this
+ // checkMemberAccess call for security reasons
+ // see java.lang.SecurityManager.checkMemberAccess
+- checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader());
++ checkMemberAccess(Member.DECLARED, ClassLoader.getCallerClassLoader(), true);
+ return getConstructor0(parameterTypes, Member.DECLARED);
+ }
+
+@@ -2168,19 +2170,26 @@
+ * <p> Default policy: allow all clients access with normal Java access
+ * control.
+ */
+- private void checkMemberAccess(int which, ClassLoader ccl) {
++ private void checkMemberAccess(int which, ClassLoader ccl, boolean checkProxyInterfaces) {
+ SecurityManager s = System.getSecurityManager();
+ if (s != null) {
+ s.checkMemberAccess(this, which);
+ ClassLoader cl = getClassLoader0();
+- if ((ccl != null) && (ccl != cl) &&
+- ((cl == null) || !cl.isAncestor(ccl))) {
++ if (ReflectUtil.needsPackageAccessCheck(ccl, cl)) {
+ String name = this.getName();
+ int i = name.lastIndexOf('.');
+ if (i != -1) {
+- s.checkPackageAccess(name.substring(0, i));
++ // skip the package access check on a proxy class in default proxy package
++ String pkg = name.substring(0, i);
++ if (!Proxy.isProxyClass(this) || !pkg.equals(ReflectUtil.PROXY_PACKAGE)) {
++ s.checkPackageAccess(pkg);
++ }
+ }
+ }
++ // check package access on the proxy interfaces
++ if (checkProxyInterfaces && Proxy.isProxyClass(this)) {
++ ReflectUtil.checkProxyPackageAccess(ccl, this.getInterfaces());
++ }
+ }
+ }
+
+--- jdk/src/share/classes/java/lang/invoke/DirectMethodHandle.java 2012-08-10 10:26:57.000000000 -0700
++++ jdk/src/share/classes/java/lang/invoke/DirectMethodHandle.java 2013-03-09 08:44:48.000000000 -0800
+@@ -44,6 +44,15 @@
+ if (!m.isResolved())
+ throw new InternalError();
+
++ if (m.getDeclaringClass().isInterface() && !m.isAbstract()) {
++ // Check for corner case: invokeinterface of Object method.
++ MemberName m2 = new MemberName(Object.class, m.getName(), m.getMethodType(), m.getModifiers());
++ m2 = MemberName.getFactory().resolveOrNull(m2, false, null);
++ if (m2 != null && m2.isPublic()) {
++ m = m2;
++ }
++ }
++
+ MethodHandleNatives.init(this, (Object) m, doDispatch, lookupClass);
+ }
+
--- jdk/src/share/classes/java/lang/invoke/MethodHandleImpl.java 2012-08-10 10:26:57.000000000 -0700
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandleImpl.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/java/lang/invoke/MethodHandleImpl.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -13857,7 +56906,7 @@
import sun.invoke.util.Wrapper;
import sun.misc.Unsafe;
import static java.lang.invoke.MethodHandleStatics.*;
-@@ -1258,4 +1258,169 @@
+@@ -1258,4 +1258,151 @@
return THROW_EXCEPTION;
}
static <T extends Throwable> Empty throwException(T t) throws T { throw t; }
@@ -13881,12 +56930,11 @@
+ static
+ MethodHandle bindCaller(MethodHandle mh, Class<?> hostClass) {
+ // Do not use this function to inject calls into system classes.
-+ if (hostClass == null) {
-+ hostClass = C_Trampoline;
-+ } else if (hostClass.isArray() ||
++ if (hostClass == null
++ || (hostClass.isArray() ||
+ hostClass.isPrimitive() ||
+ hostClass.getName().startsWith("java.") ||
-+ hostClass.getName().startsWith("sun.")) {
++ hostClass.getName().startsWith("sun."))) {
+ throw new InternalError(); // does not happen, and should not anyway
+ }
+ // For simplicity, convert mh to a varargs-like method.
@@ -13896,23 +56944,6 @@
+ return restoreToType(bccInvoker.bindTo(vamh), mh.type());
+ }
+
-+ // This class ("Trampoline") is known to be inside a dead-end class loader.
-+ // Inject all doubtful calls into this class.
-+ private static Class<?> C_Trampoline;
-+ static {
-+ Class<?> tramp = null;
-+ try {
-+ final int FRAME_COUNT_ARG = 1; // [0] Reflection [1] Trampoline
-+ java.lang.reflect.Method gcc = sun.reflect.Reflection.class.getMethod("getCallerClass", int.class);
-+ tramp = (Class<?>) sun.reflect.misc.MethodUtil.invoke(gcc, null, new Object[]{ FRAME_COUNT_ARG });
-+ if (tramp.getClassLoader() == BindCaller.class.getClassLoader())
-+ throw new RuntimeException(tramp.getName()+" class loader");
-+ } catch (Throwable ex) {
-+ throw new InternalError(ex.toString());
-+ }
-+ C_Trampoline = tramp;
-+ }
-+
+ private static final Unsafe UNSAFE = Unsafe.getUnsafe();
+
+ private static MethodHandle makeInjectedInvoker(Class<?> hostClass) {
@@ -14028,7 +57059,7 @@
+ }
}
--- jdk/src/share/classes/java/lang/invoke/MethodHandleNatives.java 2012-08-10 10:26:57.000000000 -0700
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandleNatives.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/java/lang/invoke/MethodHandleNatives.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -14036,7 +57067,7 @@
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
-@@ -401,4 +401,101 @@
+@@ -401,4 +401,130 @@
assert(!HAVE_RICOCHET_FRAMES) : "this code should not be executed if `-XX:+UseRicochetFrames is enabled";
return true;
}
@@ -14048,15 +57079,33 @@
+ */
+ // FIXME: Replace this pattern match by an annotation @sun.reflect.CallerSensitive.
+ static boolean isCallerSensitive(MemberName mem) {
-+ assert(mem.isInvocable());
++ if (!mem.isInvocable()) return false; // fields are not caller sensitive
+ Class<?> defc = mem.getDeclaringClass();
+ switch (mem.getName()) {
+ case "doPrivileged":
++ case "doPrivilegedWithCombiner":
+ return defc == java.security.AccessController.class;
++ case "checkMemberAccess":
++ return canBeCalledVirtual(mem, java.lang.SecurityManager.class);
+ case "getUnsafe":
+ return defc == sun.misc.Unsafe.class;
+ case "lookup":
+ return defc == java.lang.invoke.MethodHandles.class;
++ case "findStatic":
++ case "findVirtual":
++ case "findConstructor":
++ case "findSpecial":
++ case "findGetter":
++ case "findSetter":
++ case "findStaticGetter":
++ case "findStaticSetter":
++ case "bind":
++ case "unreflect":
++ case "unreflectSpecial":
++ case "unreflectConstructor":
++ case "unreflectGetter":
++ case "unreflectSetter":
++ return defc == java.lang.invoke.MethodHandles.Lookup.class;
+ case "invoke":
+ return defc == java.lang.reflect.Method.class;
+ case "get":
@@ -14110,7 +57159,7 @@
+ if (defc == java.util.concurrent.atomic.AtomicReferenceFieldUpdater.class) return true;
+ break;
+ case "getContextClassLoader":
-+ return defc == java.lang.Thread.class;
++ return canBeCalledVirtual(mem, java.lang.Thread.class);
+ case "getPackage":
+ case "getPackages":
+ return defc == java.lang.Package.class;
@@ -14128,16 +57177,147 @@
+ break;
+ case "getCallerClassLoader":
+ return defc == java.lang.ClassLoader.class;
++ case "registerAsParallelCapable":
++ return canBeCalledVirtual(mem, java.lang.ClassLoader.class);
+ case "getProxyClass":
+ case "newProxyInstance":
+ return defc == java.lang.reflect.Proxy.class;
++ case "asInterfaceInstance":
++ return defc == java.lang.invoke.MethodHandleProxies.class;
+ case "getBundle":
+ case "clearCache":
+ return defc == java.util.ResourceBundle.class;
+ }
+ return false;
+ }
++ static boolean canBeCalledVirtual(MemberName symbolicRef, Class<?> definingClass) {
++ Class<?> symbolicRefClass = symbolicRef.getDeclaringClass();
++ if (symbolicRefClass == definingClass) return true;
++ if (symbolicRef.isStatic() || symbolicRef.isPrivate()) return false;
++ return (definingClass.isAssignableFrom(symbolicRefClass) || // Msym overrides Mdef
++ symbolicRefClass.isInterface()); // Mdef implements Msym
++ }
}
+--- jdk/src/share/classes/java/lang/invoke/MethodHandleProxies.java 2012-08-10 10:26:57.000000000 -0700
++++ jdk/src/share/classes/java/lang/invoke/MethodHandleProxies.java 2013-03-09 08:44:48.000000000 -0800
+@@ -26,8 +26,12 @@
+ package java.lang.invoke;
+
+ import java.lang.reflect.*;
++import java.security.AccessController;
++import java.security.PrivilegedAction;
+ import sun.invoke.WrapperInstance;
+ import java.util.ArrayList;
++import sun.reflect.Reflection;
++import sun.reflect.misc.ReflectUtil;
+
+ /**
+ * This class consists exclusively of static methods that help adapt
+@@ -137,6 +141,21 @@
+ <T> T asInterfaceInstance(final Class<T> intfc, final MethodHandle target) {
+ if (!intfc.isInterface() || !Modifier.isPublic(intfc.getModifiers()))
+ throw new IllegalArgumentException("not a public interface: "+intfc.getName());
++ final MethodHandle mh;
++ if (System.getSecurityManager() != null) {
++ final int CALLER_FRAME = 2; // 0: Reflection, 1: asInterfaceInstance, 2: caller
++ final Class<?> caller = Reflection.getCallerClass(CALLER_FRAME);
++ final ClassLoader ccl = (caller != null) ? caller.getClassLoader() : null;
++ ReflectUtil.checkProxyPackageAccess(ccl, intfc);
++ mh = maybeBindCaller(target, caller);
++ } else {
++ mh = target;
++ }
++ ClassLoader proxyLoader = intfc.getClassLoader();
++ if (proxyLoader == null) {
++ ClassLoader cl = Thread.currentThread().getContextClassLoader(); // avoid use of BCP
++ proxyLoader = cl != null ? cl : ClassLoader.getSystemClassLoader();
++ }
+ final Method[] methods = getSingleNameMethods(intfc);
+ if (methods == null)
+ throw new IllegalArgumentException("not a single-method interface: "+intfc.getName());
+@@ -144,31 +163,61 @@
+ for (int i = 0; i < methods.length; i++) {
+ Method sm = methods[i];
+ MethodType smMT = MethodType.methodType(sm.getReturnType(), sm.getParameterTypes());
+- MethodHandle checkTarget = target.asType(smMT); // make throw WMT
++ MethodHandle checkTarget = mh.asType(smMT); // make throw WMT
+ checkTarget = checkTarget.asType(checkTarget.type().changeReturnType(Object.class));
+ vaTargets[i] = checkTarget.asSpreader(Object[].class, smMT.parameterCount());
+ }
+- return intfc.cast(Proxy.newProxyInstance(
+- intfc.getClassLoader(),
+- new Class[]{ intfc, WrapperInstance.class },
+- new InvocationHandler() {
+- private Object getArg(String name) {
+- if ((Object)name == "getWrapperInstanceTarget") return target;
+- if ((Object)name == "getWrapperInstanceType") return intfc;
+- throw new AssertionError();
++ final InvocationHandler ih = new InvocationHandler() {
++ private Object getArg(String name) {
++ if ((Object)name == "getWrapperInstanceTarget") return target;
++ if ((Object)name == "getWrapperInstanceType") return intfc;
++ throw new AssertionError();
++ }
++ public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
++ for (int i = 0; i < methods.length; i++) {
++ if (method.equals(methods[i]))
++ return vaTargets[i].invokeExact(args);
+ }
+- public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
+- for (int i = 0; i < methods.length; i++) {
+- if (method.equals(methods[i]))
+- return vaTargets[i].invokeExact(args);
+- }
+- if (method.getDeclaringClass() == WrapperInstance.class)
+- return getArg(method.getName());
+- if (isObjectMethod(method))
+- return callObjectMethod(this, method, args);
+- throw new InternalError("bad proxy method: "+method);
+- }
+- }));
++ if (method.getDeclaringClass() == WrapperInstance.class)
++ return getArg(method.getName());
++ if (isObjectMethod(method))
++ return callObjectMethod(this, method, args);
++ throw new InternalError("bad proxy method: "+method);
++ }
++ };
++
++ final Object proxy;
++ if (System.getSecurityManager() != null) {
++ // sun.invoke.WrapperInstance is a restricted interface not accessible
++ // by any non-null class loader.
++ final ClassLoader loader = proxyLoader;
++ proxy = AccessController.doPrivileged(new PrivilegedAction<Object>() {
++ public Object run() {
++ return Proxy.newProxyInstance(
++ loader,
++ new Class<?>[]{ intfc, WrapperInstance.class },
++ ih);
++ }
++ });
++ } else {
++ proxy = Proxy.newProxyInstance(proxyLoader,
++ new Class<?>[]{ intfc, WrapperInstance.class },
++ ih);
++ }
++ return intfc.cast(proxy);
++ }
++
++ private static MethodHandle maybeBindCaller(MethodHandle target, Class<?> hostClass) {
++ if (hostClass == null || hostClass.getClassLoader() == null)
++ return target;
++
++ MethodHandle cbmh = MethodHandleImpl.bindCaller(target, hostClass);
++ if (target.isVarargsCollector()) {
++ MethodType type = cbmh.type();
++ int arity = type.parameterCount();
++ return cbmh.asVarargsCollector(type.parameterType(arity-1));
++ }
++ return cbmh;
+ }
+
+ /**
--- jdk/src/share/classes/java/lang/invoke/MethodHandleStatics.java 2012-08-10 10:26:57.000000000 -0700
+++ jdk/src/share/classes/java/lang/invoke/MethodHandleStatics.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -14157,7 +57337,7 @@
err.initCause(ex);
return err;
--- jdk/src/share/classes/java/lang/invoke/MethodHandles.java 2012-08-10 10:26:57.000000000 -0700
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandles.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/java/lang/invoke/MethodHandles.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -14165,26 +57345,53 @@
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
-@@ -589,7 +589,9 @@
+@@ -584,17 +584,20 @@
+ MethodHandle findStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
+ MemberName method = resolveOrFail(refc, name, type, true);
+ checkSecurityManager(refc, method); // stack walk magic: do not refactor
+- return accessStatic(refc, method);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ return accessStatic(refc, method, callerClass);
+ }
private
- MethodHandle accessStatic(Class<?> refc, MemberName method) throws IllegalAccessException {
+- MethodHandle accessStatic(Class<?> refc, MemberName method) throws IllegalAccessException {
++ MethodHandle accessStatic(Class<?> refc, MemberName method, Class<?> callerClass) throws IllegalAccessException {
checkMethod(refc, method, true);
- return MethodHandleImpl.findMethod(method, false, lookupClassOrNull());
+ MethodHandle mh = MethodHandleImpl.findMethod(method, false, lookupClassOrNull());
-+ mh = maybeBindCaller(method, mh);
++ mh = maybeBindCaller(method, mh, callerClass);
+ return mh;
}
private
MethodHandle resolveStatic(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
-@@ -647,6 +649,7 @@
- private MethodHandle accessVirtual(Class<?> refc, MemberName method) throws IllegalAccessException {
+ MemberName method = resolveOrFail(refc, name, type, true);
+- return accessStatic(refc, method);
++ return accessStatic(refc, method, lookupClass);
+ }
+
+ /**
+@@ -638,15 +641,17 @@
+ public MethodHandle findVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
+ MemberName method = resolveOrFail(refc, name, type, false);
+ checkSecurityManager(refc, method); // stack walk magic: do not refactor
+- return accessVirtual(refc, method);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ return accessVirtual(refc, method, callerClass);
+ }
+ private MethodHandle resolveVirtual(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
+ MemberName method = resolveOrFail(refc, name, type, false);
+- return accessVirtual(refc, method);
++ return accessVirtual(refc, method, lookupClass);
+ }
+- private MethodHandle accessVirtual(Class<?> refc, MemberName method) throws IllegalAccessException {
++ private MethodHandle accessVirtual(Class<?> refc, MemberName method, Class<?> callerClass) throws IllegalAccessException {
checkMethod(refc, method, false);
MethodHandle mh = MethodHandleImpl.findMethod(method, true, lookupClassOrNull());
-+ mh = maybeBindCaller(method, mh);
++ mh = maybeBindCaller(method, mh, callerClass);
return restrictProtectedReceiver(method, mh);
}
-@@ -687,6 +690,7 @@
+@@ -687,6 +692,7 @@
checkAccess(refc, ctor);
MethodHandle rawMH = MethodHandleImpl.findMethod(ctor, false, lookupClassOrNull());
MethodHandle allocMH = MethodHandleImpl.makeAllocator(rawMH);
@@ -14192,40 +57399,60 @@
return fixVarargs(allocMH, rawMH);
}
private MethodHandle resolveConstructor(Class<?> refc, MethodType type) throws NoSuchMethodException, IllegalAccessException {
-@@ -755,6 +759,7 @@
+@@ -749,19 +755,22 @@
+ checkSpecialCaller(specialCaller);
+ MemberName method = resolveOrFail(refc, name, type, false, false, specialCaller);
+ checkSecurityManager(refc, method); // stack walk magic: do not refactor
+- return accessSpecial(refc, method, specialCaller);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ return accessSpecial(refc, method, callerClass, specialCaller);
+ }
+ private MethodHandle accessSpecial(Class<?> refc, MemberName method,
++ Class<?> callerClass,
Class<?> specialCaller) throws NoSuchMethodException, IllegalAccessException {
checkMethod(refc, method, false);
MethodHandle mh = MethodHandleImpl.findMethod(method, false, specialCaller);
-+ mh = maybeBindCaller(method, mh);
++ mh = maybeBindCaller(method, mh, callerClass);
return restrictReceiver(method, mh, specialCaller);
}
private MethodHandle resolveSpecial(Class<?> refc, String name, MethodType type) throws NoSuchMethodException, IllegalAccessException {
-@@ -922,6 +927,8 @@
+ Class<?> specialCaller = lookupClass();
+ checkSpecialCaller(specialCaller);
+ MemberName method = resolveOrFail(refc, name, type, false, false, specialCaller);
+- return accessSpecial(refc, method, specialCaller);
++ return accessSpecial(refc, method, lookupClass, specialCaller);
+ }
+
+ /**
+@@ -922,6 +931,9 @@
checkSecurityManager(refc, method); // stack walk magic: do not refactor
checkMethod(refc, method, false);
MethodHandle dmh = MethodHandleImpl.findMethod(method, true, lookupClassOrNull());
-+ MethodHandle bcmh = maybeBindCaller(method, dmh);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ MethodHandle bcmh = maybeBindCaller(method, dmh, callerClass);
+ if (bcmh != dmh) return fixVarargs(bcmh.bindTo(receiver), dmh);
MethodHandle bmh = MethodHandleImpl.bindReceiver(dmh, receiver);
if (bmh == null)
throw method.makeAccessException("no access", this);
-@@ -956,6 +963,7 @@
+@@ -956,6 +968,8 @@
return MethodHandleImpl.findMethod(method, true, /*no lookupClass*/ null);
checkMethod(method.getDeclaringClass(), method, method.isStatic());
MethodHandle mh = MethodHandleImpl.findMethod(method, true, lookupClassOrNull());
-+ mh = maybeBindCaller(method, mh);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ mh = maybeBindCaller(method, mh, callerClass);
return restrictProtectedReceiver(method, mh);
}
-@@ -987,6 +995,7 @@
+@@ -987,6 +1001,8 @@
// ignore m.isAccessible: this is a new kind of access
checkMethod(m.getDeclaringClass(), method, false);
MethodHandle mh = MethodHandleImpl.findMethod(method, false, lookupClassOrNull());
-+ mh = maybeBindCaller(method, mh);
++ Class<?> callerClass = findBoundCallerClass(method); // stack walk magic: do not refactor
++ mh = maybeBindCaller(method, mh, callerClass);
return restrictReceiver(method, mh, specialCaller);
}
-@@ -1021,6 +1030,7 @@
+@@ -1021,6 +1037,7 @@
checkAccess(c.getDeclaringClass(), ctor);
rawCtor = MethodHandleImpl.findMethod(ctor, false, lookupClassOrNull());
}
@@ -14233,16 +57460,48 @@
MethodHandle allocator = MethodHandleImpl.makeAllocator(rawCtor);
return fixVarargs(allocator, rawCtor);
}
-@@ -1232,6 +1242,16 @@
+@@ -1095,7 +1112,29 @@
+ }
+
+ /**
++ * Find my trustable caller class if m is a caller sensitive method.
++ * If this lookup object has private access, then the caller class is the lookupClass.
++ * Otherwise, it is the caller of the currently executing public API method (e.g., findVirtual).
++ * This is the same caller class as is used by checkSecurityManager.
++ * This function performs stack walk magic: do not refactor it.
++ */
++ Class<?> findBoundCallerClass(MemberName m) {
++ Class<?> callerClass = null;
++ if (MethodHandleNatives.isCallerSensitive(m)) {
++ // Do not refactor this to a more "logical" place, since it is stack walk magic.
++ // Note that this is the same expression as in Step 2 below in checkSecurityManager.
++ callerClass = ((allowedModes & PRIVATE) != 0
++ ? lookupClass // for strong access modes, no extra check
++ // next line does stack walk magic; do not refactor:
++ : getCallerClassAtEntryPoint(true));
++ }
++ return callerClass;
++ }
++ /**
+ * Perform necessary <a href="MethodHandles.Lookup.html#secmgr">access checks</a>.
++ * Determines a trustable caller class to compare with refc, the symbolic reference class.
++ * If this lookup object has private access, then the caller class is the lookupClass.
++ * Otherwise, it is the caller of the currently executing public API method (e.g., findVirtual).
+ * This function performs stack walk magic: do not refactor it.
+ */
+ void checkSecurityManager(Class<?> refc, MemberName m) {
+@@ -1232,6 +1271,18 @@
MethodHandle narrowMH = MethodHandleImpl.convertArguments(mh, narrowType, rawType, 0);
return fixVarargs(narrowMH, mh);
}
-+ private MethodHandle maybeBindCaller(MemberName method, MethodHandle mh) throws IllegalAccessException {
++ private MethodHandle maybeBindCaller(MemberName method, MethodHandle mh,
++ Class<?> callerClass)
++ throws IllegalAccessException {
+ if (allowedModes == TRUSTED || !MethodHandleNatives.isCallerSensitive(method))
+ return mh;
+ Class<?> hostClass = lookupClass;
+ if ((allowedModes & PRIVATE) == 0) // caller must use full-power lookup
-+ hostClass = null;
++ hostClass = callerClass; // callerClass came from a security manager style stack walk
+ MethodHandle cbmh = MethodHandleImpl.bindCaller(mh, hostClass);
+ cbmh = fixVarargs(cbmh, mh); // in JDK 7 version, varargs happens earlier and must be repaired
+ return cbmh;
@@ -14250,6 +57509,245 @@
MethodHandle makeAccessor(Class<?> refc, MemberName field,
boolean trusted, boolean isSetter,
+--- jdk/src/share/classes/java/lang/management/ManagementFactory.java 2012-08-10 10:26:58.000000000 -0700
++++ jdk/src/share/classes/java/lang/management/ManagementFactory.java 2013-03-09 08:44:48.000000000 -0800
+@@ -802,20 +802,20 @@
+ */
+ private static void addMXBean(final MBeanServer mbs, final PlatformManagedObject pmo) {
+ // Make DynamicMBean out of MXBean by wrapping it with a StandardMBean
+- final DynamicMBean dmbean;
+- if (pmo instanceof DynamicMBean) {
+- dmbean = DynamicMBean.class.cast(pmo);
+- } else if (pmo instanceof NotificationEmitter) {
+- dmbean = new StandardEmitterMBean(pmo, null, true, (NotificationEmitter) pmo);
+- } else {
+- dmbean = new StandardMBean(pmo, null, true);
+- }
+-
+ try {
+ AccessController.doPrivileged(new PrivilegedExceptionAction<Void>() {
+ public Void run() throws InstanceAlreadyExistsException,
+ MBeanRegistrationException,
+ NotCompliantMBeanException {
++ final DynamicMBean dmbean;
++ if (pmo instanceof DynamicMBean) {
++ dmbean = DynamicMBean.class.cast(pmo);
++ } else if (pmo instanceof NotificationEmitter) {
++ dmbean = new StandardEmitterMBean(pmo, null, true, (NotificationEmitter) pmo);
++ } else {
++ dmbean = new StandardMBean(pmo, null, true);
++ }
++
+ mbs.registerMBean(dmbean, pmo.getObjectName());
+ return null;
+ }
+--- jdk/src/share/classes/java/lang/reflect/Proxy.java 2012-08-10 10:27:00.000000000 -0700
++++ jdk/src/share/classes/java/lang/reflect/Proxy.java 2013-03-09 08:44:48.000000000 -0800
+@@ -27,6 +27,9 @@
+
+ import java.lang.ref.Reference;
+ import java.lang.ref.WeakReference;
++import java.security.AccessController;
++import java.security.Permission;
++import java.security.PrivilegedAction;
+ import java.util.Arrays;
+ import java.util.Collections;
+ import java.util.HashMap;
+@@ -36,6 +39,9 @@
+ import java.util.List;
+ import java.util.WeakHashMap;
+ import sun.misc.ProxyGenerator;
++import sun.reflect.Reflection;
++import sun.reflect.misc.ReflectUtil;
++import sun.security.util.SecurityConstants;
+
+ /**
+ * {@code Proxy} provides static methods for creating dynamic proxy
+@@ -265,9 +271,69 @@
+ * @param h the invocation handler for this proxy instance
+ */
+ protected Proxy(InvocationHandler h) {
++ doNewInstanceCheck();
+ this.h = h;
+ }
+
++ private static class ProxyAccessHelper {
++ // The permission is implementation specific.
++ static final Permission PROXY_PERMISSION =
++ new ReflectPermission("proxyConstructorNewInstance");
++ // These system properties are defined to provide a short-term
++ // workaround if customers need to disable the new security checks.
++ static final boolean allowNewInstance;
++ static final boolean allowNullLoader;
++ static {
++ allowNewInstance = getBooleanProperty("sun.reflect.proxy.allowsNewInstance");
++ allowNullLoader = getBooleanProperty("sun.reflect.proxy.allowsNullLoader");
++ }
++
++ private static boolean getBooleanProperty(final String key) {
++ String s = AccessController.doPrivileged(new PrivilegedAction<String>() {
++ public String run() {
++ return System.getProperty(key);
++ }
++ });
++ return Boolean.valueOf(s);
++ }
++
++ static boolean needsNewInstanceCheck(Class<?> proxyClass) {
++ if (!Proxy.isProxyClass(proxyClass) || allowNewInstance) {
++ return false;
++ }
++
++ if (proxyClass.getName().startsWith(ReflectUtil.PROXY_PACKAGE + ".")) {
++ // all proxy interfaces are public
++ return false;
++ }
++ for (Class<?> intf : proxyClass.getInterfaces()) {
++ if (!Modifier.isPublic(intf.getModifiers())) {
++ return true;
++ }
++ }
++ return false;
++ }
++ }
++
++ /*
++ * Access check on a proxy class that implements any non-public interface.
++ *
++ * @throws SecurityException if a security manager exists, and
++ * the caller does not have the permission.
++ */
++ private void doNewInstanceCheck() {
++ SecurityManager sm = System.getSecurityManager();
++ Class<?> proxyClass = this.getClass();
++ if (sm != null && ProxyAccessHelper.needsNewInstanceCheck(proxyClass)) {
++ try {
++ sm.checkPermission(ProxyAccessHelper.PROXY_PERMISSION);
++ } catch (SecurityException e) {
++ throw new SecurityException("Not allowed to construct a Proxy "
++ + "instance that implements a non-public interface", e);
++ }
++ }
++ }
++
+ /**
+ * Returns the {@code java.lang.Class} object for a proxy class
+ * given a class loader and an array of interfaces. The proxy class
+@@ -346,6 +412,51 @@
+ Class<?>... interfaces)
+ throws IllegalArgumentException
+ {
++ return getProxyClass0(loader, interfaces); // stack walk magic: do not refactor
++ }
++
++ private static void checkProxyLoader(ClassLoader ccl,
++ ClassLoader loader)
++ {
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null) {
++ if (loader == null && ccl != null) {
++ if (!ProxyAccessHelper.allowNullLoader) {
++ sm.checkPermission(SecurityConstants.GET_CLASSLOADER_PERMISSION);
++ }
++ }
++ }
++ }
++
++ /*
++ * Generate a proxy class (caller-sensitive).
++ *
++ * To define a proxy class, it performs the access checks as in
++ * Class.forName (VM will invoke ClassLoader.checkPackageAccess):
++ * 1. "getClassLoader" permission check if loader == null
++ * 2. checkPackageAccess on the interfaces it implements
++ *
++ * To get a constructor and new instance of a proxy class, it performs
++ * the package access check on the interfaces it implements
++ * as in Class.getConstructor.
++ *
++ * If an interface is non-public, the proxy class must be defined by
++ * the defining loader of the interface. If the caller's class loader
++ * is not the same as the defining loader of the interface, the VM
++ * will throw IllegalAccessError when the generated proxy class is
++ * being defined via the defineClass0 method.
++ */
++ private static Class<?> getProxyClass0(ClassLoader loader,
++ Class<?>... interfaces) {
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null) {
++ final int CALLER_FRAME = 3; // 0: Reflection, 1: getProxyClass0 2: Proxy 3: caller
++ final Class<?> caller = Reflection.getCallerClass(CALLER_FRAME);
++ final ClassLoader ccl = caller.getClassLoader();
++ checkProxyLoader(ccl, loader);
++ ReflectUtil.checkProxyPackageAccess(ccl, interfaces);
++ }
++
+ if (interfaces.length > 65535) {
+ throw new IllegalArgumentException("interface limit exceeded");
+ }
+@@ -497,8 +608,9 @@
+ }
+ }
+
+- if (proxyPkg == null) { // if no non-public proxy interfaces,
+- proxyPkg = ""; // use the unnamed package
++ if (proxyPkg == null) {
++ // if no non-public proxy interfaces, use com.sun.proxy package
++ proxyPkg = ReflectUtil.PROXY_PACKAGE + ".";
+ }
+
+ {
+@@ -598,22 +710,43 @@
+ /*
+ * Look up or generate the designated proxy class.
+ */
+- Class<?> cl = getProxyClass(loader, interfaces);
++ Class<?> cl = getProxyClass0(loader, interfaces); // stack walk magic: do not refactor
+
+ /*
+ * Invoke its constructor with the designated invocation handler.
+ */
+ try {
+- Constructor cons = cl.getConstructor(constructorParams);
+- return cons.newInstance(new Object[] { h });
++ final Constructor<?> cons = cl.getConstructor(constructorParams);
++ final InvocationHandler ih = h;
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null && ProxyAccessHelper.needsNewInstanceCheck(cl)) {
++ // create proxy instance with doPrivilege as the proxy class may
++ // implement non-public interfaces that requires a special permission
++ return AccessController.doPrivileged(new PrivilegedAction<Object>() {
++ public Object run() {
++ return newInstance(cons, ih);
++ }
++ });
++ } else {
++ return newInstance(cons, ih);
++ }
+ } catch (NoSuchMethodException e) {
+ throw new InternalError(e.toString());
+- } catch (IllegalAccessException e) {
+- throw new InternalError(e.toString());
+- } catch (InstantiationException e) {
++ }
++ }
++
++ private static Object newInstance(Constructor<?> cons, InvocationHandler h) {
++ try {
++ return cons.newInstance(new Object[] {h} );
++ } catch (IllegalAccessException | InstantiationException e) {
+ throw new InternalError(e.toString());
+ } catch (InvocationTargetException e) {
+- throw new InternalError(e.toString());
++ Throwable t = e.getCause();
++ if (t instanceof RuntimeException) {
++ throw (RuntimeException) t;
++ } else {
++ throw new InternalError(t.toString());
++ }
+ }
+ }
+
--- jdk/src/share/classes/java/net/InMemoryCookieStore.java 2012-08-10 10:27:01.000000000 -0700
+++ jdk/src/share/classes/java/net/InMemoryCookieStore.java 2013-01-16 00:07:06.000000000 -0800
@@ -91,10 +91,8 @@
@@ -14265,6 +57763,398 @@
}
} finally {
lock.unlock();
+--- jdk/src/share/classes/java/net/InetSocketAddress.java 2012-08-10 10:27:01.000000000 -0700
++++ jdk/src/share/classes/java/net/InetSocketAddress.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -24,9 +24,12 @@
+ */
+ package java.net;
+
+-import java.io.ObjectInputStream;
+ import java.io.IOException;
+ import java.io.InvalidObjectException;
++import java.io.ObjectInputStream;
++import java.io.ObjectOutputStream;
++import java.io.ObjectStreamException;
++import java.io.ObjectStreamField;
+
+ /**
+ *
+@@ -46,23 +49,105 @@
+ * @see java.net.ServerSocket
+ * @since 1.4
+ */
+-public class InetSocketAddress extends SocketAddress {
+- /* The hostname of the Socket Address
+- * @serial
+- */
+- private String hostname = null;
+- /* The IP address of the Socket Address
+- * @serial
+- */
+- private InetAddress addr = null;
+- /* The port number of the Socket Address
+- * @serial
+- */
+- private int port;
++public class InetSocketAddress
++ extends SocketAddress
++{
++ // Private implementation class pointed to by all public methods.
++ private static class InetSocketAddressHolder {
++ // The hostname of the Socket Address
++ private String hostname;
++ // The IP address of the Socket Address
++ private InetAddress addr;
++ // The port number of the Socket Address
++ private int port;
++
++ private InetSocketAddressHolder(String hostname, InetAddress addr, int port) {
++ this.hostname = hostname;
++ this.addr = addr;
++ this.port = port;
++ }
++
++ private int getPort() {
++ return port;
++ }
++
++ private InetAddress getAddress() {
++ return addr;
++ }
++
++ private String getHostName() {
++ if (hostname != null)
++ return hostname;
++ if (addr != null)
++ return addr.getHostName();
++ return null;
++ }
++
++ private String getHostString() {
++ if (hostname != null)
++ return hostname;
++ if (addr != null) {
++ if (addr.hostName != null)
++ return addr.hostName;
++ else
++ return addr.getHostAddress();
++ }
++ return null;
++ }
++
++ private boolean isUnresolved() {
++ return addr == null;
++ }
++
++ @Override
++ public String toString() {
++ if (isUnresolved()) {
++ return hostname + ":" + port;
++ } else {
++ return addr.toString() + ":" + port;
++ }
++ }
++
++ @Override
++ public final boolean equals(Object obj) {
++ if (obj == null || !(obj instanceof InetSocketAddressHolder))
++ return false;
++ InetSocketAddressHolder that = (InetSocketAddressHolder)obj;
++ boolean sameIP;
++ if (addr != null)
++ sameIP = addr.equals(that.addr);
++ else if (hostname != null)
++ sameIP = (that.addr == null) &&
++ hostname.equalsIgnoreCase(that.hostname);
++ else
++ sameIP = (that.addr == null) && (that.hostname == null);
++ return sameIP && (port == that.port);
++ }
++
++ @Override
++ public final int hashCode() {
++ if (addr != null)
++ return addr.hashCode() + port;
++ if (hostname != null)
++ return hostname.toLowerCase().hashCode() + port;
++ return port;
++ }
++ }
++
++ private final transient InetSocketAddressHolder holder;
+
+ private static final long serialVersionUID = 5076001401234631237L;
+
+- private InetSocketAddress() {
++ private static int checkPort(int port) {
++ if (port < 0 || port > 0xFFFF)
++ throw new IllegalArgumentException("port out of range:" + port);
++ return port;
++ }
++
++ private static String checkHost(String hostname) {
++ if (hostname == null)
++ throw new IllegalArgumentException("hostname can't be null");
++ return hostname;
+ }
+
+ /**
+@@ -97,14 +182,10 @@
+ * range of valid port values.
+ */
+ public InetSocketAddress(InetAddress addr, int port) {
+- if (port < 0 || port > 0xFFFF) {
+- throw new IllegalArgumentException("port out of range:" + port);
+- }
+- this.port = port;
+- if (addr == null)
+- this.addr = InetAddress.anyLocalAddress();
+- else
+- this.addr = addr;
++ holder = new InetSocketAddressHolder(
++ null,
++ addr == null ? InetAddress.anyLocalAddress() : addr,
++ checkPort(port));
+ }
+
+ /**
+@@ -132,19 +213,20 @@
+ * @see #isUnresolved()
+ */
+ public InetSocketAddress(String hostname, int port) {
+- if (port < 0 || port > 0xFFFF) {
+- throw new IllegalArgumentException("port out of range:" + port);
+- }
+- if (hostname == null) {
+- throw new IllegalArgumentException("hostname can't be null");
+- }
++ checkHost(hostname);
++ InetAddress addr = null;
++ String host = null;
+ try {
+ addr = InetAddress.getByName(hostname);
+ } catch(UnknownHostException e) {
+- this.hostname = hostname;
+- addr = null;
++ host = hostname;
+ }
+- this.port = port;
++ holder = new InetSocketAddressHolder(host, addr, checkPort(port));
++ }
++
++ // private constructor for creating unresolved instances
++ private InetSocketAddress(int port, String hostname) {
++ holder = new InetSocketAddressHolder(hostname, null, port);
+ }
+
+ /**
+@@ -169,31 +251,67 @@
+ * @since 1.5
+ */
+ public static InetSocketAddress createUnresolved(String host, int port) {
+- if (port < 0 || port > 0xFFFF) {
+- throw new IllegalArgumentException("port out of range:" + port);
+- }
+- if (host == null) {
+- throw new IllegalArgumentException("hostname can't be null");
+- }
+- InetSocketAddress s = new InetSocketAddress();
+- s.port = port;
+- s.hostname = host;
+- s.addr = null;
+- return s;
++ return new InetSocketAddress(checkPort(port), checkHost(host));
+ }
+
+- private void readObject(ObjectInputStream s)
+- throws IOException, ClassNotFoundException {
+- s.defaultReadObject();
++ /**
++ * @serialField hostname String
++ * @serialField addr InetAddress
++ * @serialField port int
++ */
++ private static final ObjectStreamField[] serialPersistentFields = {
++ new ObjectStreamField("hostname", String.class),
++ new ObjectStreamField("addr", InetAddress.class),
++ new ObjectStreamField("port", int.class)};
++
++ private void writeObject(ObjectOutputStream out)
++ throws IOException
++ {
++ // Don't call defaultWriteObject()
++ ObjectOutputStream.PutField pfields = out.putFields();
++ pfields.put("hostname", holder.hostname);
++ pfields.put("addr", holder.addr);
++ pfields.put("port", holder.port);
++ out.writeFields();
++ }
++
++ private void readObject(ObjectInputStream in)
++ throws IOException, ClassNotFoundException
++ {
++ // Don't call defaultReadObject()
++ ObjectInputStream.GetField oisFields = in.readFields();
++ final String oisHostname = (String)oisFields.get("hostname", null);
++ final InetAddress oisAddr = (InetAddress)oisFields.get("addr", null);
++ final int oisPort = oisFields.get("port", -1);
+
+ // Check that our invariants are satisfied
+- if (port < 0 || port > 0xFFFF) {
+- throw new InvalidObjectException("port out of range:" + port);
+- }
+-
+- if (hostname == null && addr == null) {
++ checkPort(oisPort);
++ if (oisHostname == null && oisAddr == null)
+ throw new InvalidObjectException("hostname and addr " +
+ "can't both be null");
++
++ InetSocketAddressHolder h = new InetSocketAddressHolder(oisHostname,
++ oisAddr,
++ oisPort);
++ UNSAFE.putObject(this, FIELDS_OFFSET, h);
++ }
++
++ private void readObjectNoData()
++ throws ObjectStreamException
++ {
++ throw new InvalidObjectException("Stream data required");
++ }
++
++ private static final long FIELDS_OFFSET;
++ private static final sun.misc.Unsafe UNSAFE;
++ static {
++ try {
++ sun.misc.Unsafe unsafe = sun.misc.Unsafe.getUnsafe();
++ FIELDS_OFFSET = unsafe.objectFieldOffset(
++ InetSocketAddress.class.getDeclaredField("holder"));
++ UNSAFE = unsafe;
++ } catch (ReflectiveOperationException e) {
++ throw new Error(e);
+ }
+ }
+
+@@ -203,7 +321,7 @@
+ * @return the port number.
+ */
+ public final int getPort() {
+- return port;
++ return holder.getPort();
+ }
+
+ /**
+@@ -213,7 +331,7 @@
+ * @return the InetAdress or <code>null</code> if it is unresolved.
+ */
+ public final InetAddress getAddress() {
+- return addr;
++ return holder.getAddress();
+ }
+
+ /**
+@@ -224,31 +342,19 @@
+ * @return the hostname part of the address.
+ */
+ public final String getHostName() {
+- if (hostname != null)
+- return hostname;
+- if (addr != null)
+- return addr.getHostName();
+- return null;
++ return holder.getHostName();
+ }
+
+ /**
+ * Returns the hostname, or the String form of the address if it
+ * doesn't have a hostname (it was created using a literal).
+- * This has the benefit of <b>not</b> attemptimg a reverse lookup.
++ * This has the benefit of <b>not</b> attempting a reverse lookup.
+ *
+ * @return the hostname, or String representation of the address.
+ * @since 1.7
+ */
+ public final String getHostString() {
+- if (hostname != null)
+- return hostname;
+- if (addr != null) {
+- if (addr.hostName != null)
+- return addr.hostName;
+- else
+- return addr.getHostAddress();
+- }
+- return null;
++ return holder.getHostString();
+ }
+
+ /**
+@@ -258,7 +364,7 @@
+ * an <code>InetAddress</code>.
+ */
+ public final boolean isUnresolved() {
+- return addr == null;
++ return holder.isUnresolved();
+ }
+
+ /**
+@@ -269,12 +375,9 @@
+ *
+ * @return a string representation of this object.
+ */
++ @Override
+ public String toString() {
+- if (isUnresolved()) {
+- return hostname + ":" + port;
+- } else {
+- return addr.toString() + ":" + port;
+- }
++ return holder.toString();
+ }
+
+ /**
+@@ -297,19 +400,11 @@
+ * <code>false</code> otherwise.
+ * @see java.net.InetAddress#equals(java.lang.Object)
+ */
++ @Override
+ public final boolean equals(Object obj) {
+ if (obj == null || !(obj instanceof InetSocketAddress))
+ return false;
+- InetSocketAddress sockAddr = (InetSocketAddress) obj;
+- boolean sameIP = false;
+- if (this.addr != null)
+- sameIP = this.addr.equals(sockAddr.addr);
+- else if (this.hostname != null)
+- sameIP = (sockAddr.addr == null) &&
+- this.hostname.equalsIgnoreCase(sockAddr.hostname);
+- else
+- sameIP = (sockAddr.addr == null) && (sockAddr.hostname == null);
+- return sameIP && (this.port == sockAddr.port);
++ return holder.equals(((InetSocketAddress) obj).holder);
+ }
+
+ /**
+@@ -317,11 +412,8 @@
+ *
+ * @return a hash code value for this socket address.
+ */
++ @Override
+ public final int hashCode() {
+- if (addr != null)
+- return addr.hashCode() + port;
+- if (hostname != null)
+- return hostname.toLowerCase().hashCode() + port;
+- return port;
++ return holder.hashCode();
+ }
+ }
--- jdk/src/share/classes/java/net/URL.java 2012-08-10 10:27:02.000000000 -0700
+++ jdk/src/share/classes/java/net/URL.java 2013-01-16 08:58:10.000000000 -0800
@@ -28,6 +28,8 @@
@@ -14403,7 +58293,7 @@
fail(service,
"Provider " + cn + " could not be instantiated: " + x,
--- jdk/src/share/classes/java/util/TimeZone.java 2012-08-10 10:27:19.000000000 -0700
-+++ jdk/src/share/classes/java/util/TimeZone.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/java/util/TimeZone.java 2013-03-09 08:44:53.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -14887,6 +58777,336 @@
*/
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException, ClassNotFoundException {
+--- jdk/src/share/classes/java/util/concurrent/ThreadPoolExecutor.java 2012-08-10 10:27:21.000000000 -0700
++++ jdk/src/share/classes/java/util/concurrent/ThreadPoolExecutor.java 2013-03-09 08:44:48.000000000 -0800
+@@ -34,8 +34,10 @@
+ */
+
+ package java.util.concurrent;
+-import java.util.concurrent.locks.*;
+-import java.util.concurrent.atomic.*;
++import java.util.concurrent.locks.AbstractQueuedSynchronizer;
++import java.util.concurrent.locks.Condition;
++import java.util.concurrent.locks.ReentrantLock;
++import java.util.concurrent.atomic.AtomicInteger;
+ import java.util.*;
+
+ /**
+@@ -491,10 +493,15 @@
+ * policy limiting the number of threads. Even though it is not
+ * treated as an error, failure to create threads may result in
+ * new tasks being rejected or existing ones remaining stuck in
+- * the queue. On the other hand, no special precautions exist to
+- * handle OutOfMemoryErrors that might be thrown while trying to
+- * create threads, since there is generally no recourse from
+- * within this class.
++ * the queue.
++ *
++ * We go further and preserve pool invariants even in the face of
++ * errors such as OutOfMemoryError, that might be thrown while
++ * trying to create threads. Such errors are rather common due to
++ * the need to allocate a native stack in Thread#start, and users
++ * will want to perform clean pool shutdown to clean up. There
++ * will likely be enough memory available for the cleanup code to
++ * complete without encountering yet another OutOfMemoryError.
+ */
+ private volatile ThreadFactory threadFactory;
+
+@@ -568,9 +575,13 @@
+ * task execution. This protects against interrupts that are
+ * intended to wake up a worker thread waiting for a task from
+ * instead interrupting a task being run. We implement a simple
+- * non-reentrant mutual exclusion lock rather than use ReentrantLock
+- * because we do not want worker tasks to be able to reacquire the
+- * lock when they invoke pool control methods like setCorePoolSize.
++ * non-reentrant mutual exclusion lock rather than use
++ * ReentrantLock because we do not want worker tasks to be able to
++ * reacquire the lock when they invoke pool control methods like
++ * setCorePoolSize. Additionally, to suppress interrupts until
++ * the thread actually starts running tasks, we initialize lock
++ * state to a negative value, and clear it upon start (in
++ * runWorker).
+ */
+ private final class Worker
+ extends AbstractQueuedSynchronizer
+@@ -594,6 +605,7 @@
+ * @param firstTask the first task (null if none)
+ */
+ Worker(Runnable firstTask) {
++ setState(-1); // inhibit interrupts until runWorker
+ this.firstTask = firstTask;
+ this.thread = getThreadFactory().newThread(this);
+ }
+@@ -609,7 +621,7 @@
+ // The value 1 represents the locked state.
+
+ protected boolean isHeldExclusively() {
+- return getState() == 1;
++ return getState() != 0;
+ }
+
+ protected boolean tryAcquire(int unused) {
+@@ -630,6 +642,16 @@
+ public boolean tryLock() { return tryAcquire(1); }
+ public void unlock() { release(1); }
+ public boolean isLocked() { return isHeldExclusively(); }
++
++ void interruptIfStarted() {
++ Thread t;
++ if (getState() >= 0 && (t = thread) != null && !t.isInterrupted()) {
++ try {
++ t.interrupt();
++ } catch (SecurityException ignore) {
++ }
++ }
++ }
+ }
+
+ /*
+@@ -728,12 +750,8 @@
+ final ReentrantLock mainLock = this.mainLock;
+ mainLock.lock();
+ try {
+- for (Worker w : workers) {
+- try {
+- w.thread.interrupt();
+- } catch (SecurityException ignore) {
+- }
+- }
++ for (Worker w : workers)
++ w.interruptIfStarted();
+ } finally {
+ mainLock.unlock();
+ }
+@@ -790,19 +808,6 @@
+
+ private static final boolean ONLY_ONE = true;
+
+- /**
+- * Ensures that unless the pool is stopping, the current thread
+- * does not have its interrupt set. This requires a double-check
+- * of state in case the interrupt was cleared concurrently with a
+- * shutdownNow -- if so, the interrupt is re-enabled.
+- */
+- private void clearInterruptsForTaskRun() {
+- if (runStateLessThan(ctl.get(), STOP) &&
+- Thread.interrupted() &&
+- runStateAtLeast(ctl.get(), STOP))
+- Thread.currentThread().interrupt();
+- }
+-
+ /*
+ * Misc utilities, most of which are also exported to
+ * ScheduledThreadPoolExecutor
+@@ -862,12 +867,13 @@
+ * Checks if a new worker can be added with respect to current
+ * pool state and the given bound (either core or maximum). If so,
+ * the worker count is adjusted accordingly, and, if possible, a
+- * new worker is created and started running firstTask as its
++ * new worker is created and started, running firstTask as its
+ * first task. This method returns false if the pool is stopped or
+ * eligible to shut down. It also returns false if the thread
+- * factory fails to create a thread when asked, which requires a
+- * backout of workerCount, and a recheck for termination, in case
+- * the existence of this worker was holding up termination.
++ * factory fails to create a thread when asked. If the thread
++ * creation fails, either due to the thread factory returning
++ * null, or due to an exception (typically OutOfMemoryError in
++ * Thread#start), we roll back cleanly.
+ *
+ * @param firstTask the task the new thread should run first (or
+ * null if none). Workers are created with an initial first task
+@@ -910,46 +916,65 @@
+ }
+ }
+
+- Worker w = new Worker(firstTask);
+- Thread t = w.thread;
++ boolean workerStarted = false;
++ boolean workerAdded = false;
++ Worker w = null;
++ try {
++ final ReentrantLock mainLock = this.mainLock;
++ w = new Worker(firstTask);
++ final Thread t = w.thread;
++ if (t != null) {
++ mainLock.lock();
++ try {
++ // Recheck while holding lock.
++ // Back out on ThreadFactory failure or if
++ // shut down before lock acquired.
++ int c = ctl.get();
++ int rs = runStateOf(c);
++
++ if (rs < SHUTDOWN ||
++ (rs == SHUTDOWN && firstTask == null)) {
++ if (t.isAlive()) // precheck that t is startable
++ throw new IllegalThreadStateException();
++ workers.add(w);
++ int s = workers.size();
++ if (s > largestPoolSize)
++ largestPoolSize = s;
++ workerAdded = true;
++ }
++ } finally {
++ mainLock.unlock();
++ }
++ if (workerAdded) {
++ t.start();
++ workerStarted = true;
++ }
++ }
++ } finally {
++ if (! workerStarted)
++ addWorkerFailed(w);
++ }
++ return workerStarted;
++ }
+
++ /**
++ * Rolls back the worker thread creation.
++ * - removes worker from workers, if present
++ * - decrements worker count
++ * - rechecks for termination, in case the existence of this
++ * worker was holding up termination
++ */
++ private void addWorkerFailed(Worker w) {
+ final ReentrantLock mainLock = this.mainLock;
+ mainLock.lock();
+ try {
+- // Recheck while holding lock.
+- // Back out on ThreadFactory failure or if
+- // shut down before lock acquired.
+- int c = ctl.get();
+- int rs = runStateOf(c);
+-
+- if (t == null ||
+- (rs >= SHUTDOWN &&
+- ! (rs == SHUTDOWN &&
+- firstTask == null))) {
+- decrementWorkerCount();
+- tryTerminate();
+- return false;
+- }
+-
+- workers.add(w);
+-
+- int s = workers.size();
+- if (s > largestPoolSize)
+- largestPoolSize = s;
++ if (w != null)
++ workers.remove(w);
++ decrementWorkerCount();
++ tryTerminate();
+ } finally {
+ mainLock.unlock();
+ }
+-
+- t.start();
+- // It is possible (but unlikely) for a thread to have been
+- // added to workers, but not yet started, during transition to
+- // STOP, which could result in a rare missed interrupt,
+- // because Thread.interrupt is not guaranteed to have any effect
+- // on a non-yet-started Thread (see Thread#interrupt).
+- if (runStateOf(ctl.get()) == STOP && ! t.isInterrupted())
+- t.interrupt();
+-
+- return true;
+ }
+
+ /**
+@@ -1096,15 +1121,25 @@
+ * @param w the worker
+ */
+ final void runWorker(Worker w) {
++ Thread wt = Thread.currentThread();
+ Runnable task = w.firstTask;
+ w.firstTask = null;
++ w.unlock(); // allow interrupts
+ boolean completedAbruptly = true;
+ try {
+ while (task != null || (task = getTask()) != null) {
+ w.lock();
+- clearInterruptsForTaskRun();
++ // If pool is stopping, ensure thread is interrupted;
++ // if not, ensure thread is not interrupted. This
++ // requires a recheck in second case to deal with
++ // shutdownNow race while clearing interrupt
++ if ((runStateAtLeast(ctl.get(), STOP) ||
++ (Thread.interrupted() &&
++ runStateAtLeast(ctl.get(), STOP))) &&
++ !wt.isInterrupted())
++ wt.interrupt();
+ try {
+- beforeExecute(w.thread, task);
++ beforeExecute(wt, task);
+ Throwable thrown = null;
+ try {
+ task.run();
+@@ -2064,3 +2099,4 @@
+ }
+ }
+ }
++
+--- jdk/src/share/classes/java/util/jar/JarFile.java 2012-08-10 10:27:22.000000000 -0700
++++ jdk/src/share/classes/java/util/jar/JarFile.java 2013-03-09 08:44:48.000000000 -0800
+@@ -34,6 +34,7 @@
+ import java.security.cert.Certificate;
+ import java.security.AccessController;
+ import java.security.CodeSource;
++import sun.misc.IOUtils;
+ import sun.security.action.GetPropertyAction;
+ import sun.security.util.ManifestEntryVerifier;
+ import sun.misc.SharedSecrets;
+@@ -329,6 +330,9 @@
+ if (names != null) {
+ for (int i = 0; i < names.length; i++) {
+ JarEntry e = getJarEntry(names[i]);
++ if (e == null) {
++ throw new JarException("corrupted jar file");
++ }
+ if (!e.isDirectory()) {
+ if (mev == null) {
+ mev = new ManifestEntryVerifier
+@@ -348,6 +352,10 @@
+ // treat the jar file as being unsigned
+ jv = null;
+ verify = false;
++ if (JarVerifier.debug != null) {
++ JarVerifier.debug.println("jarfile parsing error!");
++ ex.printStackTrace();
++ }
+ }
+
+ // if after initializing the verifier we have nothing
+@@ -375,11 +383,9 @@
+ * META-INF files.
+ */
+ private byte[] getBytes(ZipEntry ze) throws IOException {
+- byte[] b = new byte[(int)ze.getSize()];
+- try (DataInputStream is = new DataInputStream(super.getInputStream(ze))) {
+- is.readFully(b, 0, b.length);
++ try (InputStream is = super.getInputStream(ze)) {
++ return IOUtils.readFully(is, (int)ze.getSize(), true);
+ }
+- return b;
+ }
+
+ /**
+@@ -479,12 +485,7 @@
+ if (!isKnownToNotHaveClassPathAttribute()) {
+ JarEntry manEntry = getManEntry();
+ if (manEntry != null) {
+- byte[] b = new byte[(int)manEntry.getSize()];
+- try (DataInputStream dis = new DataInputStream(
+- super.getInputStream(manEntry))) {
+- dis.readFully(b, 0, b.length);
+- }
+-
++ byte[] b = getBytes(manEntry);
+ int last = b.length - src.length;
+ int i = 0;
+ next:
--- jdk/src/share/classes/java/util/logging/FileHandler.java 2012-08-10 10:27:22.000000000 -0700
+++ jdk/src/share/classes/java/util/logging/FileHandler.java 2013-01-16 08:58:10.000000000 -0800
@@ -220,7 +220,7 @@
@@ -15018,9 +59238,397 @@
}
}
}
+--- jdk/src/share/classes/java/util/logging/Level.java 2012-08-10 10:27:22.000000000 -0700
++++ jdk/src/share/classes/java/util/logging/Level.java 2013-03-09 08:44:48.000000000 -0800
+@@ -24,6 +24,10 @@
+ */
+
+ package java.util.logging;
++import java.util.ArrayList;
++import java.util.HashMap;
++import java.util.List;
++import java.util.Map;
+ import java.util.ResourceBundle;
+
+ /**
+@@ -59,7 +63,6 @@
+ */
+
+ public class Level implements java.io.Serializable {
+- private static java.util.ArrayList<Level> known = new java.util.ArrayList<>();
+ private static String defaultBundle = "sun.util.logging.resources.logging";
+
+ /**
+@@ -77,6 +80,9 @@
+ */
+ private final String resourceBundleName;
+
++ // localized level name
++ private String localizedLevelName;
++
+ /**
+ * OFF is a special level that can be used to turn off logging.
+ * This level is initialized to <CODE>Integer.MAX_VALUE</CODE>.
+@@ -202,9 +208,8 @@
+ this.name = name;
+ this.value = value;
+ this.resourceBundleName = resourceBundleName;
+- synchronized (Level.class) {
+- known.add(this);
+- }
++ this.localizedLevelName = resourceBundleName == null ? name : null;
++ KnownLevel.add(this);
+ }
+
+ /**
+@@ -236,12 +241,76 @@
+ * @return localized name
+ */
+ public String getLocalizedName() {
++ return getLocalizedLevelName();
++ }
++
++ // package-private getLevelName() is used by the implementation
++ // instead of getName() to avoid calling the subclass's version
++ final String getLevelName() {
++ return this.name;
++ }
++
++ final synchronized String getLocalizedLevelName() {
++ if (localizedLevelName != null) {
++ return localizedLevelName;
++ }
++
+ try {
+ ResourceBundle rb = ResourceBundle.getBundle(resourceBundleName);
+- return rb.getString(name);
++ localizedLevelName = rb.getString(name);
+ } catch (Exception ex) {
+- return name;
++ localizedLevelName = name;
++ }
++ return localizedLevelName;
++ }
++
++ // Returns a mirrored Level object that matches the given name as
++ // specified in the Level.parse method. Returns null if not found.
++ //
++ // It returns the same Level object as the one returned by Level.parse
++ // method if the given name is a non-localized name or integer.
++ //
++ // If the name is a localized name, findLevel and parse method may
++ // return a different level value if there is a custom Level subclass
++ // that overrides Level.getLocalizedName() to return a different string
++ // than what's returned by the default implementation.
++ //
++ static Level findLevel(String name) {
++ if (name == null) {
++ throw new NullPointerException();
++ }
++
++ KnownLevel level;
++
++ // Look for a known Level with the given non-localized name.
++ level = KnownLevel.findByName(name);
++ if (level != null) {
++ return level.mirroredLevel;
+ }
++
++ // Now, check if the given name is an integer. If so,
++ // first look for a Level with the given value and then
++ // if necessary create one.
++ try {
++ int x = Integer.parseInt(name);
++ level = KnownLevel.findByValue(x);
++ if (level == null) {
++ // add new Level
++ Level levelObject = new Level(name, x);
++ level = KnownLevel.findByValue(x);
++ }
++ return level.mirroredLevel;
++ } catch (NumberFormatException ex) {
++ // Not an integer.
++ // Drop through.
++ }
++
++ level = KnownLevel.findByLocalizedLevelName(name);
++ if (level != null) {
++ return level.mirroredLevel;
++ }
++
++ return null;
+ }
+
+ /**
+@@ -268,21 +337,15 @@
+ // Serialization magic to prevent "doppelgangers".
+ // This is a performance optimization.
+ private Object readResolve() {
+- synchronized (Level.class) {
+- for (int i = 0; i < known.size(); i++) {
+- Level other = known.get(i);
+- if (this.name.equals(other.name) && this.value == other.value
+- && (this.resourceBundleName == other.resourceBundleName ||
+- (this.resourceBundleName != null &&
+- this.resourceBundleName.equals(other.resourceBundleName)))) {
+- return other;
+- }
+- }
+- // Woops. Whoever sent us this object knows
+- // about a new log level. Add it to our list.
+- known.add(this);
+- return this;
++ KnownLevel o = KnownLevel.matches(this);
++ if (o != null) {
++ return o.levelObject;
+ }
++
++ // Woops. Whoever sent us this object knows
++ // about a new log level. Add it to our list.
++ Level level = new Level(this.name, this.value, this.resourceBundleName);
++ return level;
+ }
+
+ /**
+@@ -296,6 +359,7 @@
+ * <li> "SEVERE"
+ * <li> "1000"
+ * </ul>
++ *
+ * @param name string to be parsed
+ * @throws NullPointerException if the name is null
+ * @throws IllegalArgumentException if the value is not valid.
+@@ -315,12 +379,12 @@
+ // Check that name is not null.
+ name.length();
+
++ KnownLevel level;
++
+ // Look for a known Level with the given non-localized name.
+- for (int i = 0; i < known.size(); i++) {
+- Level l = known.get(i);
+- if (name.equals(l.name)) {
+- return l;
+- }
++ level = KnownLevel.findByName(name);
++ if (level != null) {
++ return level.levelObject;
+ }
+
+ // Now, check if the given name is an integer. If so,
+@@ -328,14 +392,13 @@
+ // if necessary create one.
+ try {
+ int x = Integer.parseInt(name);
+- for (int i = 0; i < known.size(); i++) {
+- Level l = known.get(i);
+- if (l.value == x) {
+- return l;
+- }
++ level = KnownLevel.findByValue(x);
++ if (level == null) {
++ // add new Level
++ Level levelObject = new Level(name, x);
++ level = KnownLevel.findByValue(x);
+ }
+- // Create a new Level.
+- return new Level(name, x);
++ return level.levelObject;
+ } catch (NumberFormatException ex) {
+ // Not an integer.
+ // Drop through.
+@@ -344,11 +407,9 @@
+ // Finally, look for a known level with the given localized name,
+ // in the current default locale.
+ // This is relatively expensive, but not excessively so.
+- for (int i = 0; i < known.size(); i++) {
+- Level l = known.get(i);
+- if (name.equals(l.getLocalizedName())) {
+- return l;
+- }
++ level = KnownLevel.findByLocalizedName(name);
++ if (level != null) {
++ return level.levelObject;
+ }
+
+ // OK, we've tried everything and failed
+@@ -375,4 +436,124 @@
+ public int hashCode() {
+ return this.value;
+ }
++
++ // KnownLevel class maintains the global list of all known levels.
++ // The API allows multiple custom Level instances of the same name/value
++ // be created. This class provides convenient methods to find a level
++ // by a given name, by a given value, or by a given localized name.
++ //
++ // KnownLevel wraps the following Level objects:
++ // 1. levelObject: standard Level object or custom Level object
++ // 2. mirroredLevel: Level object representing the level specified in the
++ // logging configuration.
++ //
++ // Level.getName, Level.getLocalizedName, Level.getResourceBundleName methods
++ // are non-final but the name and resource bundle name are parameters to
++ // the Level constructor. Use the mirroredLevel object instead of the
++ // levelObject to prevent the logging framework to execute foreign code
++ // implemented by untrusted Level subclass.
++ //
++ // Implementation Notes:
++ // If Level.getName, Level.getLocalizedName, Level.getResourceBundleName methods
++ // were final, the following KnownLevel implementation can be removed.
++ // Future API change should take this into consideration.
++ static final class KnownLevel {
++ private static Map<String, List<KnownLevel>> nameToLevels = new HashMap<>();
++ private static Map<Integer, List<KnownLevel>> intToLevels = new HashMap<>();
++ final Level levelObject; // instance of Level class or Level subclass
++ final Level mirroredLevel; // instance of Level class
++ KnownLevel(Level l) {
++ this.levelObject = l;
++ if (l.getClass() == Level.class) {
++ this.mirroredLevel = l;
++ } else {
++ this.mirroredLevel = new Level(l.name, l.value, l.resourceBundleName);
++ }
++ }
++
++ static synchronized void add(Level l) {
++ // the mirroredLevel object is always added to the list
++ // before the custom Level instance
++ KnownLevel o = new KnownLevel(l);
++ List<KnownLevel> list = nameToLevels.get(l.name);
++ if (list == null) {
++ list = new ArrayList<>();
++ nameToLevels.put(l.name, list);
++ }
++ list.add(o);
++
++ list = intToLevels.get(l.value);
++ if (list == null) {
++ list = new ArrayList<>();
++ intToLevels.put(l.value, list);
++ }
++ list.add(o);
++ }
++
++ // Returns a KnownLevel with the given non-localized name.
++ static synchronized KnownLevel findByName(String name) {
++ List<KnownLevel> list = nameToLevels.get(name);
++ if (list != null) {
++ return list.get(0);
++ }
++ return null;
++ }
++
++ // Returns a KnownLevel with the given value.
++ static synchronized KnownLevel findByValue(int value) {
++ List<KnownLevel> list = intToLevels.get(value);
++ if (list != null) {
++ return list.get(0);
++ }
++ return null;
++ }
++
++ // Returns a KnownLevel with the given localized name matching
++ // by calling the Level.getLocalizedLevelName() method (i.e. found
++ // from the resourceBundle associated with the Level object).
++ // This method does not call Level.getLocalizedName() that may
++ // be overridden in a subclass implementation
++ static synchronized KnownLevel findByLocalizedLevelName(String name) {
++ for (List<KnownLevel> levels : nameToLevels.values()) {
++ for (KnownLevel l : levels) {
++ String lname = l.levelObject.getLocalizedLevelName();
++ if (name.equals(lname)) {
++ return l;
++ }
++ }
++ }
++ return null;
++ }
++
++ // Returns a KnownLevel with the given localized name matching
++ // by calling the Level.getLocalizedName() method
++ static synchronized KnownLevel findByLocalizedName(String name) {
++ for (List<KnownLevel> levels : nameToLevels.values()) {
++ for (KnownLevel l : levels) {
++ String lname = l.levelObject.getLocalizedName();
++ if (name.equals(lname)) {
++ return l;
++ }
++ }
++ }
++ return null;
++ }
++
++ static synchronized KnownLevel matches(Level l) {
++ List<KnownLevel> list = nameToLevels.get(l.name);
++ if (list != null) {
++ for (KnownLevel level : list) {
++ Level other = level.mirroredLevel;
++ if (l.value == other.value &&
++ (l.resourceBundleName == other.resourceBundleName ||
++ (l.resourceBundleName != null &&
++ l.resourceBundleName.equals(other.resourceBundleName)))) {
++ return level;
++ }
++ }
++ }
++ return null;
++ }
++ }
++
+ }
--- jdk/src/share/classes/java/util/logging/LogManager.java 2012-08-10 10:27:22.000000000 -0700
-+++ jdk/src/share/classes/java/util/logging/LogManager.java 2013-01-16 08:58:10.000000000 -0800
-@@ -314,7 +314,7 @@
++++ jdk/src/share/classes/java/util/logging/LogManager.java 2013-03-09 08:44:48.000000000 -0800
+@@ -34,6 +34,8 @@
+ import java.beans.PropertyChangeListener;
+ import java.beans.PropertyChangeSupport;
+ import java.net.URL;
++import sun.misc.JavaAWTAccess;
++import sun.misc.SharedSecrets;
+ import sun.security.action.GetPropertyAction;
+
+ /**
+@@ -155,10 +157,9 @@
+ = new PropertyChangeSupport(LogManager.class);
+ private final static Level defaultLevel = Level.INFO;
+
+- // Table of named Loggers that maps names to Loggers.
+- private Hashtable<String,LoggerWeakRef> namedLoggers = new Hashtable<>();
+- // Tree of named Loggers
+- private LogNode root = new LogNode(null);
++ // LoggerContext for system loggers and user loggers
++ private final LoggerContext systemContext = new SystemLoggerContext();
++ private final LoggerContext userContext = new LoggerContext();
+ private Logger rootLogger;
+
+ // Have we done the primordial reading of the configuration file?
+@@ -197,6 +198,7 @@
+ // Create and retain Logger for the root of the namespace.
+ manager.rootLogger = manager.new RootLogger();
+ manager.addLogger(manager.rootLogger);
++ manager.systemContext.addLocalLogger(manager.rootLogger);
+
+ // Adding the global Logger. Doing so in the Logger.<clinit>
+ // would deadlock with the LogManager.<clinit>.
+@@ -279,14 +281,14 @@
+ return;
+ }
+ readPrimordialConfiguration = true;
++
+ try {
+- AccessController.doPrivileged(new PrivilegedExceptionAction<Object>() {
+- public Object run() throws Exception {
++ AccessController.doPrivileged(new PrivilegedExceptionAction<Void>() {
++ public Void run() throws Exception {
+ readConfiguration();
+
+ // Platform loggers begin to delegate to java.util.logging.Logger
+ sun.util.logging.PlatformLogger.redirectPlatformLoggers();
+-
+ return null;
+ }
+ });
+@@ -314,7 +316,7 @@
if (l == null) {
throw new NullPointerException();
}
@@ -15029,7 +59637,7 @@
changes.addPropertyChangeListener(l);
}
-@@ -333,7 +333,7 @@
+@@ -333,24 +335,72 @@
* the caller does not have LoggingPermission("control").
*/
public void removePropertyChangeListener(PropertyChangeListener l) throws SecurityException {
@@ -15038,7 +59646,564 @@
changes.removePropertyChangeListener(l);
}
-@@ -772,7 +772,7 @@
+- // Package-level method.
++ // Returns the LoggerContext for the user code (i.e. application or AppContext).
++ // Loggers are isolated from each AppContext.
++ private LoggerContext getUserContext() {
++ LoggerContext context = null;
++
++ SecurityManager sm = System.getSecurityManager();
++ JavaAWTAccess javaAwtAccess = SharedSecrets.getJavaAWTAccess();
++ if (sm != null && javaAwtAccess != null) {
++ synchronized (javaAwtAccess) {
++ // AppContext.getAppContext() returns the system AppContext if called
++ // from a system thread but Logger.getLogger might be called from
++ // an applet code. Instead, find the AppContext of the applet code
++ // from the execution stack.
++ Object ecx = javaAwtAccess.getExecutionContext();
++ if (ecx == null) {
++ // fall back to AppContext.getAppContext()
++ ecx = javaAwtAccess.getContext();
++ }
++ context = (LoggerContext)javaAwtAccess.get(ecx, LoggerContext.class);
++ if (context == null) {
++ if (javaAwtAccess.isMainAppContext()) {
++ context = userContext;
++ } else {
++ context = new LoggerContext();
++ // during initialization, rootLogger is null when
++ // instantiating itself RootLogger
++ if (manager.rootLogger != null)
++ context.addLocalLogger(manager.rootLogger);
++ }
++ javaAwtAccess.put(ecx, LoggerContext.class, context);
++ }
++ }
++ } else {
++ context = userContext;
++ }
++ return context;
++ }
++
++ private List<LoggerContext> contexts() {
++ List<LoggerContext> cxs = new ArrayList<>();
++ cxs.add(systemContext);
++ cxs.add(getUserContext());
++ return cxs;
++ }
++
+ // Find or create a specified logger instance. If a logger has
+ // already been created with the given name it is returned.
+ // Otherwise a new logger instance is created and registered
+ // in the LogManager global namespace.
+-
+ // This method will always return a non-null Logger object.
+ // Synchronization is not required here. All synchronization for
+ // adding a new Logger object is handled by addLogger().
+- Logger demandLogger(String name) {
++ //
++ // This method must delegate to the LogManager implementation to
++ // add a new Logger or return the one that has been added previously
++ // as a LogManager subclass may override the addLogger, getLogger,
++ // readConfiguration, and other methods.
++ Logger demandLogger(String name, String resourceBundleName) {
+ Logger result = getLogger(name);
+ if (result == null) {
+ // only allocate the new logger once
+- Logger newLogger = new Logger(name, null);
++ Logger newLogger = new Logger(name, resourceBundleName);
+ do {
+ if (addLogger(newLogger)) {
+ // We successfully added the new Logger that we
+@@ -375,24 +425,246 @@
+ return result;
+ }
+
+- // If logger.getUseParentHandlers() returns 'true' and any of the logger's
+- // parents have levels or handlers defined, make sure they are instantiated.
+- private void processParentHandlers(Logger logger, String name) {
+- int ix = 1;
+- for (;;) {
+- int ix2 = name.indexOf(".", ix);
+- if (ix2 < 0) {
+- break;
++ Logger demandSystemLogger(String name, String resourceBundleName) {
++ // Add a system logger in the system context's namespace
++ final Logger sysLogger = systemContext.demandLogger(name, resourceBundleName);
++
++ // Add the system logger to the LogManager's namespace if not exist
++ // so that there is only one single logger of the given name.
++ // System loggers are visible to applications unless a logger of
++ // the same name has been added.
++ Logger logger;
++ do {
++ // First attempt to call addLogger instead of getLogger
++ // This would avoid potential bug in custom LogManager.getLogger
++ // implementation that adds a logger if does not exist
++ if (addLogger(sysLogger)) {
++ // successfully added the new system logger
++ logger = sysLogger;
++ } else {
++ logger = getLogger(name);
++ }
++ } while (logger == null);
++
++ // LogManager will set the sysLogger's handlers via LogManager.addLogger method.
++ if (logger != sysLogger && sysLogger.getHandlers().length == 0) {
++ // if logger already exists but handlers not set
++ final Logger l = logger;
++ AccessController.doPrivileged(new PrivilegedAction<Void>() {
++ public Void run() {
++ for (Handler hdl : l.getHandlers()) {
++ sysLogger.addHandler(hdl);
++ }
++ return null;
++ }
++ });
++ }
++ return sysLogger;
++ }
++
++ // LoggerContext maintains the logger namespace per context.
++ // The default LogManager implementation has one system context and user
++ // context. The system context is used to maintain the namespace for
++ // all system loggers and is queried by the system code. If a system logger
++ // doesn't exist in the user context, it'll also be added to the user context.
++ // The user context is queried by the user code and all other loggers are
++ // added in the user context.
++ static class LoggerContext {
++ // Table of named Loggers that maps names to Loggers.
++ private final Hashtable<String,LoggerWeakRef> namedLoggers = new Hashtable<>();
++ // Tree of named Loggers
++ private final LogNode root;
++
++ private LoggerContext() {
++ this.root = new LogNode(null, this);
++ }
++
++ Logger demandLogger(String name, String resourceBundleName) {
++ // a LogManager subclass may have its own implementation to add and
++ // get a Logger. So delegate to the LogManager to do the work.
++ return manager.demandLogger(name, resourceBundleName);
++ }
++
++ synchronized Logger findLogger(String name) {
++ LoggerWeakRef ref = namedLoggers.get(name);
++ if (ref == null) {
++ return null;
++ }
++ Logger logger = ref.get();
++ if (logger == null) {
++ // Hashtable holds stale weak reference
++ // to a logger which has been GC-ed.
++ removeLogger(name);
++ }
++ return logger;
++ }
++
++ // Add a logger to this context. This method will only set its level
++ // and process parent loggers. It doesn't set its handlers.
++ synchronized boolean addLocalLogger(Logger logger) {
++ final String name = logger.getName();
++ if (name == null) {
++ throw new NullPointerException();
++ }
++
++ // cleanup some Loggers that have been GC'ed
++ manager.drainLoggerRefQueueBounded();
++
++ LoggerWeakRef ref = namedLoggers.get(name);
++ if (ref != null) {
++ if (ref.get() == null) {
++ // It's possible that the Logger was GC'ed after the
++ // drainLoggerRefQueueBounded() call above so allow
++ // a new one to be registered.
++ removeLogger(name);
++ } else {
++ // We already have a registered logger with the given name.
++ return false;
++ }
++ }
++
++ // We're adding a new logger.
++ // Note that we are creating a weak reference here.
++ ref = manager.new LoggerWeakRef(logger);
++ namedLoggers.put(name, ref);
++
++ // Apply any initial level defined for the new logger.
++ Level level = manager.getLevelProperty(name + ".level", null);
++ if (level != null) {
++ doSetLevel(logger, level);
++ }
++
++ processParentHandlers(logger, name);
++
++ // Find the new node and its parent.
++ LogNode node = getNode(name);
++ node.loggerRef = ref;
++ Logger parent = null;
++ LogNode nodep = node.parent;
++ while (nodep != null) {
++ LoggerWeakRef nodeRef = nodep.loggerRef;
++ if (nodeRef != null) {
++ parent = nodeRef.get();
++ if (parent != null) {
++ break;
++ }
++ }
++ nodep = nodep.parent;
++ }
++
++ if (parent != null) {
++ doSetParent(logger, parent);
++ }
++ // Walk over the children and tell them we are their new parent.
++ node.walkAndSetParent(logger);
++ // new LogNode is ready so tell the LoggerWeakRef about it
++ ref.setNode(node);
++ return true;
++ }
++
++ void removeLogger(String name) {
++ namedLoggers.remove(name);
++ }
++
++ synchronized Enumeration<String> getLoggerNames() {
++ return namedLoggers.keys();
++ }
++
++ // If logger.getUseParentHandlers() returns 'true' and any of the logger's
++ // parents have levels or handlers defined, make sure they are instantiated.
++ private void processParentHandlers(final Logger logger, final String name) {
++ AccessController.doPrivileged(new PrivilegedAction<Void>() {
++ public Void run() {
++ if (logger != manager.rootLogger) {
++ boolean useParent = manager.getBooleanProperty(name + ".useParentHandlers", true);
++ if (!useParent) {
++ logger.setUseParentHandlers(false);
++ }
++ }
++ return null;
++ }
++ });
++
++ int ix = 1;
++ for (;;) {
++ int ix2 = name.indexOf(".", ix);
++ if (ix2 < 0) {
++ break;
++ }
++ String pname = name.substring(0, ix2);
++ if (manager.getProperty(pname + ".level") != null ||
++ manager.getProperty(pname + ".handlers") != null) {
++ // This pname has a level/handlers definition.
++ // Make sure it exists.
++ demandLogger(pname, null);
++ }
++ ix = ix2+1;
++ }
++ }
++
++ // Gets a node in our tree of logger nodes.
++ // If necessary, create it.
++ LogNode getNode(String name) {
++ if (name == null || name.equals("")) {
++ return root;
++ }
++ LogNode node = root;
++ while (name.length() > 0) {
++ int ix = name.indexOf(".");
++ String head;
++ if (ix > 0) {
++ head = name.substring(0, ix);
++ name = name.substring(ix + 1);
++ } else {
++ head = name;
++ name = "";
++ }
++ if (node.children == null) {
++ node.children = new HashMap<>();
++ }
++ LogNode child = node.children.get(head);
++ if (child == null) {
++ child = new LogNode(node, this);
++ node.children.put(head, child);
++ }
++ node = child;
+ }
+- String pname = name.substring(0,ix2);
++ return node;
++ }
++ }
+
+- if (getProperty(pname+".level") != null ||
+- getProperty(pname+".handlers") != null) {
+- // This pname has a level/handlers definition.
+- // Make sure it exists.
+- demandLogger(pname);
++ static class SystemLoggerContext extends LoggerContext {
++ // Add a system logger in the system context's namespace as well as
++ // in the LogManager's namespace if not exist so that there is only
++ // one single logger of the given name. System loggers are visible
++ // to applications unless a logger of the same name has been added.
++ Logger demandLogger(String name, String resourceBundleName) {
++ Logger result = findLogger(name);
++ if (result == null) {
++ // only allocate the new system logger once
++ Logger newLogger = new Logger(name, resourceBundleName);
++ do {
++ if (addLocalLogger(newLogger)) {
++ // We successfully added the new Logger that we
++ // created above so return it without refetching.
++ result = newLogger;
++ } else {
++ // We didn't add the new Logger that we created above
++ // because another thread added a Logger with the same
++ // name after our null check above and before our call
++ // to addLogger(). We have to refetch the Logger because
++ // addLogger() returns a boolean instead of the Logger
++ // reference itself. However, if the thread that created
++ // the other Logger is not holding a strong reference to
++ // the other Logger, then it is possible for the other
++ // Logger to be GC'ed after we saw it in addLogger() and
++ // before we can refetch it. If it has been GC'ed then
++ // we'll just loop around and try again.
++ result = findLogger(name);
++ }
++ } while (result == null);
+ }
+- ix = ix2+1;
++ return result;
+ }
+ }
+
+@@ -401,32 +673,27 @@
+ // be made based on the logging configuration, which can
+ // only be modified by trusted code.
+ private void loadLoggerHandlers(final Logger logger, final String name,
+- final String handlersPropertyName) {
++ final String handlersPropertyName)
++ {
+ AccessController.doPrivileged(new PrivilegedAction<Object>() {
+ public Object run() {
+- if (logger != rootLogger) {
+- boolean useParent = getBooleanProperty(name + ".useParentHandlers", true);
+- if (!useParent) {
+- logger.setUseParentHandlers(false);
+- }
+- }
+-
+ String names[] = parseClassNames(handlersPropertyName);
+ for (int i = 0; i < names.length; i++) {
+ String word = names[i];
+ try {
+- Class clz = ClassLoader.getSystemClassLoader().loadClass(word);
++ Class clz = ClassLoader.getSystemClassLoader().loadClass(word);
+ Handler hdl = (Handler) clz.newInstance();
+- try {
+- // Check if there is a property defining the
+- // this handler's level.
+- String levs = getProperty(word + ".level");
+- if (levs != null) {
+- hdl.setLevel(Level.parse(levs));
++ // Check if there is a property defining the
++ // this handler's level.
++ String levs = getProperty(word + ".level");
++ if (levs != null) {
++ Level l = Level.findLevel(levs);
++ if (l != null) {
++ hdl.setLevel(l);
++ } else {
++ // Probably a bad level. Drop through.
++ System.err.println("Can't set level for " + word);
+ }
+- } catch (Exception ex) {
+- System.err.println("Can't set level for " + word);
+- // Probably a bad level. Drop through.
+ }
+ // Add this Handler to the logger
+ logger.addHandler(hdl);
+@@ -437,7 +704,8 @@
+ }
+ }
+ return null;
+- }});
++ }
++ });
+ }
+
+
+@@ -482,7 +750,7 @@
+ if (node != null) {
+ // if we have a LogNode, then we were a named Logger
+ // so clear namedLoggers weak ref to us
+- manager.namedLoggers.remove(name);
++ node.context.removeLogger(name);
+ name = null; // clear our ref to the Logger's name
+
+ node.loggerRef = null; // clear LogNode's weak ref to us
+@@ -571,73 +839,22 @@
+ * false if a logger of that name already exists.
+ * @exception NullPointerException if the logger name is null.
+ */
+- public synchronized boolean addLogger(Logger logger) {
++ public boolean addLogger(Logger logger) {
+ final String name = logger.getName();
+ if (name == null) {
+ throw new NullPointerException();
+ }
+-
+- // cleanup some Loggers that have been GC'ed
+- drainLoggerRefQueueBounded();
+-
+- LoggerWeakRef ref = namedLoggers.get(name);
+- if (ref != null) {
+- if (ref.get() == null) {
+- // It's possible that the Logger was GC'ed after the
+- // drainLoggerRefQueueBounded() call above so allow
+- // a new one to be registered.
+- namedLoggers.remove(name);
+- } else {
+- // We already have a registered logger with the given name.
+- return false;
+- }
+- }
+-
+- // We're adding a new logger.
+- // Note that we are creating a weak reference here.
+- ref = new LoggerWeakRef(logger);
+- namedLoggers.put(name, ref);
+-
+- // Apply any initial level defined for the new logger.
+- Level level = getLevelProperty(name+".level", null);
+- if (level != null) {
+- doSetLevel(logger, level);
+- }
+-
+- // Do we have a per logger handler too?
+- // Note: this will add a 200ms penalty
+- loadLoggerHandlers(logger, name, name+".handlers");
+- processParentHandlers(logger, name);
+-
+- // Find the new node and its parent.
+- LogNode node = findNode(name);
+- node.loggerRef = ref;
+- Logger parent = null;
+- LogNode nodep = node.parent;
+- while (nodep != null) {
+- LoggerWeakRef nodeRef = nodep.loggerRef;
+- if (nodeRef != null) {
+- parent = nodeRef.get();
+- if (parent != null) {
+- break;
+- }
+- }
+- nodep = nodep.parent;
+- }
+-
+- if (parent != null) {
+- doSetParent(logger, parent);
++ LoggerContext cx = getUserContext();
++ if (cx.addLocalLogger(logger)) {
++ // Do we have a per logger handler too?
++ // Note: this will add a 200ms penalty
++ loadLoggerHandlers(logger, name, name + ".handlers");
++ return true;
++ } else {
++ return false;
+ }
+- // Walk over the children and tell them we are their new parent.
+- node.walkAndSetParent(logger);
+-
+- // new LogNode is ready so tell the LoggerWeakRef about it
+- ref.setNode(node);
+-
+- return true;
+ }
+
+-
+ // Private method to set a level on a logger.
+ // If necessary, we raise privilege before doing the call.
+ private static void doSetLevel(final Logger logger, final Level level) {
+@@ -656,8 +873,6 @@
+ }});
+ }
+
+-
+-
+ // Private method to set a parent on a logger.
+ // If necessary, we raise privilege before doing the setParent call.
+ private static void doSetParent(final Logger logger, final Logger parent) {
+@@ -676,36 +891,6 @@
+ }});
+ }
+
+- // Find a node in our tree of logger nodes.
+- // If necessary, create it.
+- private LogNode findNode(String name) {
+- if (name == null || name.equals("")) {
+- return root;
+- }
+- LogNode node = root;
+- while (name.length() > 0) {
+- int ix = name.indexOf(".");
+- String head;
+- if (ix > 0) {
+- head = name.substring(0,ix);
+- name = name.substring(ix+1);
+- } else {
+- head = name;
+- name = "";
+- }
+- if (node.children == null) {
+- node.children = new HashMap<>();
+- }
+- LogNode child = node.children.get(head);
+- if (child == null) {
+- child = new LogNode(node);
+- node.children.put(head, child);
+- }
+- node = child;
+- }
+- return node;
+- }
+-
+ /**
+ * Method to find a named logger.
+ * <p>
+@@ -721,18 +906,8 @@
+ * @param name name of the logger
+ * @return matching logger or null if none is found
+ */
+- public synchronized Logger getLogger(String name) {
+- LoggerWeakRef ref = namedLoggers.get(name);
+- if (ref == null) {
+- return null;
+- }
+- Logger logger = ref.get();
+- if (logger == null) {
+- // Hashtable holds stale weak reference
+- // to a logger which has been GC-ed.
+- namedLoggers.remove(name);
+- }
+- return logger;
++ public Logger getLogger(String name) {
++ return getUserContext().findLogger(name);
+ }
+
+ /**
+@@ -751,8 +926,8 @@
+ * <p>
+ * @return enumeration of logger name strings
+ */
+- public synchronized Enumeration<String> getLoggerNames() {
+- return namedLoggers.keys();
++ public Enumeration<String> getLoggerNames() {
++ return getUserContext().getLoggerNames();
+ }
+
+ /**
+@@ -772,7 +947,7 @@
* @exception IOException if there are IO problems reading the configuration.
*/
public void readConfiguration() throws IOException, SecurityException {
@@ -15047,7 +60212,7 @@
// if a configuration class is specified, load it and use it.
String cname = System.getProperty("java.util.logging.config.class");
-@@ -830,7 +830,7 @@
+@@ -830,27 +1005,27 @@
*/
public void reset() throws SecurityException {
@@ -15056,7 +60221,45 @@
synchronized (this) {
props = new Properties();
// Since we are doing a reset we no longer want to initialize
-@@ -915,7 +915,7 @@
+ // the global handlers, if they haven't been initialized yet.
+ initializedGlobalHandlers = true;
+ }
+- Enumeration enum_ = getLoggerNames();
+- while (enum_.hasMoreElements()) {
+- String name = (String)enum_.nextElement();
+- resetLogger(name);
++ for (LoggerContext cx : contexts()) {
++ Enumeration<String> enum_ = cx.getLoggerNames();
++ while (enum_.hasMoreElements()) {
++ String name = enum_.nextElement();
++ Logger logger = cx.findLogger(name);
++ if (logger != null) {
++ resetLogger(logger);
++ }
++ }
+ }
+ }
+
+-
+ // Private method to reset an individual target logger.
+- private void resetLogger(String name) {
+- Logger logger = getLogger(name);
+- if (logger == null) {
+- return;
+- }
++ private void resetLogger(Logger logger) {
+ // Close all the Logger's handlers.
+ Handler[] targets = logger.getHandlers();
+ for (int i = 0; i < targets.length; i++) {
+@@ -862,6 +1037,7 @@
+ // Problems closing a handler? Keep going...
+ }
+ }
++ String name = logger.getName();
+ if (name != null && name.equals("")) {
+ // This is the root logger.
+ logger.setLevel(defaultLevel);
+@@ -915,7 +1091,7 @@
* @exception IOException if there are problems reading from the stream.
*/
public void readConfiguration(InputStream ins) throws IOException, SecurityException {
@@ -15065,13 +60268,27 @@
reset();
// Load the properties
-@@ -1077,7 +1077,13 @@
+@@ -1009,11 +1185,8 @@
+ if (val == null) {
+ return defaultValue;
+ }
+- try {
+- return Level.parse(val.trim());
+- } catch (Exception ex) {
+- return defaultValue;
+- }
++ Level l = Level.findLevel(val.trim());
++ return l != null ? l : defaultValue;
}
+ // Package private method to get a filter property.
+@@ -1076,8 +1249,13 @@
+ loadLoggerHandlers(rootLogger, null, "handlers");
+ }
-- private Permission ourPermission = new LoggingPermission("control", null);
+ private final Permission controlPermission = new LoggingPermission("control", null);
-+
+
+- private Permission ourPermission = new LoggingPermission("control", null);
+ void checkPermission() {
+ SecurityManager sm = System.getSecurityManager();
+ if (sm != null)
@@ -15080,7 +60297,7 @@
/**
* Check that the current context is trusted to modify the logging
-@@ -1090,11 +1096,7 @@
+@@ -1090,11 +1268,7 @@
* the caller does not have LoggingPermission("control").
*/
public void checkAccess() throws SecurityException {
@@ -15093,8 +60310,56 @@
}
// Nested class to represent a node in our tree of named loggers.
+@@ -1102,9 +1276,11 @@
+ HashMap<String,LogNode> children;
+ LoggerWeakRef loggerRef;
+ LogNode parent;
++ final LoggerContext context;
+
+- LogNode(LogNode parent) {
++ LogNode(LogNode parent, LoggerContext context) {
+ this.parent = parent;
++ this.context = context;
+ }
+
+ // Recursive method to walk the tree below a node and set
+@@ -1131,7 +1307,6 @@
+ // that we only instantiate the global handlers when they
+ // are first needed.
+ private class RootLogger extends Logger {
+-
+ private RootLogger() {
+ super("", null);
+ setLevel(defaultLevel);
+@@ -1163,7 +1338,7 @@
+ // Private method to be called when the configuration has
+ // changed to apply any level settings to any pre-existing loggers.
+ synchronized private void setLevelsOnExistingLoggers() {
+- Enumeration enum_ = props.propertyNames();
++ Enumeration<?> enum_ = props.propertyNames();
+ while (enum_.hasMoreElements()) {
+ String key = (String)enum_.nextElement();
+ if (!key.endsWith(".level")) {
+@@ -1177,11 +1352,13 @@
+ System.err.println("Bad level value for property: " + key);
+ continue;
+ }
+- Logger l = getLogger(name);
+- if (l == null) {
+- continue;
++ for (LoggerContext cx : contexts()) {
++ Logger l = cx.findLogger(name);
++ if (l == null) {
++ continue;
++ }
++ l.setLevel(level);
+ }
+- l.setLevel(level);
+ }
+ }
+
--- jdk/src/share/classes/java/util/logging/Logger.java 2012-08-10 10:27:22.000000000 -0700
-+++ jdk/src/share/classes/java/util/logging/Logger.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/java/util/logging/Logger.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
@@ -15102,7 +60367,7 @@
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
-@@ -273,13 +273,13 @@
+@@ -273,16 +273,50 @@
this.manager = manager;
}
@@ -15118,7 +60383,82 @@
}
}
-@@ -482,7 +482,7 @@
++ // Until all JDK code converted to call sun.util.logging.PlatformLogger
++ // (see 7054233), we need to determine if Logger.getLogger is to add
++ // a system logger or user logger.
++ //
++ // As an interim solution, if the immediate caller whose caller loader is
++ // null, we assume it's a system logger and add it to the system context.
++ // These system loggers only set the resource bundle to the given
++ // resource bundle name (rather than the default system resource bundle).
++ private static class SystemLoggerHelper {
++ static boolean disableCallerCheck = getBooleanProperty("sun.util.logging.disableCallerCheck");
++ private static boolean getBooleanProperty(final String key) {
++ String s = AccessController.doPrivileged(new PrivilegedAction<String>() {
++ public String run() {
++ return System.getProperty(key);
++ }
++ });
++ return Boolean.valueOf(s);
++ }
++ }
++
++ private static Logger demandLogger(String name, String resourceBundleName) {
++ LogManager manager = LogManager.getLogManager();
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null && !SystemLoggerHelper.disableCallerCheck) {
++ // 0: Reflection 1: Logger.demandLogger 2: Logger.getLogger 3: caller
++ final int SKIP_FRAMES = 3;
++ Class<?> caller = sun.reflect.Reflection.getCallerClass(SKIP_FRAMES);
++ if (caller.getClassLoader() == null) {
++ return manager.demandSystemLogger(name, resourceBundleName);
++ }
++ }
++ return manager.demandLogger(name, resourceBundleName);
++ }
++
+ /**
+ * Find or create a logger for a named subsystem. If a logger has
+ * already been created with the given name it is returned. Otherwise
+@@ -324,8 +358,7 @@
+ // would throw an IllegalArgumentException in the second call
+ // because the wrapper would result in an attempt to replace
+ // the existing "resourceBundleForFoo" with null.
+- LogManager manager = LogManager.getLogManager();
+- return manager.demandLogger(name);
++ return demandLogger(name, null);
+ }
+
+ /**
+@@ -372,8 +405,7 @@
+ // Synchronization is not required here. All synchronization for
+ // adding a new Logger object is handled by LogManager.addLogger().
+ public static Logger getLogger(String name, String resourceBundleName) {
+- LogManager manager = LogManager.getLogManager();
+- Logger result = manager.demandLogger(name);
++ Logger result = demandLogger(name, resourceBundleName);
+ if (result.resourceBundleName == null) {
+ // Note: we may get a MissingResourceException here.
+ result.setupResourceInfo(resourceBundleName);
+@@ -384,6 +416,17 @@
+ return result;
+ }
+
++ // package-private
++ // Add a platform logger to the system context.
++ // i.e. caller of sun.util.logging.PlatformLogger.getLogger
++ static Logger getPlatformLogger(String name) {
++ LogManager manager = LogManager.getLogManager();
++
++ // all loggers in the system context will default to
++ // the system logger's resource bundle
++ Logger result = manager.demandSystemLogger(name, SYSTEM_LOGGER_RB_NAME);
++ return result;
++ }
+
+ /**
+ * Create an anonymous Logger. The newly created Logger is not
+@@ -482,7 +525,7 @@
* the caller does not have LoggingPermission("control").
*/
public void setFilter(Filter newFilter) throws SecurityException {
@@ -15127,7 +60467,16 @@
filter = newFilter;
}
-@@ -1168,7 +1168,7 @@
+@@ -536,7 +579,7 @@
+ private void doLog(LogRecord lr) {
+ lr.setLoggerName(name);
+ String ebname = getEffectiveResourceBundleName();
+- if (ebname != null) {
++ if (ebname != null && !ebname.equals(SYSTEM_LOGGER_RB_NAME)) {
+ lr.setResourceBundleName(ebname);
+ lr.setResourceBundle(findResourceBundle(ebname));
+ }
+@@ -1168,7 +1211,7 @@
* the caller does not have LoggingPermission("control").
*/
public void setLevel(Level newLevel) throws SecurityException {
@@ -15136,7 +60485,7 @@
synchronized (treeLock) {
levelObject = newLevel;
updateEffectiveLevel();
-@@ -1223,7 +1223,7 @@
+@@ -1223,7 +1266,7 @@
public void addHandler(Handler handler) throws SecurityException {
// Check for null handler
handler.getClass();
@@ -15145,7 +60494,7 @@
handlers.add(handler);
}
-@@ -1237,7 +1237,7 @@
+@@ -1237,7 +1280,7 @@
* the caller does not have LoggingPermission("control").
*/
public void removeHandler(Handler handler) throws SecurityException {
@@ -15154,7 +60503,7 @@
if (handler == null) {
return;
}
-@@ -1265,7 +1265,7 @@
+@@ -1265,7 +1308,7 @@
* the caller does not have LoggingPermission("control").
*/
public void setUseParentHandlers(boolean useParentHandlers) {
@@ -15163,7 +60512,53 @@
this.useParentHandlers = useParentHandlers;
}
-@@ -1405,7 +1405,7 @@
+@@ -1285,6 +1328,23 @@
+ // May also return null if we can't find the resource bundle and
+ // there is no suitable previous cached value.
+
++ static final String SYSTEM_LOGGER_RB_NAME = "sun.util.logging.resources.logging";
++
++ private static ResourceBundle findSystemResourceBundle(final Locale locale) {
++ // the resource bundle is in a restricted package
++ return AccessController.doPrivileged(new PrivilegedAction<ResourceBundle>() {
++ public ResourceBundle run() {
++ try {
++ return ResourceBundle.getBundle(SYSTEM_LOGGER_RB_NAME,
++ locale,
++ ClassLoader.getSystemClassLoader());
++ } catch (MissingResourceException e) {
++ throw new InternalError(e.toString());
++ }
++ }
++ });
++ }
++
+ private synchronized ResourceBundle findResourceBundle(String name) {
+ // Return a null bundle for a null name.
+ if (name == null) {
+@@ -1299,6 +1359,13 @@
+ return catalog;
+ }
+
++ if (name.equals(SYSTEM_LOGGER_RB_NAME)) {
++ catalog = findSystemResourceBundle(currentLocale);
++ catalogName = name;
++ catalogLocale = currentLocale;
++ return catalog;
++ }
++
+ // Use the thread's context ClassLoader. If there isn't one,
+ // use the SystemClassloader.
+ ClassLoader cl = Thread.currentThread().getContextClassLoader();
+@@ -1315,7 +1382,6 @@
+ // ClassLoader. Drop through.
+ }
+
+-
+ // Fall back to searching up the call stack and trying each
+ // calling ClassLoader.
+ for (int ix = 0; ; ix++) {
+@@ -1405,7 +1471,7 @@
if (parent == null) {
throw new NullPointerException();
}
@@ -15172,6 +60567,87 @@
doSetParent(parent);
}
+--- jdk/src/share/classes/java/util/logging/Logging.java 2012-08-10 10:27:22.000000000 -0700
++++ jdk/src/share/classes/java/util/logging/Logging.java 2013-03-09 08:44:48.000000000 -0800
+@@ -34,15 +34,15 @@
+ *
+ * The <tt>LoggingMXBean</tt> interface provides a standard
+ * method for management access to the individual
+- * java.util.Logger objects available at runtime.
++ * {@code Logger} objects available at runtime.
+ *
+ * @author Ron Mann
+ * @author Mandy Chung
+ * @since 1.5
+ *
+ * @see javax.management
+- * @see java.util.Logger
+- * @see java.util.LogManager
++ * @see Logger
++ * @see LogManager
+ */
+ class Logging implements LoggingMXBean {
+
+@@ -75,7 +75,7 @@
+ if (level == null) {
+ return EMPTY_STRING;
+ } else {
+- return level.getName();
++ return level.getLevelName();
+ }
+ }
+
+@@ -85,7 +85,6 @@
+ }
+
+ Logger logger = logManager.getLogger(loggerName);
+-
+ if (logger == null) {
+ throw new IllegalArgumentException("Logger " + loggerName +
+ "does not exist");
+@@ -94,7 +93,10 @@
+ Level level = null;
+ if (levelName != null) {
+ // parse will throw IAE if logLevel is invalid
+- level = Level.parse(levelName);
++ level = Level.findLevel(levelName);
++ if (level == null) {
++ throw new IllegalArgumentException("Unknown level \"" + levelName + "\"");
++ }
+ }
+
+ logger.setLevel(level);
+--- jdk/src/share/classes/java/util/logging/LoggingProxyImpl.java 2012-08-10 10:27:22.000000000 -0700
++++ jdk/src/share/classes/java/util/logging/LoggingProxyImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -37,7 +37,8 @@
+
+ @Override
+ public Object getLogger(String name) {
+- return Logger.getLogger(name);
++ // always create a platform logger with the resource bundle name
++ return Logger.getPlatformLogger(name);
+ }
+
+ @Override
+@@ -92,12 +93,16 @@
+
+ @Override
+ public Object parseLevel(String levelName) {
+- return Level.parse(levelName);
++ Level level = Level.findLevel(levelName);
++ if (level == null) {
++ throw new IllegalArgumentException("Unknown level \"" + levelName + "\"");
++ }
++ return level;
+ }
+
+ @Override
+ public String getLevelName(Object level) {
+- return ((Level) level).getName();
++ return ((Level) level).getLevelName();
+ }
+
+ @Override
--- jdk/src/share/classes/java/util/logging/MemoryHandler.java 2012-08-10 10:27:22.000000000 -0700
+++ jdk/src/share/classes/java/util/logging/MemoryHandler.java 2013-01-16 08:58:10.000000000 -0800
@@ -238,7 +238,7 @@
@@ -15183,6 +60659,17 @@
pushLevel = newLevel;
}
+--- jdk/src/share/classes/java/util/logging/SimpleFormatter.java 2012-08-10 10:27:22.000000000 -0700
++++ jdk/src/share/classes/java/util/logging/SimpleFormatter.java 2013-03-09 08:44:48.000000000 -0800
+@@ -162,7 +162,7 @@
+ dat,
+ source,
+ record.getLoggerName(),
+- record.getLevel().getLocalizedName(),
++ record.getLevel().getLocalizedLevelName(),
+ message,
+ throwable);
+ }
--- jdk/src/share/classes/java/util/logging/StreamHandler.java 2012-08-10 10:27:22.000000000 -0700
+++ jdk/src/share/classes/java/util/logging/StreamHandler.java 2013-01-16 08:58:10.000000000 -0800
@@ -249,7 +249,7 @@
@@ -15404,6 +60891,347 @@
final Class<?> c =
Class.forName(className, false, contextClassLoader);
constr = c.getConstructor(new Class<?>[] {String.class});
+--- jdk/src/share/classes/javax/management/modelmbean/RequiredModelMBean.java 2012-08-10 10:27:37.000000000 -0700
++++ jdk/src/share/classes/javax/management/modelmbean/RequiredModelMBean.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2000, 2008, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -39,11 +39,13 @@
+ import java.lang.reflect.InvocationTargetException;
+
+ import java.lang.reflect.Method;
++import java.security.AccessControlContext;
++import java.security.AccessController;
++import java.security.PrivilegedAction;
+
+ import java.util.Date;
+ import java.util.HashMap;
+ import java.util.HashSet;
+-import java.util.Iterator;
+ import java.util.logging.Level;
+ import java.util.Map;
+ import java.util.Set;
+@@ -78,6 +80,8 @@
+ import javax.management.RuntimeOperationsException;
+ import javax.management.ServiceNotFoundException;
+ import javax.management.loading.ClassLoaderRepository;
++import sun.misc.JavaSecurityAccess;
++import sun.misc.SharedSecrets;
+
+ import sun.reflect.misc.MethodUtil;
+ import sun.reflect.misc.ReflectUtil;
+@@ -138,6 +142,9 @@
+ private boolean registered = false;
+ private transient MBeanServer server = null;
+
++ private final static JavaSecurityAccess javaSecurityAccess = SharedSecrets.getJavaSecurityAccess();
++ final private AccessControlContext acc = AccessController.getContext();
++
+ /*************************************/
+ /* constructors */
+ /*************************************/
+@@ -1025,10 +1032,31 @@
+
+ if (opClassName != null) {
+ try {
+- final ClassLoader targetClassLoader =
+- targetObject.getClass().getClassLoader();
+- targetClass = Class.forName(opClassName, false,
+- targetClassLoader);
++ AccessControlContext stack = AccessController.getContext();
++ final Object obj = targetObject;
++ final String className = opClassName;
++ final ClassNotFoundException[] caughtException = new ClassNotFoundException[1];
++
++ targetClass = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Class<?>>() {
++
++ @Override
++ public Class<?> run() {
++ try {
++ ReflectUtil.checkPackageAccess(className);
++ final ClassLoader targetClassLoader =
++ obj.getClass().getClassLoader();
++ return Class.forName(className, false,
++ targetClassLoader);
++ } catch (ClassNotFoundException e) {
++ caughtException[0] = e;
++ }
++ return null;
++ }
++ }, stack, acc);
++
++ if (caughtException[0] != null) {
++ throw caughtException[0];
++ }
+ } catch (ClassNotFoundException e) {
+ final String msg =
+ "class for invoke " + opName + " not found";
+@@ -1061,9 +1089,9 @@
+ return result;
+ }
+
+- private static Method resolveMethod(Class<?> targetClass,
++ private Method resolveMethod(Class<?> targetClass,
+ String opMethodName,
+- String[] sig)
++ final String[] sig)
+ throws ReflectionException {
+ final boolean tracing = MODELMBEAN_LOGGER.isLoggable(Level.FINER);
+
+@@ -1078,30 +1106,45 @@
+ if (sig == null)
+ argClasses = null;
+ else {
++ final AccessControlContext stack = AccessController.getContext();
++ final ReflectionException[] caughtException = new ReflectionException[1];
+ final ClassLoader targetClassLoader = targetClass.getClassLoader();
+ argClasses = new Class<?>[sig.length];
+- for (int i = 0; i < sig.length; i++) {
+- if (tracing) {
+- MODELMBEAN_LOGGER.logp(Level.FINER,
+- RequiredModelMBean.class.getName(),"resolveMethod",
+- "resolve type " + sig[i]);
+- }
+- argClasses[i] = (Class<?>) primitiveClassMap.get(sig[i]);
+- if (argClasses[i] == null) {
+- try {
+- argClasses[i] =
+- Class.forName(sig[i], false, targetClassLoader);
+- } catch (ClassNotFoundException e) {
++
++ javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Void>() {
++
++ @Override
++ public Void run() {
++ for (int i = 0; i < sig.length; i++) {
+ if (tracing) {
+ MODELMBEAN_LOGGER.logp(Level.FINER,
+- RequiredModelMBean.class.getName(),
+- "resolveMethod",
+- "class not found");
++ RequiredModelMBean.class.getName(),"resolveMethod",
++ "resolve type " + sig[i]);
++ }
++ argClasses[i] = (Class<?>) primitiveClassMap.get(sig[i]);
++ if (argClasses[i] == null) {
++ try {
++ ReflectUtil.checkPackageAccess(sig[i]);
++ argClasses[i] =
++ Class.forName(sig[i], false, targetClassLoader);
++ } catch (ClassNotFoundException e) {
++ if (tracing) {
++ MODELMBEAN_LOGGER.logp(Level.FINER,
++ RequiredModelMBean.class.getName(),
++ "resolveMethod",
++ "class not found");
++ }
++ final String msg = "Parameter class not found";
++ caughtException[0] = new ReflectionException(e, msg);
++ }
+ }
+- final String msg = "Parameter class not found";
+- throw new ReflectionException(e, msg);
+ }
++ return null;
+ }
++ }, stack, acc);
++
++ if (caughtException[0] != null) {
++ throw caughtException[0];
+ }
+ }
+
+@@ -1133,7 +1176,7 @@
+ /* Find a method in RequiredModelMBean as determined by the given
+ parameters. Return null if there is none, or if the parameters
+ exclude using it. Called from invoke. */
+- private static Method findRMMBMethod(String opMethodName,
++ private Method findRMMBMethod(String opMethodName,
+ Object targetObjectField,
+ String opClassName,
+ String[] sig) {
+@@ -1155,19 +1198,29 @@
+ if (opClassName == null)
+ targetClass = rmmbClass;
+ else {
+- try {
+- final ClassLoader targetClassLoader =
+- rmmbClass.getClassLoader();
+- targetClass = Class.forName(opClassName, false,
+- targetClassLoader);
+- if (!rmmbClass.isAssignableFrom(targetClass))
+- return null;
+- } catch (ClassNotFoundException e) {
+- return null;
+- }
++ AccessControlContext stack = AccessController.getContext();
++ final String className = opClassName;
++ targetClass = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Class<?>>() {
++
++ @Override
++ public Class<?> run() {
++ try {
++ ReflectUtil.checkPackageAccess(className);
++ final ClassLoader targetClassLoader =
++ rmmbClass.getClassLoader();
++ Class clz = Class.forName(className, false,
++ targetClassLoader);
++ if (!rmmbClass.isAssignableFrom(clz))
++ return null;
++ return clz;
++ } catch (ClassNotFoundException e) {
++ return null;
++ }
++ }
++ }, stack, acc);
+ }
+ try {
+- return resolveMethod(targetClass, opMethodName, sig);
++ return targetClass != null ? resolveMethod(targetClass, opMethodName, sig) : null;
+ } catch (ReflectionException e) {
+ return null;
+ }
+@@ -1177,12 +1230,35 @@
+ * Invoke the given method, and throw the somewhat unpredictable
+ * appropriate exception if the method itself gets an exception.
+ */
+- private Object invokeMethod(String opName, Method method,
+- Object targetObject, Object[] opArgs)
++ private Object invokeMethod(String opName, final Method method,
++ final Object targetObject, final Object[] opArgs)
+ throws MBeanException, ReflectionException {
+ try {
+- ReflectUtil.checkPackageAccess(method.getDeclaringClass());
+- return MethodUtil.invoke(method, targetObject, opArgs);
++ final Throwable[] caughtException = new Throwable[1];
++ AccessControlContext stack = AccessController.getContext();
++ Object rslt = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Object>() {
++
++ @Override
++ public Object run() {
++ try {
++ ReflectUtil.checkPackageAccess(method.getDeclaringClass());
++ return MethodUtil.invoke(method, targetObject, opArgs);
++ } catch (InvocationTargetException e) {
++ caughtException[0] = e;
++ } catch (IllegalAccessException e) {
++ caughtException[0] = e;
++ }
++ return null;
++ }
++ }, stack, acc);
++ if (caughtException[0] != null) {
++ if (caughtException[0] instanceof Exception) {
++ throw (Exception)caughtException[0];
++ } else if(caughtException[0] instanceof Error) {
++ throw (Error)caughtException[0];
++ }
++ }
++ return rslt;
+ } catch (RuntimeErrorException ree) {
+ throw new RuntimeOperationsException(ree,
+ "RuntimeException occurred in RequiredModelMBean "+
+@@ -1567,7 +1643,7 @@
+ }
+
+ // make sure response class matches type field
+- String respType = attrInfo.getType();
++ final String respType = attrInfo.getType();
+ if (response != null) {
+ String responseClass = response.getClass().getName();
+ if (!respType.equals(responseClass)) {
+@@ -1590,9 +1666,31 @@
+ // inequality may come from type subclassing
+ boolean subtype;
+ try {
+- ClassLoader cl =
+- response.getClass().getClassLoader();
+- Class<?> c = Class.forName(respType, true, cl);
++ final Class respClass = response.getClass();
++ final Exception[] caughException = new Exception[1];
++
++ AccessControlContext stack = AccessController.getContext();
++
++ Class c = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Class<?>>() {
++
++ @Override
++ public Class<?> run() {
++ try {
++ ReflectUtil.checkPackageAccess(respType);
++ ClassLoader cl =
++ respClass.getClassLoader();
++ return Class.forName(respType, true, cl);
++ } catch (Exception e) {
++ caughException[0] = e;
++ }
++ return null;
++ }
++ }, stack, acc);
++
++ if (caughException[0] != null) {
++ throw caughException[0];
++ }
++
+ subtype = c.isInstance(response);
+ } catch (Exception e) {
+ subtype = false;
+@@ -2745,16 +2843,37 @@
+ return MBeanServerFactory.getClassLoaderRepository(server);
+ }
+
+- private Class<?> loadClass(String className)
++ private Class<?> loadClass(final String className)
+ throws ClassNotFoundException {
+- try {
+- return Class.forName(className);
+- } catch (ClassNotFoundException e) {
+- final ClassLoaderRepository clr =
+- getClassLoaderRepository();
+- if (clr == null) throw new ClassNotFoundException(className);
+- return clr.loadClass(className);
++ AccessControlContext stack = AccessController.getContext();
++ final ClassNotFoundException[] caughtException = new ClassNotFoundException[1];
++
++ Class c = javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Class<?>>() {
++
++ @Override
++ public Class<?> run() {
++ try {
++ ReflectUtil.checkPackageAccess(className);
++ return Class.forName(className);
++ } catch (ClassNotFoundException e) {
++ final ClassLoaderRepository clr =
++ getClassLoaderRepository();
++ try {
++ if (clr == null) throw new ClassNotFoundException(className);
++ return clr.loadClass(className);
++ } catch (ClassNotFoundException ex) {
++ caughtException[0] = ex;
++ }
++ }
++ return null;
++ }
++ }, stack, acc);
++
++ if (caughtException[0] != null) {
++ throw caughtException[0];
+ }
++
++ return c;
+ }
+
+
+@@ -2878,4 +2997,4 @@
+ Void.class.getName()
+ };
+ }
+-}
++}
+\ No newline at end of file
--- jdk/src/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java 2012-08-10 10:27:41.000000000 -0700
+++ jdk/src/share/classes/javax/management/remote/rmi/RMIConnectionImpl.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -15723,6 +61551,29 @@
- }
-
}
+--- jdk/src/share/classes/javax/swing/JTable.java 2012-08-10 10:27:58.000000000 -0700
++++ jdk/src/share/classes/javax/swing/JTable.java 2013-03-09 08:44:48.000000000 -0800
+@@ -781,15 +781,11 @@
+ scrollPane.getCorner(JScrollPane.UPPER_TRAILING_CORNER);
+ if (corner == null || corner instanceof UIResource){
+ corner = null;
+- Object componentClass = UIManager.get(
+- "Table.scrollPaneCornerComponent");
+- if (componentClass instanceof Class){
+- try {
+- corner = (Component)
+- ((Class)componentClass).newInstance();
+- } catch (Exception e) {
+- // just ignore and don't set corner
+- }
++ try {
++ corner = (Component) UIManager.get(
++ "Table.scrollPaneCornerComponent");
++ } catch (Exception e) {
++ // just ignore and don't set corner
+ }
+ scrollPane.setCorner(JScrollPane.UPPER_TRAILING_CORNER,
+ corner);
--- jdk/src/share/classes/javax/swing/JViewport.java 2012-08-10 10:27:59.000000000 -0700
+++ jdk/src/share/classes/javax/swing/JViewport.java 2013-01-16 00:07:09.000000000 -0800
@@ -1586,18 +1586,10 @@
@@ -15746,8 +61597,32 @@
int x = view.getX();
int y = view.getY();
--- jdk/src/share/classes/javax/swing/RepaintManager.java 2012-08-10 10:28:00.000000000 -0700
-+++ jdk/src/share/classes/javax/swing/RepaintManager.java 2013-01-16 00:07:09.000000000 -0800
-@@ -119,11 +119,6 @@
++++ jdk/src/share/classes/javax/swing/RepaintManager.java 2013-03-09 08:44:48.000000000 -0800
+@@ -27,11 +27,12 @@
+
+ import java.awt.*;
+ import java.awt.event.*;
+-import java.awt.peer.ComponentPeer;
+-import java.awt.peer.ContainerPeer;
+ import java.awt.image.VolatileImage;
++import java.security.AccessControlContext;
+ import java.security.AccessController;
++import java.security.PrivilegedAction;
+ import java.util.*;
++import java.util.concurrent.atomic.AtomicInteger;
+ import java.applet.*;
+
+ import sun.awt.AWTAccessor;
+@@ -39,6 +40,8 @@
+ import sun.awt.DisplayChangedListener;
+ import sun.awt.SunToolkit;
+ import sun.java2d.SunGraphicsEnvironment;
++import sun.misc.JavaSecurityAccess;
++import sun.misc.SharedSecrets;
+ import sun.security.action.GetPropertyAction;
+
+ import com.sun.java.swing.SwingUtilities3;
+@@ -119,11 +122,6 @@
// Whether or not a VolatileImage should be used for double-buffered painting
static boolean volatileImageBufferEnabled = true;
/**
@@ -15759,7 +61634,17 @@
* Value of the system property awt.nativeDoubleBuffering.
*/
private static boolean nativeDoubleBuffering;
-@@ -209,13 +204,6 @@
+@@ -176,6 +174,9 @@
+ */
+ private final ProcessingRunnable processingRunnable;
+
++ private final static JavaSecurityAccess javaSecurityAccess =
++ SharedSecrets.getJavaSecurityAccess();
++
+
+ static {
+ volatileImageBufferEnabled = "true".equals(AccessController.
+@@ -209,13 +210,6 @@
((SunGraphicsEnvironment)ge).addDisplayChangedListener(
new DisplayChangedHandler());
}
@@ -15773,7 +61658,200 @@
}
/**
-@@ -997,8 +985,7 @@
+@@ -548,13 +542,26 @@
+ // This is called from the toolkit thread when awt needs to run a
+ // Runnable before we paint.
+ //
+- void nativeQueueSurfaceDataRunnable(AppContext appContext, Component c,
+- Runnable r) {
++ void nativeQueueSurfaceDataRunnable(AppContext appContext,
++ final Component c, final Runnable r)
++ {
+ synchronized(this) {
+ if (runnableList == null) {
+ runnableList = new LinkedList<Runnable>();
+ }
+- runnableList.add(r);
++ runnableList.add(new Runnable() {
++ public void run() {
++ AccessControlContext stack = AccessController.getContext();
++ AccessControlContext acc =
++ AWTAccessor.getComponentAccessor().getAccessControlContext(c);
++ javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Void>() {
++ public Void run() {
++ r.run();
++ return null;
++ }
++ }, stack, acc);
++ }
++ });
+ }
+ scheduleProcessingRunnable(appContext);
+ }
+@@ -652,9 +659,9 @@
+ * @see #addInvalidComponent
+ */
+ public void validateInvalidComponents() {
+- java.util.List<Component> ic;
++ final java.util.List<Component> ic;
+ synchronized(this) {
+- if(invalidComponents == null) {
++ if (invalidComponents == null) {
+ return;
+ }
+ ic = invalidComponents;
+@@ -662,7 +669,17 @@
+ }
+ int n = ic.size();
+ for(int i = 0; i < n; i++) {
+- ic.get(i).validate();
++ final Component c = ic.get(i);
++ AccessControlContext stack = AccessController.getContext();
++ AccessControlContext acc =
++ AWTAccessor.getComponentAccessor().getAccessControlContext(c);
++ javaSecurityAccess.doIntersectionPrivilege(
++ new PrivilegedAction<Void>() {
++ public Void run() {
++ c.validate();
++ return null;
++ }
++ }, stack, acc);
+ }
+ }
+
+@@ -740,74 +757,75 @@
+ paintDirtyRegions(tmpDirtyComponents);
+ }
+
+- private void paintDirtyRegions(Map<Component,Rectangle>
+- tmpDirtyComponents){
+- int i, count;
+- java.util.List<Component> roots;
+- Component dirtyComponent;
+-
+- count = tmpDirtyComponents.size();
+- if (count == 0) {
++ private void paintDirtyRegions(
++ final Map<Component,Rectangle> tmpDirtyComponents)
++ {
++ if (tmpDirtyComponents.isEmpty()) {
+ return;
+ }
+
+- Rectangle rect;
+- int localBoundsX = 0;
+- int localBoundsY = 0;
+- int localBoundsH;
+- int localBoundsW;
+- Enumeration keys;
+-
+- roots = new ArrayList<Component>(count);
++ final java.util.List<Component> roots =
++ new ArrayList<Component>(tmpDirtyComponents.size());
+
+ for (Component dirty : tmpDirtyComponents.keySet()) {
+ collectDirtyComponents(tmpDirtyComponents, dirty, roots);
+ }
+
+- count = roots.size();
++ final AtomicInteger count = new AtomicInteger(roots.size());
+ painting = true;
+ try {
+- for(i=0 ; i < count ; i++) {
+- dirtyComponent = roots.get(i);
+- rect = tmpDirtyComponents.get(dirtyComponent);
+- localBoundsH = dirtyComponent.getHeight();
+- localBoundsW = dirtyComponent.getWidth();
+-
+- SwingUtilities.computeIntersection(localBoundsX,
+- localBoundsY,
+- localBoundsW,
+- localBoundsH,
+- rect);
+- if (dirtyComponent instanceof JComponent) {
+- ((JComponent)dirtyComponent).paintImmediately(
+- rect.x,rect.y,rect.width, rect.height);
+- }
+- else if (dirtyComponent.isShowing()) {
+- Graphics g = JComponent.safelyGetGraphics(
+- dirtyComponent, dirtyComponent);
+- // If the Graphics goes away, it means someone disposed of
+- // the window, don't do anything.
+- if (g != null) {
+- g.setClip(rect.x, rect.y, rect.width, rect.height);
+- try {
+- dirtyComponent.paint(g);
+- } finally {
+- g.dispose();
++ for(int j = 0; j < count.get(); j++) {
++ final int i = j;
++ final Component dirtyComponent = roots.get(j);
++
++ AccessControlContext stack = AccessController.getContext();
++ AccessControlContext acc =
++ AWTAccessor.getComponentAccessor().getAccessControlContext(dirtyComponent);
++ javaSecurityAccess.doIntersectionPrivilege(new PrivilegedAction<Void>() {
++ public Void run() {
++ Rectangle rect = tmpDirtyComponents.get(dirtyComponent);
++
++ int localBoundsH = dirtyComponent.getHeight();
++ int localBoundsW = dirtyComponent.getWidth();
++ SwingUtilities.computeIntersection(0,
++ 0,
++ localBoundsW,
++ localBoundsH,
++ rect);
++ if (dirtyComponent instanceof JComponent) {
++ ((JComponent)dirtyComponent).paintImmediately(
++ rect.x,rect.y,rect.width, rect.height);
++ }
++ else if (dirtyComponent.isShowing()) {
++ Graphics g = JComponent.safelyGetGraphics(
++ dirtyComponent, dirtyComponent);
++ // If the Graphics goes away, it means someone disposed of
++ // the window, don't do anything.
++ if (g != null) {
++ g.setClip(rect.x, rect.y, rect.width, rect.height);
++ try {
++ dirtyComponent.paint(g);
++ } finally {
++ g.dispose();
++ }
++ }
++ }
++ // If the repaintRoot has been set, service it now and
++ // remove any components that are children of repaintRoot.
++ if (repaintRoot != null) {
++ adjustRoots(repaintRoot, roots, i + 1);
++ count.set(roots.size());
++ paintManager.isRepaintingRoot = true;
++ repaintRoot.paintImmediately(0, 0, repaintRoot.getWidth(),
++ repaintRoot.getHeight());
++ paintManager.isRepaintingRoot = false;
++ // Only service repaintRoot once.
++ repaintRoot = null;
+ }
++
++ return null;
+ }
+- }
+- // If the repaintRoot has been set, service it now and
+- // remove any components that are children of repaintRoot.
+- if (repaintRoot != null) {
+- adjustRoots(repaintRoot, roots, i + 1);
+- count = roots.size();
+- paintManager.isRepaintingRoot = true;
+- repaintRoot.paintImmediately(0, 0, repaintRoot.getWidth(),
+- repaintRoot.getHeight());
+- paintManager.isRepaintingRoot = false;
+- // Only service repaintRoot once.
+- repaintRoot = null;
+- }
++ }, stack, acc);
+ }
+ } finally {
+ painting = false;
+@@ -997,8 +1015,7 @@
if (image != null) {
image.flush();
}
@@ -15783,7 +61861,7 @@
volatileMap.put(config, image);
}
return image;
-@@ -1492,26 +1479,9 @@
+@@ -1492,26 +1509,9 @@
for(y=clipY, maxy = clipY + clipH; y < maxy ; y += bh) {
osg.translate(-x, -y);
osg.setClip(x,y,bw,bh);
@@ -15811,6 +61889,33 @@
osg.translate(x, y);
}
}
+--- jdk/src/share/classes/javax/swing/UIDefaults.java 2012-08-10 10:28:01.000000000 -0700
++++ jdk/src/share/classes/javax/swing/UIDefaults.java 2013-03-09 08:44:48.000000000 -0800
+@@ -677,6 +677,8 @@
+ try {
+ String className = (String)get(uiClassID);
+ if (className != null) {
++ ReflectUtil.checkPackageAccess(className);
++
+ Class cls = (Class)get(className);
+ if (cls == null) {
+ if (uiClassLoader == null) {
+--- jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusLookAndFeel.java 2012-08-10 10:28:10.000000000 -0700
++++ jdk/src/share/classes/javax/swing/plaf/nimbus/NimbusLookAndFeel.java 2013-03-09 08:44:48.000000000 -0800
+@@ -159,7 +159,12 @@
+
+ // Store Table ScrollPane Corner Component
+ uiDefaults.put("Table.scrollPaneCornerComponent",
+- TableScrollPaneCorner.class);
++ new UIDefaults.ActiveValue() {
++ @Override
++ public Object createValue(UIDefaults table) {
++ return new TableScrollPaneCorner();
++ }
++ });
+
+ // Setup the settings for ToolBarSeparator which is custom
+ // installed for Nimbus
--- jdk/src/share/classes/javax/swing/text/DefaultCaret.java 2012-08-10 10:28:13.000000000 -0700
+++ jdk/src/share/classes/javax/swing/text/DefaultCaret.java 2013-01-16 00:07:10.000000000 -0800
@@ -403,10 +403,6 @@
@@ -15844,9 +61949,112 @@
} catch (NoSuchMethodException nsme) {
cons = null;
+--- jdk/src/share/classes/sun/applet/AppletPanel.java 2012-08-10 10:28:21.000000000 -0700
++++ jdk/src/share/classes/sun/applet/AppletPanel.java 2013-03-09 08:44:48.000000000 -0800
+@@ -45,6 +45,7 @@
+ import java.util.Collections;
+ import java.util.Locale;
+ import java.util.WeakHashMap;
++import sun.awt.AWTAccessor;
+ import sun.awt.AppContext;
+ import sun.awt.EmbeddedFrame;
+ import sun.awt.SunToolkit;
+@@ -448,12 +449,12 @@
+ // to avoid deadlock.
+ try {
+ final AppletPanel p = this;
+-
+- EventQueue.invokeAndWait(new Runnable() {
+- public void run() {
+- p.validate();
+- }
+- });
++ Runnable r = new Runnable() {
++ public void run() {
++ p.validate();
++ }
++ };
++ AWTAccessor.getEventQueueAccessor().invokeAndWait(applet, r);
+ }
+ catch(InterruptedException ie) {
+ }
+@@ -478,18 +479,19 @@
+ try {
+ final AppletPanel p = this;
+ final Applet a = applet;
+-
+- EventQueue.invokeAndWait(new Runnable() {
+- public void run() {
+- p.validate();
+- a.setVisible(true);
+-
+- // Fix for BugTraq ID 4041703.
+- // Set the default focus for an applet.
+- if (hasInitialFocus())
+- setDefaultFocus();
++ Runnable r = new Runnable() {
++ public void run() {
++ p.validate();
++ a.setVisible(true);
++
++ // Fix for BugTraq ID 4041703.
++ // Set the default focus for an applet.
++ if (hasInitialFocus()) {
++ setDefaultFocus();
+ }
+- });
++ }
++ };
++ AWTAccessor.getEventQueueAccessor().invokeAndWait(applet, r);
+ }
+ catch(InterruptedException ie) {
+ }
+@@ -512,13 +514,12 @@
+ // to avoid deadlock.
+ try {
+ final Applet a = applet;
+-
+- EventQueue.invokeAndWait(new Runnable() {
+- public void run()
+- {
+- a.setVisible(false);
+- }
+- });
++ Runnable r = new Runnable() {
++ public void run() {
++ a.setVisible(false);
++ }
++ };
++ AWTAccessor.getEventQueueAccessor().invokeAndWait(applet, r);
+ }
+ catch(InterruptedException ie) {
+ }
+@@ -570,17 +571,14 @@
+ }
+ status = APPLET_DISPOSE;
+
+- try
+- {
++ try {
+ final Applet a = applet;
+-
+- EventQueue.invokeAndWait(new Runnable()
+- {
+- public void run()
+- {
++ Runnable r = new Runnable() {
++ public void run() {
+ remove(a);
+ }
+- });
++ };
++ AWTAccessor.getEventQueueAccessor().invokeAndWait(applet, r);
+ }
+ catch(InterruptedException ie)
+ {
--- jdk/src/share/classes/sun/awt/AWTAccessor.java 2012-08-10 10:28:23.000000000 -0700
-+++ jdk/src/share/classes/sun/awt/AWTAccessor.java 2013-01-16 08:58:10.000000000 -0800
-@@ -27,17 +27,18 @@
++++ jdk/src/share/classes/sun/awt/AWTAccessor.java 2013-03-09 08:44:48.000000000 -0800
+@@ -27,17 +27,19 @@
import java.awt.*;
import java.awt.KeyboardFocusManager;
@@ -15860,6 +62068,7 @@
import java.awt.peer.ComponentPeer;
-import java.security.AccessController;
++import java.lang.reflect.InvocationTargetException;
import java.security.AccessControlContext;
import java.io.File;
@@ -15867,7 +62076,7 @@
/**
* The AWTAccessor utility class.
-@@ -317,7 +318,7 @@
+@@ -317,7 +319,7 @@
void setTrayIconWindow(Window w, boolean isTrayIconWindow);
}
@@ -15876,7 +62085,7 @@
* An accessor for the AWTEvent class.
*/
public interface AWTEventAccessor {
-@@ -337,12 +338,20 @@
+@@ -337,12 +339,20 @@
*/
boolean isSystemGenerated(AWTEvent ev);
@@ -15899,7 +62108,7 @@
}
public interface InputEventAccessor {
-@@ -370,11 +379,11 @@
+@@ -370,11 +380,11 @@
Rectangle getMaximizedBounds(Frame frame);
}
@@ -15913,7 +62122,7 @@
* Indicates whether the native implementation should
* proceed with a pending focus request for the heavyweight.
*/
-@@ -384,7 +393,7 @@
+@@ -384,7 +394,7 @@
boolean focusedWindowChangeAllowed,
long time,
CausedFocusEvent.Cause cause);
@@ -15922,7 +62131,7 @@
* Delivers focus for the lightweight descendant of the heavyweight
* synchronously.
*/
-@@ -393,23 +402,28 @@
+@@ -393,23 +403,28 @@
boolean temporary,
boolean focusedWindowChangeAllowed,
long time);
@@ -15955,7 +62164,7 @@
* An accessor for the MenuComponent class.
*/
public interface MenuComponentAccessor {
-@@ -427,20 +441,42 @@
+@@ -427,20 +442,48 @@
* Returns the menu container of the menu component
*/
MenuContainer getParent(MenuComponent menuComp);
@@ -15998,10 +62207,16 @@
+ * appeared.
+ */
+ void wakeup(EventQueue eventQueue, boolean isShutdown);
++
++ /**
++ * Static in EventQueue
++ */
++ void invokeAndWait(Object source, Runnable r)
++ throws InterruptedException, InvocationTargetException;
}
/*
-@@ -478,6 +514,174 @@
+@@ -478,6 +521,174 @@
boolean isMultipleMode(FileDialog fileDialog);
}
@@ -16176,7 +62391,7 @@
/*
* Accessor instances are initialized in the static initializers of
* corresponding AWT classes by using setters defined below.
-@@ -493,6 +697,18 @@
+@@ -493,6 +704,18 @@
private static EventQueueAccessor eventQueueAccessor;
private static PopupMenuAccessor popupMenuAccessor;
private static FileDialogAccessor fileDialogAccessor;
@@ -16195,7 +62410,7 @@
/*
* Set an accessor object for the java.awt.Component class.
-@@ -683,4 +899,208 @@
+@@ -683,4 +906,208 @@
return fileDialogAccessor;
}
@@ -16405,7 +62620,7 @@
+ }
}
--- jdk/src/share/classes/sun/awt/AppContext.java 2012-08-10 10:28:23.000000000 -0700
-+++ jdk/src/share/classes/sun/awt/AppContext.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/sun/awt/AppContext.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1998, 2008, Oracle and/or its affiliates. All rights reserved.
@@ -16413,7 +62628,44 @@
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
-@@ -787,6 +787,27 @@
+@@ -327,21 +327,27 @@
+ // Before we return the main "system" AppContext, check to
+ // see if there's an AWTSecurityManager installed. If so,
+ // allow it to choose the AppContext to return.
+- SecurityManager securityManager = System.getSecurityManager();
+- if ((securityManager != null) &&
+- (securityManager instanceof AWTSecurityManager))
+- {
+- AWTSecurityManager awtSecMgr = (AWTSecurityManager)securityManager;
+- AppContext secAppContext = awtSecMgr.getAppContext();
+- if (secAppContext != null) {
+- appContext = secAppContext; // Return what we're told
+- }
++ AppContext secAppContext = getExecutionAppContext();
++ if (secAppContext != null) {
++ appContext = secAppContext; // Return what we're told
+ }
+ }
+
+ return appContext;
+ }
+
++ private final static AppContext getExecutionAppContext() {
++ SecurityManager securityManager = System.getSecurityManager();
++ if ((securityManager != null) &&
++ (securityManager instanceof AWTSecurityManager))
++ {
++ AWTSecurityManager awtSecMgr = (AWTSecurityManager) securityManager;
++ AppContext secAppContext = awtSecMgr.getAppContext();
++ return secAppContext; // Return what we're told
++ }
++ return null;
++ }
++
+ /**
+ * Returns the main ("system") AppContext.
+ *
+@@ -787,6 +793,42 @@
}
return changeSupport.getPropertyChangeListeners(propertyName);
}
@@ -16436,6 +62688,21 @@
+ public boolean isMainAppContext() {
+ return (numAppContexts == 1);
+ }
++ public Object getContext() {
++ return getAppContext();
++ }
++ public Object getExecutionContext() {
++ return getExecutionAppContext();
++ }
++ public Object get(Object context, Object key) {
++ return ((AppContext)context).get(key);
++ }
++ public void put(Object context, Object key, Object value) {
++ ((AppContext)context).put(key, value);
++ }
++ public void remove(Object context, Object key) {
++ ((AppContext)context).remove(key);
++ }
+ });
+ }
}
@@ -16543,7 +62810,7 @@
/**
* Synthesize native message to activate or deactivate EmbeddedFrame window
--- jdk/src/share/classes/sun/awt/FontConfiguration.java 2012-08-10 10:28:23.000000000 -0700
-+++ jdk/src/share/classes/sun/awt/FontConfiguration.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/awt/FontConfiguration.java 2013-03-09 08:44:53.000000000 -0800
@@ -1146,7 +1146,7 @@
*/
HashMap<String, Boolean> existsMap;
@@ -16554,7 +62821,7 @@
} else if (existsMap == null) {
existsMap = new HashMap<String, Boolean>();
--- jdk/src/share/classes/sun/awt/OSInfo.java 2012-08-10 10:28:24.000000000 -0700
-+++ jdk/src/share/classes/sun/awt/OSInfo.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/awt/OSInfo.java 2013-03-09 08:44:53.000000000 -0800
@@ -39,6 +39,7 @@
WINDOWS,
LINUX,
@@ -16953,6 +63220,498 @@
+ }
+}
+
+--- jdk/src/share/classes/sun/awt/image/ByteComponentRaster.java 2012-08-10 10:28:26.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/ByteComponentRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -198,7 +198,7 @@
+ }
+ this.bandOffset = this.dataOffsets[0];
+
+- verify(false);
++ verify();
+ }
+
+ /**
+@@ -857,38 +857,78 @@
+ }
+
+ /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
+- // Make sure data for Raster is in a legal range
+- for (int i=0; i < dataOffsets.length; i++) {
++ * Verify that the layout parameters are consistent with the data.
++ *
++ * The method verifies whether scanline stride and pixel stride do not
++ * cause an integer overflow during calculation of a position of the pixel
++ * in data buffer. It also verifies whether the data buffer has enough data
++ * to correspond the raster layout attributes.
++ *
++ * @throws RasterFormatException if an integer overflow is detected,
++ * or if data buffer has not enough capacity.
++ */
++ protected final void verify() {
++ /* Need to re-verify the dimensions since a sample model may be
++ * specified to the constructor
++ */
++ if (width <= 0 || height <= 0 ||
++ height > (Integer.MAX_VALUE / width))
++ {
++ throw new RasterFormatException("Invalid raster dimension");
++ }
++
++ for (int i = 0; i < dataOffsets.length; i++) {
+ if (dataOffsets[i] < 0) {
+- throw new RasterFormatException("Data offsets for band "+i+
+- "("+dataOffsets[i]+
+- ") must be >= 0");
++ throw new RasterFormatException("Data offsets for band " + i
++ + "(" + dataOffsets[i]
++ + ") must be >= 0");
+ }
+ }
+
+ int maxSize = 0;
+ int size;
+
+- for (int i=0; i < numDataElements; i++) {
+- size = (height-1)*scanlineStride + (width-1)*pixelStride +
+- dataOffsets[i];
++ // we can be sure that width and height are greater than 0
++ if (scanlineStride < 0 ||
++ scanlineStride > (Integer.MAX_VALUE / height))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect scanline stride: "
++ + scanlineStride);
++ }
++ int lastScanOffset = (height - 1) * scanlineStride;
++
++ if (pixelStride < 0 ||
++ pixelStride > (Integer.MAX_VALUE / width))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect pixel stride: "
++ + pixelStride);
++ }
++ int lastPixelOffset = (width - 1) * pixelStride;
++
++ if (lastPixelOffset > (Integer.MAX_VALUE - lastScanOffset)) {
++ // integer overflow
++ throw new RasterFormatException("Incorrect raster attributes");
++ }
++ lastPixelOffset += lastScanOffset;
++
++ for (int i = 0; i < numDataElements; i++) {
++ if (dataOffsets[i] > (Integer.MAX_VALUE - lastPixelOffset)) {
++ throw new RasterFormatException("Incorrect band offset: "
++ + dataOffsets[i]);
++
++ }
++
++ size = lastPixelOffset + dataOffsets[i];
++
+ if (size > maxSize) {
+ maxSize = size;
+ }
+ }
+ if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize+" )");
++ throw new RasterFormatException("Data array too small (should be "
++ + maxSize + " )");
+ }
+ }
+
+--- jdk/src/share/classes/sun/awt/image/ByteInterleavedRaster.java 2012-08-10 10:28:26.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/ByteInterleavedRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -250,7 +250,7 @@
+ }
+ }
+
+- verify(false);
++ verify();
+ }
+
+ /**
+@@ -1292,33 +1292,6 @@
+ return createCompatibleWritableRaster(width,height);
+ }
+
+- /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
+- int maxSize = 0;
+- int size;
+-
+- for (int i=0; i < numDataElements; i++) {
+- size = (height-1)*scanlineStride + (width-1)*pixelStride +
+- dataOffsets[i];
+- if (size > maxSize) {
+- maxSize = size;
+- }
+- }
+- if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize+" )");
+- }
+- }
+-
+ public String toString() {
+ return new String ("ByteInterleavedRaster: width = "+width+" height = "
+ + height
+--- jdk/src/share/classes/sun/awt/image/BytePackedRaster.java 2012-08-10 10:28:26.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/BytePackedRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1368,11 +1368,35 @@
+ throw new RasterFormatException("Data offsets must be >= 0");
+ }
+
++ /* Need to re-verify the dimensions since a sample model may be
++ * specified to the constructor
++ */
++ if (width <= 0 || height <= 0 ||
++ height > (Integer.MAX_VALUE / width))
++ {
++ throw new RasterFormatException("Invalid raster dimension");
++ }
++
++
++ /*
++ * pixelBitstride was verified in constructor, so just make
++ * sure that it is safe to multiply it by width.
++ */
++ if ((width - 1) > Integer.MAX_VALUE / pixelBitStride) {
++ throw new RasterFormatException("Invalid raster dimension");
++ }
++
++ if (scanlineStride < 0 ||
++ scanlineStride > (Integer.MAX_VALUE / height))
++ {
++ throw new RasterFormatException("Invalid scanline stride");
++ }
++
+ int lastbit = (dataBitOffset
+ + (height-1) * scanlineStride * 8
+ + (width-1) * pixelBitStride
+ + pixelBitStride - 1);
+- if (lastbit / 8 >= data.length) {
++ if (lastbit < 0 || lastbit / 8 >= data.length) {
+ throw new RasterFormatException("raster dimensions overflow " +
+ "array bounds");
+ }
+--- jdk/src/share/classes/sun/awt/image/IntegerComponentRaster.java 2012-08-10 10:28:26.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/IntegerComponentRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -208,7 +208,7 @@
+ " SinglePixelPackedSampleModel");
+ }
+
+- verify(false);
++ verify();
+ }
+
+
+@@ -629,16 +629,26 @@
+ }
+
+ /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
++ * Verify that the layout parameters are consistent with the data.
++ *
++ * The method verifies whether scanline stride and pixel stride do not
++ * cause an integer overflow during calculation of a position of the pixel
++ * in data buffer. It also verifies whether the data buffer has enough data
++ * to correspond the raster layout attributes.
++ *
++ * @throws RasterFormatException if an integer overflow is detected,
++ * or if data buffer has not enough capacity.
++ */
++ protected final void verify() {
++ /* Need to re-verify the dimensions since a sample model may be
++ * specified to the constructor
++ */
++ if (width <= 0 || height <= 0 ||
++ height > (Integer.MAX_VALUE / width))
++ {
++ throw new RasterFormatException("Invalid raster dimension");
++ }
++
+ if (dataOffsets[0] < 0) {
+ throw new RasterFormatException("Data offset ("+dataOffsets[0]+
+ ") must be >= 0");
+@@ -647,17 +657,46 @@
+ int maxSize = 0;
+ int size;
+
+- for (int i=0; i < numDataElements; i++) {
+- size = (height-1)*scanlineStride + (width-1)*pixelStride +
+- dataOffsets[i];
++ // we can be sure that width and height are greater than 0
++ if (scanlineStride < 0 ||
++ scanlineStride > (Integer.MAX_VALUE / height))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect scanline stride: "
++ + scanlineStride);
++ }
++ int lastScanOffset = (height - 1) * scanlineStride;
++
++ if (pixelStride < 0 ||
++ pixelStride > (Integer.MAX_VALUE / width))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect pixel stride: "
++ + pixelStride);
++ }
++ int lastPixelOffset = (width - 1) * pixelStride;
++
++ if (lastPixelOffset > (Integer.MAX_VALUE - lastScanOffset)) {
++ // integer overflow
++ throw new RasterFormatException("Incorrect raster attributes");
++ }
++ lastPixelOffset += lastScanOffset;
++
++ for (int i = 0; i < numDataElements; i++) {
++ if (dataOffsets[i] > (Integer.MAX_VALUE - lastPixelOffset)) {
++ throw new RasterFormatException("Incorrect band offset: "
++ + dataOffsets[i]);
++ }
++
++ size = lastPixelOffset + dataOffsets[i];
++
+ if (size > maxSize) {
+ maxSize = size;
+ }
+ }
+ if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize
+- +" but is "+data.length+" )");
++ throw new RasterFormatException("Data array too small (should be "
++ + maxSize + " )");
+ }
+ }
+
+--- jdk/src/share/classes/sun/awt/image/IntegerInterleavedRaster.java 2012-08-10 10:28:26.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/IntegerInterleavedRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -151,7 +151,7 @@
+ throw new RasterFormatException("IntegerInterleavedRasters must have"+
+ " SinglePixelPackedSampleModel");
+ }
+- verify(false);
++ verify();
+ }
+
+
+@@ -540,31 +540,6 @@
+ return createCompatibleWritableRaster(width,height);
+ }
+
+- /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
+- int maxSize = 0;
+- int size;
+-
+- size = (height-1)*scanlineStride + (width-1) + dataOffsets[0];
+- if (size > maxSize) {
+- maxSize = size;
+- }
+- if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize
+- +" but is "+data.length+" )");
+- }
+- }
+-
+ public String toString() {
+ return new String ("IntegerInterleavedRaster: width = "+width
+ +" height = " + height
+--- jdk/src/share/classes/sun/awt/image/ShortComponentRaster.java 2012-08-10 10:28:27.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/ShortComponentRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -198,7 +198,7 @@
+ }
+ this.bandOffset = this.dataOffsets[0];
+
+- verify(false);
++ verify();
+ }
+
+ /**
+@@ -791,38 +791,77 @@
+ }
+
+ /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
+- // Make sure data for Raster is in a legal range
+- for (int i=0; i < dataOffsets.length; i++) {
++ * Verify that the layout parameters are consistent with the data.
++ *
++ * The method verifies whether scanline stride and pixel stride do not
++ * cause an integer overflow during calculation of a position of the pixel
++ * in data buffer. It also verifies whether the data buffer has enough data
++ * to correspond the raster layout attributes.
++ *
++ * @throws RasterFormatException if an integer overflow is detected,
++ * or if data buffer has not enough capacity.
++ */
++ protected final void verify() {
++ /* Need to re-verify the dimensions since a sample model may be
++ * specified to the constructor
++ */
++ if (width <= 0 || height <= 0 ||
++ height > (Integer.MAX_VALUE / width))
++ {
++ throw new RasterFormatException("Invalid raster dimension");
++ }
++
++ for (int i = 0; i < dataOffsets.length; i++) {
+ if (dataOffsets[i] < 0) {
+- throw new RasterFormatException("Data offsets for band "+i+
+- "("+dataOffsets[i]+
+- ") must be >= 0");
++ throw new RasterFormatException("Data offsets for band " + i
++ + "(" + dataOffsets[i]
++ + ") must be >= 0");
+ }
+ }
+
+ int maxSize = 0;
+ int size;
+
+- for (int i=0; i < numDataElements; i++) {
+- size = (height-1)*scanlineStride + (width-1)*pixelStride +
+- dataOffsets[i];
++ // we can be sure that width and height are greater than 0
++ if (scanlineStride < 0 ||
++ scanlineStride > (Integer.MAX_VALUE / height))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect scanline stride: "
++ + scanlineStride);
++ }
++ int lastScanOffset = (height - 1) * scanlineStride;
++
++ if (pixelStride < 0 ||
++ pixelStride > (Integer.MAX_VALUE / width))
++ {
++ // integer overflow
++ throw new RasterFormatException("Incorrect pixel stride: "
++ + pixelStride);
++ }
++ int lastPixelOffset = (width - 1) * pixelStride;
++
++ if (lastPixelOffset > (Integer.MAX_VALUE - lastScanOffset)) {
++ // integer overflow
++ throw new RasterFormatException("Incorrect raster attributes");
++ }
++ lastPixelOffset += lastScanOffset;
++
++ for (int i = 0; i < numDataElements; i++) {
++ if (dataOffsets[i] > (Integer.MAX_VALUE - lastPixelOffset)) {
++ throw new RasterFormatException("Incorrect band offset: "
++ + dataOffsets[i]);
++ }
++
++ size = lastPixelOffset + dataOffsets[i];
++
+ if (size > maxSize) {
+ maxSize = size;
+ }
+ }
+ if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize+" )");
++ throw new RasterFormatException("Data array too small (should be "
++ + maxSize + " )");
+ }
+ }
+
+--- jdk/src/share/classes/sun/awt/image/ShortInterleavedRaster.java 2012-08-10 10:28:27.000000000 -0700
++++ jdk/src/share/classes/sun/awt/image/ShortInterleavedRaster.java 2013-03-09 08:44:48.000000000 -0800
+@@ -171,7 +171,7 @@
+ sampleModel);
+ }
+ this.bandOffset = this.dataOffsets[0];
+- verify(false);
++ verify();
+ }
+
+ /**
+@@ -762,33 +762,6 @@
+ return createCompatibleWritableRaster(width,height);
+ }
+
+- /**
+- * Verify that the layout parameters are consistent with
+- * the data. If strictCheck
+- * is false, this method will check for ArrayIndexOutOfBounds conditions. If
+- * strictCheck is true, this method will check for additional error
+- * conditions such as line wraparound (width of a line greater than
+- * the scanline stride).
+- * @return String Error string, if the layout is incompatible with
+- * the data. Otherwise returns null.
+- */
+- private void verify (boolean strictCheck) {
+- int maxSize = 0;
+- int size;
+-
+- for (int i=0; i < numDataElements; i++) {
+- size = (height-1)*scanlineStride + (width-1)*pixelStride +
+- dataOffsets[i];
+- if (size > maxSize) {
+- maxSize = size;
+- }
+- }
+- if (data.length < maxSize) {
+- throw new RasterFormatException("Data array too small (should be "+
+- maxSize+" )");
+- }
+- }
+-
+ public String toString() {
+ return new String ("ShortInterleavedRaster: width = "+width
+ +" height = " + height
--- jdk/src/share/classes/sun/beans/editors/BooleanEditor.java 2012-08-10 10:28:28.000000000 -0700
+++ jdk/src/share/classes/sun/beans/editors/BooleanEditor.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -17930,7 +64689,7 @@
- }
-}
--- jdk/src/share/classes/sun/font/FontUtilities.java 2012-08-10 10:28:29.000000000 -0700
-+++ jdk/src/share/classes/sun/font/FontUtilities.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/font/FontUtilities.java 2013-03-09 08:44:53.000000000 -0800
@@ -48,6 +48,8 @@
public static boolean isLinux;
@@ -17953,7 +64712,7 @@
String t2kStr = System.getProperty("sun.java2d.font.scaler");
--- jdk/src/share/classes/sun/font/SunFontManager.java 2012-08-10 10:28:31.000000000 -0700
-+++ jdk/src/share/classes/sun/font/SunFontManager.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/font/SunFontManager.java 2013-03-09 08:44:53.000000000 -0800
@@ -417,7 +417,7 @@
* registerFonts method as on-screen these JRE fonts
* always go through the T2K rasteriser.
@@ -18062,6 +64821,427 @@
// preceding line requires that this class be on the boot class path
static private final Method defineAnonymousClass;
+--- jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSImageLayout.java 2012-08-10 10:28:43.000000000 -0700
++++ jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSImageLayout.java 2013-03-09 08:44:48.000000000 -0800
+@@ -99,50 +99,75 @@
+ int offset;
+
+ Object dataArray;
+- private LCMSImageLayout(int np, int pixelType, int pixelSize) {
++ private int dataArrayLength; /* in bytes */
++
++ private LCMSImageLayout(int np, int pixelType, int pixelSize)
++ throws ImageLayoutException
++ {
+ this.pixelType = pixelType;
+ width = np;
+ height = 1;
+- nextRowOffset = np*pixelSize;
++ nextRowOffset = safeMult(pixelSize, np);
+ offset = 0;
+ }
+
+ private LCMSImageLayout(int width, int height, int pixelType,
+- int pixelSize) {
++ int pixelSize)
++ throws ImageLayoutException
++ {
+ this.pixelType = pixelType;
+ this.width = width;
+ this.height = height;
+- nextRowOffset = width*pixelSize;
++ nextRowOffset = safeMult(pixelSize, width);
+ offset = 0;
+ }
+
+
+- public LCMSImageLayout(byte[] data, int np, int pixelType, int pixelSize) {
++ public LCMSImageLayout(byte[] data, int np, int pixelType, int pixelSize)
++ throws ImageLayoutException
++ {
+ this(np, pixelType, pixelSize);
+ dataType = DT_BYTE;
+ dataArray = data;
++ dataArrayLength = data.length;
++
++ verify();
+ }
+
+- public LCMSImageLayout(short[] data, int np, int pixelType, int pixelSize) {
++ public LCMSImageLayout(short[] data, int np, int pixelType, int pixelSize)
++ throws ImageLayoutException
++ {
+ this(np, pixelType, pixelSize);
+ dataType = DT_SHORT;
+ dataArray = data;
++ dataArrayLength = 2 * data.length;
++
++ verify();
+ }
+
+- public LCMSImageLayout(int[] data, int np, int pixelType, int pixelSize) {
++ public LCMSImageLayout(int[] data, int np, int pixelType, int pixelSize)
++ throws ImageLayoutException
++ {
+ this(np, pixelType, pixelSize);
+ dataType = DT_INT;
+ dataArray = data;
++ dataArrayLength = 4 * data.length;
++
++ verify();
+ }
+
+ public LCMSImageLayout(double[] data, int np, int pixelType, int pixelSize)
++ throws ImageLayoutException
+ {
+ this(np, pixelType, pixelSize);
+ dataType = DT_DOUBLE;
+ dataArray = data;
++ dataArrayLength = 8 * data.length;
++
++ verify();
+ }
+
+- public LCMSImageLayout(BufferedImage image) {
++ public LCMSImageLayout(BufferedImage image) throws ImageLayoutException {
+ ShortComponentRaster shortRaster;
+ IntegerComponentRaster intRaster;
+ ByteComponentRaster byteRaster;
+@@ -186,9 +211,13 @@
+ case BufferedImage.TYPE_INT_ARGB:
+ case BufferedImage.TYPE_INT_BGR:
+ intRaster = (IntegerComponentRaster)image.getRaster();
+- nextRowOffset = intRaster.getScanlineStride()*4;
+- offset = intRaster.getDataOffset(0)*4;
++
++ nextRowOffset = safeMult(4, intRaster.getScanlineStride());
++
++ offset = safeMult(4, intRaster.getDataOffset(0));
++
+ dataArray = intRaster.getDataStorage();
++ dataArrayLength = 4 * intRaster.getDataStorage().length;
+ dataType = DT_INT;
+ break;
+
+@@ -196,8 +225,10 @@
+ case BufferedImage.TYPE_4BYTE_ABGR:
+ byteRaster = (ByteComponentRaster)image.getRaster();
+ nextRowOffset = byteRaster.getScanlineStride();
+- offset = byteRaster.getDataOffset(0);
++ int firstBand = image.getSampleModel().getNumBands() - 1;
++ offset = byteRaster.getDataOffset(firstBand);
+ dataArray = byteRaster.getDataStorage();
++ dataArrayLength = byteRaster.getDataStorage().length;
+ dataType = DT_BYTE;
+ break;
+
+@@ -206,17 +237,20 @@
+ nextRowOffset = byteRaster.getScanlineStride();
+ offset = byteRaster.getDataOffset(0);
+ dataArray = byteRaster.getDataStorage();
++ dataArrayLength = byteRaster.getDataStorage().length;
+ dataType = DT_BYTE;
+ break;
+
+ case BufferedImage.TYPE_USHORT_GRAY:
+ shortRaster = (ShortComponentRaster)image.getRaster();
+- nextRowOffset = shortRaster.getScanlineStride()*2;
+- offset = shortRaster.getDataOffset(0) * 2;
++ nextRowOffset = safeMult(2, shortRaster.getScanlineStride());
++ offset = safeMult(2, shortRaster.getDataOffset(0));
+ dataArray = shortRaster.getDataStorage();
++ dataArrayLength = 2 * shortRaster.getDataStorage().length;
+ dataType = DT_SHORT;
+ break;
+ }
++ verify();
+ }
+
+ public static boolean isSupported(BufferedImage image) {
+@@ -232,4 +266,45 @@
+ }
+ return false;
+ }
++
++ private void verify() throws ImageLayoutException {
++
++ if (offset < 0 || offset >= dataArrayLength) {
++ throw new ImageLayoutException("Invalid image layout");
++ }
++
++ int lastPixelOffset = safeMult(nextRowOffset, (height - 1));
++
++ lastPixelOffset = safeAdd(lastPixelOffset, (width - 1));
++
++ int off = safeAdd(offset, lastPixelOffset);
++
++ if (off < 0 || off >= dataArrayLength) {
++ throw new ImageLayoutException("Invalid image layout");
++ }
++ }
++
++ static int safeAdd(int a, int b) throws ImageLayoutException {
++ long res = a;
++ res += b;
++ if (res < Integer.MIN_VALUE || res > Integer.MAX_VALUE) {
++ throw new ImageLayoutException("Invalid image layout");
++ }
++ return (int)res;
++ }
++
++ static int safeMult(int a, int b) throws ImageLayoutException {
++ long res = a;
++ res *= b;
++ if (res < Integer.MIN_VALUE || res > Integer.MAX_VALUE) {
++ throw new ImageLayoutException("Invalid image layout");
++ }
++ return (int)res;
++ }
++
++ public static class ImageLayoutException extends Exception {
++ public ImageLayoutException(String message) {
++ super(message);
++ }
++ }
+ }
+--- jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSTransform.java 2012-08-10 10:28:43.000000000 -0700
++++ jdk/src/share/classes/sun/java2d/cmm/lcms/LCMSTransform.java 2013-03-09 08:44:48.000000000 -0800
+@@ -51,6 +51,7 @@
+ import java.awt.image.ComponentSampleModel;
+ import sun.java2d.cmm.*;
+ import sun.java2d.cmm.lcms.*;
++import static sun.java2d.cmm.lcms.LCMSImageLayout.ImageLayoutException;
+
+
+ public class LCMSTransform implements ColorTransform {
+@@ -157,8 +158,12 @@
+ if (LCMSImageLayout.isSupported(src) &&
+ LCMSImageLayout.isSupported(dst))
+ {
+- doTransform(new LCMSImageLayout(src), new LCMSImageLayout(dst));
+- return;
++ try {
++ doTransform(new LCMSImageLayout(src), new LCMSImageLayout(dst));
++ return;
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert images");
++ }
+ }
+ LCMSImageLayout srcIL, dstIL;
+ Raster srcRas = src.getRaster();
+@@ -216,14 +221,18 @@
+ }
+ int idx;
+ // TODO check for src npixels = dst npixels
+- srcIL = new LCMSImageLayout(
+- srcLine, srcLine.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumInComponents());
+- dstIL = new LCMSImageLayout(
+- dstLine, dstLine.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
++ try {
++ srcIL = new LCMSImageLayout(
++ srcLine, srcLine.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumInComponents());
++ dstIL = new LCMSImageLayout(
++ dstLine, dstLine.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert images");
++ }
+ // process each scanline
+ for (int y = 0; y < h; y++) {
+ // convert src scanline
+@@ -272,16 +281,19 @@
+ alpha = new float[w];
+ }
+ int idx;
+- srcIL = new LCMSImageLayout(
+- srcLine, srcLine.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
+-
+- dstIL = new LCMSImageLayout(
+- dstLine, dstLine.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
+-
++ try {
++ srcIL = new LCMSImageLayout(
++ srcLine, srcLine.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
++
++ dstIL = new LCMSImageLayout(
++ dstLine, dstLine.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert images");
++ }
+ // process each scanline
+ for (int y = 0; y < h; y++) {
+ // convert src scanline
+@@ -390,16 +402,19 @@
+ short[] srcLine = new short[w * srcNumBands];
+ short[] dstLine = new short[w * dstNumBands];
+ int idx;
+- srcIL = new LCMSImageLayout(
+- srcLine, srcLine.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
+-
+- dstIL = new LCMSImageLayout(
+- dstLine, dstLine.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
++ try {
++ srcIL = new LCMSImageLayout(
++ srcLine, srcLine.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
+
++ dstIL = new LCMSImageLayout(
++ dstLine, dstLine.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert rasters");
++ }
+ // process each scanline
+ for (int y = 0; y < h; y++, ys++, yd++) {
+ // get src scanline
+@@ -482,15 +497,18 @@
+ byte[] dstLine = new byte[w * dstNumBands];
+ int idx;
+ // TODO check for src npixels = dst npixels
+- srcIL = new LCMSImageLayout(
+- srcLine, srcLine.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumInComponents());
+- dstIL = new LCMSImageLayout(
+- dstLine, dstLine.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
+-
++ try {
++ srcIL = new LCMSImageLayout(
++ srcLine, srcLine.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumInComponents());
++ dstIL = new LCMSImageLayout(
++ dstLine, dstLine.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert rasters");
++ }
+ // process each scanline
+ for (int y = 0; y < h; y++, ys++, yd++) {
+ // get src scanline
+@@ -522,16 +540,20 @@
+ short[] srcLine = new short[w * srcNumBands];
+ short[] dstLine = new short[w * dstNumBands];
+ int idx;
+- srcIL = new LCMSImageLayout(
+- srcLine, srcLine.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
+-
+- dstIL = new LCMSImageLayout(
+- dstLine, dstLine.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
+
++ try {
++ srcIL = new LCMSImageLayout(
++ srcLine, srcLine.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
++
++ dstIL = new LCMSImageLayout(
++ dstLine, dstLine.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert rasters");
++ }
+ // process each scanline
+ for (int y = 0; y < h; y++, ys++, yd++) {
+ // get src scanline
+@@ -572,19 +594,23 @@
+ dst = new short [(src.length/getNumInComponents())*getNumOutComponents()];
+ }
+
+- LCMSImageLayout srcIL = new LCMSImageLayout(
+- src, src.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
+-
+- LCMSImageLayout dstIL = new LCMSImageLayout(
+- dst, dst.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
++ try {
++ LCMSImageLayout srcIL = new LCMSImageLayout(
++ src, src.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumInComponents()*2);
++
++ LCMSImageLayout dstIL = new LCMSImageLayout(
++ dst, dst.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(2), getNumOutComponents()*2);
+
+- doTransform(srcIL, dstIL);
++ doTransform(srcIL, dstIL);
+
+- return dst;
++ return dst;
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert data");
++ }
+ }
+
+ public byte[] colorConvert(byte[] src, byte[] dst) {
+@@ -592,18 +618,22 @@
+ dst = new byte [(src.length/getNumInComponents())*getNumOutComponents()];
+ }
+
+- LCMSImageLayout srcIL = new LCMSImageLayout(
+- src, src.length/getNumInComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumInComponents());
+-
+- LCMSImageLayout dstIL = new LCMSImageLayout(
+- dst, dst.length/getNumOutComponents(),
+- LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
+- LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
++ try {
++ LCMSImageLayout srcIL = new LCMSImageLayout(
++ src, src.length/getNumInComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumInComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumInComponents());
++
++ LCMSImageLayout dstIL = new LCMSImageLayout(
++ dst, dst.length/getNumOutComponents(),
++ LCMSImageLayout.CHANNELS_SH(getNumOutComponents()) |
++ LCMSImageLayout.BYTES_SH(1), getNumOutComponents());
+
+- doTransform(srcIL, dstIL);
++ doTransform(srcIL, dstIL);
+
+- return dst;
++ return dst;
++ } catch (ImageLayoutException e) {
++ throw new CMMException("Unable to convert data");
++ }
+ }
+ }
--- jdk/src/share/classes/sun/launcher/LauncherHelper.java 2012-08-10 10:28:48.000000000 -0700
+++ jdk/src/share/classes/sun/launcher/LauncherHelper.java 2013-01-16 08:58:10.000000000 -0800
@@ -48,6 +48,9 @@
@@ -18204,9 +65384,91 @@
java.launcher.jar.error2=manifest not found in {0}
java.launcher.jar.error3=no main manifest attribute, in {0}
+java.launcher.init.error=initialization error
+--- jdk/src/share/classes/sun/management/LockDataConverter.java 2012-08-10 10:28:49.000000000 -0700
++++ jdk/src/share/classes/sun/management/LockDataConverter.java 2013-03-09 08:44:48.000000000 -0800
+@@ -27,6 +27,8 @@
+
+ import java.lang.management.LockInfo;
+ import java.lang.management.ThreadInfo;
++import java.security.AccessController;
++import java.security.PrivilegedAction;
+ import javax.management.Attribute;
+ import javax.management.StandardMBean;
+ import javax.management.openmbean.CompositeData;
+@@ -40,13 +42,13 @@
+ private LockInfo lockInfo;
+ private LockInfo[] lockedSyncs;
+
+- LockDataConverter() {
++ private LockDataConverter() {
+ super(LockDataConverterMXBean.class, true);
+ this.lockInfo = null;
+ this.lockedSyncs = null;
+ }
+
+- LockDataConverter(ThreadInfo ti) {
++ private LockDataConverter(ThreadInfo ti) {
+ super(LockDataConverterMXBean.class, true);
+ this.lockInfo = ti.getLockInfo();
+ this.lockedSyncs = ti.getLockedSynchronizers();
+@@ -104,8 +106,24 @@
+ }
+
+ static CompositeData toLockInfoCompositeData(LockInfo l) {
+- LockDataConverter ldc = new LockDataConverter();
++ LockDataConverter ldc = newLockDataConverter();
+ ldc.setLockInfo(l);
+ return ldc.toLockInfoCompositeData();
+ }
++
++ static LockDataConverter newLockDataConverter() {
++ return AccessController.doPrivileged(new PrivilegedAction<LockDataConverter>() {
++ public LockDataConverter run() {
++ return new LockDataConverter();
++ }
++ });
++ }
++
++ static LockDataConverter newLockDataConverter(final ThreadInfo ti) {
++ LockDataConverter result = newLockDataConverter();
++ result.lockInfo = ti.getLockInfo();
++ result.lockedSyncs = ti.getLockedSynchronizers();
++ return result;
++ }
+ }
++
+--- jdk/src/share/classes/sun/management/ThreadInfoCompositeData.java 2012-08-10 10:28:50.000000000 -0700
++++ jdk/src/share/classes/sun/management/ThreadInfoCompositeData.java 2013-03-09 08:44:48.000000000 -0800
+@@ -85,7 +85,7 @@
+ }
+
+ // Convert MonitorInfo[] and LockInfo[] to CompositeData[]
+- LockDataConverter converter = new LockDataConverter(threadInfo);
++ LockDataConverter converter = LockDataConverter.newLockDataConverter(threadInfo);
+ CompositeData lockInfoData = converter.toLockInfoCompositeData();
+ CompositeData[] lockedSyncsData = converter.toLockedSynchronizersCompositeData();
+
+@@ -315,7 +315,7 @@
+
+ // 6.0 new attributes
+ public LockInfo lockInfo() {
+- LockDataConverter converter = new LockDataConverter();
++ LockDataConverter converter = LockDataConverter.newLockDataConverter();
+ CompositeData lockInfoData = (CompositeData) cdata.get(LOCK_INFO);
+ return converter.toLockInfo(lockInfoData);
+ }
+@@ -336,7 +336,7 @@
+ }
+
+ public LockInfo[] lockedSynchronizers() {
+- LockDataConverter converter = new LockDataConverter();
++ LockDataConverter converter = LockDataConverter.newLockDataConverter();
+ CompositeData[] lockedSyncsData =
+ (CompositeData[]) cdata.get(LOCKED_SYNCS);
+
--- jdk/src/share/classes/sun/misc/JavaAWTAccess.java 1969-12-31 16:00:00.000000000 -0800
-+++ jdk/src/share/classes/sun/misc/JavaAWTAccess.java 2013-01-16 08:58:10.000000000 -0800
-@@ -0,0 +1,34 @@
++++ jdk/src/share/classes/sun/misc/JavaAWTAccess.java 2013-03-09 08:44:48.000000000 -0800
+@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -18235,6 +65497,14 @@
+package sun.misc;
+
+public interface JavaAWTAccess {
++ public Object getContext();
++ public Object getExecutionContext();
++
++ public Object get(Object context, Object key);
++ public void put(Object context, Object key, Object value);
++ public void remove(Object context, Object key);
++
++ // convenience methods whose context is the object returned by getContext()
+ public Object get(Object key);
+ public void put(Object key, Object value);
+ public void remove(Object key);
@@ -18298,6 +65568,39 @@
+ return javaAWTAccess;
+ }
}
+--- jdk/src/share/classes/sun/net/httpserver/ChunkedInputStream.java 2012-08-10 10:28:59.000000000 -0700
++++ jdk/src/share/classes/sun/net/httpserver/ChunkedInputStream.java 2013-03-09 08:44:48.000000000 -0800
+@@ -41,8 +41,12 @@
+
+ private boolean needToReadHeader = true;
+
+- static char CR = '\r';
+- static char LF = '\n';
++ final static char CR = '\r';
++ final static char LF = '\n';
++ /*
++ * Maximum chunk header size of 2KB + 2 bytes for CRLF
++ */
++ private final static int MAX_CHUNK_HEADER_SIZE = 2050;
+
+ private int numeric (char[] arr, int nchars) throws IOException {
+ assert arr.length >= nchars;
+@@ -73,10 +77,14 @@
+ char[] len_arr = new char [16];
+ int len_size = 0;
+ boolean end_of_len = false;
++ int read = 0;
+
+ while ((c=in.read())!= -1) {
+ char ch = (char) c;
+- if (len_size == len_arr.length -1) {
++ read++;
++ if ((len_size == len_arr.length -1) ||
++ (read > MAX_CHUNK_HEADER_SIZE))
++ {
+ throw new IOException ("invalid chunk header");
+ }
+ if (gotCR) {
--- jdk/src/share/classes/sun/net/www/MessageHeader.java 2012-08-10 10:29:01.000000000 -0700
+++ jdk/src/share/classes/sun/net/www/MessageHeader.java 2013-01-16 08:58:10.000000000 -0800
@@ -138,6 +138,43 @@
@@ -18344,6 +65647,31 @@
class HeaderIterator implements Iterator<String> {
int index = 0;
int next = -1;
+--- jdk/src/share/classes/sun/net/www/http/ChunkedInputStream.java 2012-08-10 10:29:01.000000000 -0700
++++ jdk/src/share/classes/sun/net/www/http/ChunkedInputStream.java 2013-03-09 08:44:48.000000000 -0800
+@@ -125,6 +125,11 @@
+ */
+ private boolean closed;
+
++ /*
++ * Maximum chunk header size of 2KB + 2 bytes for CRLF
++ */
++ private final static int MAX_CHUNK_HEADER_SIZE = 2050;
++
+ /**
+ * State to indicate that next field should be :-
+ * chunk-size [ chunk-extension ] CRLF
+@@ -290,6 +295,10 @@
+ break;
+ }
+ pos++;
++ if ((pos - rawPos) >= MAX_CHUNK_HEADER_SIZE) {
++ error = true;
++ throw new IOException("Chunk header too long");
++ }
+ }
+ if (pos >= rawCount) {
+ return;
--- jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java 2012-08-10 10:29:02.000000000 -0700
+++ jdk/src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java 2013-01-16 08:58:10.000000000 -0800
@@ -1323,6 +1323,16 @@
@@ -18378,7 +65706,64 @@
StringTokenizer st = new StringTokenizer(statusLine);
st.nextToken();
--- jdk/src/share/classes/sun/nio/ch/DatagramChannelImpl.java 2012-08-10 10:29:03.000000000 -0700
-+++ jdk/src/share/classes/sun/nio/ch/DatagramChannelImpl.java 2013-01-16 00:07:12.000000000 -0800
++++ jdk/src/share/classes/sun/nio/ch/DatagramChannelImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -419,7 +419,7 @@
+
+ synchronized (writeLock) {
+ ensureOpen();
+- InetSocketAddress isa = (InetSocketAddress)target;
++ InetSocketAddress isa = Net.checkAddress(target);
+ InetAddress ia = isa.getAddress();
+ if (ia == null)
+ throw new IOException("Target address not resolved");
+@@ -430,9 +430,9 @@
+ SecurityManager sm = System.getSecurityManager();
+ if (sm != null) {
+ if (ia.isMulticastAddress()) {
+- sm.checkMulticast(isa.getAddress());
++ sm.checkMulticast(ia);
+ } else {
+- sm.checkConnect(isa.getAddress().getHostAddress(),
++ sm.checkConnect(ia.getHostAddress(),
+ isa.getPort());
+ }
+ }
+@@ -452,7 +452,7 @@
+ return 0;
+ writerThread = NativeThread.current();
+ do {
+- n = send(fd, src, target);
++ n = send(fd, src, isa);
+ } while ((n == IOStatus.INTERRUPTED) && isOpen());
+
+ synchronized (stateLock) {
+@@ -469,7 +469,7 @@
+ }
+ }
+
+- private int send(FileDescriptor fd, ByteBuffer src, SocketAddress target)
++ private int send(FileDescriptor fd, ByteBuffer src, InetSocketAddress target)
+ throws IOException
+ {
+ if (src instanceof DirectBuffer)
+@@ -500,7 +500,7 @@
+ }
+
+ private int sendFromNativeBuffer(FileDescriptor fd, ByteBuffer bb,
+- SocketAddress target)
++ InetSocketAddress target)
+ throws IOException
+ {
+ int pos = bb.position();
+@@ -512,7 +512,7 @@
+ int written;
+ try {
+ written = send0(preferIPv6, fd, ((DirectBuffer)bb).address() + pos,
+- rem, target);
++ rem, target.getAddress(), target.getPort());
+ } catch (PortUnreachableException pue) {
+ if (isConnected())
+ throw pue;
@@ -749,8 +749,7 @@
if (sm != null)
sm.checkConnect(isa.getAddress().getHostAddress(),
@@ -18389,7 +65774,7 @@
remoteAddress = null;
state = ST_UNCONNECTED;
-@@ -1085,7 +1084,7 @@
+@@ -1085,15 +1084,15 @@
private static native void initIDs();
@@ -18398,8 +65783,18 @@
throws IOException;
private native int receive0(FileDescriptor fd, long address, int len,
+ boolean connected)
+ throws IOException;
+
+- private native int send0(boolean preferIPv6, FileDescriptor fd, long address, int len,
+- SocketAddress sa)
++ private native int send0(boolean preferIPv6, FileDescriptor fd, long address,
++ int len, InetAddress addr, int port)
+ throws IOException;
+
+ static {
--- jdk/src/share/classes/sun/print/PSPrinterJob.java 2012-08-10 10:29:08.000000000 -0700
-+++ jdk/src/share/classes/sun/print/PSPrinterJob.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/print/PSPrinterJob.java 2013-03-09 08:44:53.000000000 -0800
@@ -1537,7 +1537,7 @@
}
@@ -18409,6 +65804,87 @@
execCmd = new String[ncomps];
execCmd[n++] = "/usr/bin/lpr";
if ((pFlags & PRINTER) != 0) {
+--- jdk/src/share/classes/sun/reflect/misc/MethodUtil.java 2012-08-10 10:29:15.000000000 -0700
++++ jdk/src/share/classes/sun/reflect/misc/MethodUtil.java 2013-03-09 08:44:48.000000000 -0800
+@@ -256,6 +256,12 @@
+ public static Object invoke(Method m, Object obj, Object[] params)
+ throws InvocationTargetException, IllegalAccessException {
+ if (m.getDeclaringClass().equals(AccessController.class) ||
++ (m.getDeclaringClass().equals(java.lang.invoke.MethodHandles.class)
++ && m.getName().equals("lookup")) ||
++ (m.getDeclaringClass().equals(java.lang.invoke.MethodHandles.Lookup.class)
++ && (m.getName().startsWith("find") ||
++ m.getName().startsWith("bind") ||
++ m.getName().startsWith("unreflect"))) ||
+ m.getDeclaringClass().equals(Method.class))
+ throw new InvocationTargetException(
+ new UnsupportedOperationException("invocation not supported"));
+--- jdk/src/share/classes/sun/reflect/misc/ReflectUtil.java 2012-08-10 10:29:15.000000000 -0700
++++ jdk/src/share/classes/sun/reflect/misc/ReflectUtil.java 2013-03-09 08:44:48.000000000 -0800
+@@ -144,4 +144,63 @@
+ }
+ return true;
+ }
++
++ // Returns true if p is an ancestor of cl i.e. class loader 'p' can
++ // be found in the cl's delegation chain
++ private static boolean isAncestor(ClassLoader p, ClassLoader cl) {
++ ClassLoader acl = cl;
++ do {
++ acl = acl.getParent();
++ if (p == acl) {
++ return true;
++ }
++ } while (acl != null);
++ return false;
++ }
++
++ /**
++ * Returns true if package access check is needed for reflective
++ * access from a class loader 'from' to classes or members in
++ * a class defined by class loader 'to'. This method returns true
++ * if 'from' is not the same as or an ancestor of 'to'. All code
++ * in a system domain are granted with all permission and so this
++ * method returns false if 'from' class loader is a class loader
++ * loading system classes. On the other hand, if a class loader
++ * attempts to access system domain classes, it requires package
++ * access check and this method will return true.
++ */
++ public static boolean needsPackageAccessCheck(ClassLoader from, ClassLoader to) {
++ if (from == null || from == to)
++ return false;
++
++ if (to == null)
++ return true;
++
++ return !isAncestor(from, to);
++ }
++
++ /**
++ * Access check on the interfaces that a proxy class implements and throw
++ * {@code SecurityException} if it accesses a restricted package.
++ *
++ * @param ccl the caller's class loader
++ * @param interfaces the list of interfaces that a proxy class implements
++ *
++ * @see Proxy#checkProxyAccess
++ */
++ public static void checkProxyPackageAccess(ClassLoader ccl,
++ Class<?>... interfaces)
++ {
++ SecurityManager sm = System.getSecurityManager();
++ if (sm != null) {
++ for (Class<?> intf : interfaces) {
++ ClassLoader cl = intf.getClassLoader();
++ if (needsPackageAccessCheck(ccl, cl)) {
++ checkPackageAccess(intf);
++ }
++ }
++ }
++ }
++
++ public static final String PROXY_PACKAGE = "com.sun.proxy";
+ }
--- jdk/src/share/classes/sun/rmi/registry/RegistryImpl.java 2012-08-10 10:29:15.000000000 -0700
+++ jdk/src/share/classes/sun/rmi/registry/RegistryImpl.java 2013-01-16 08:58:10.000000000 -0800
@@ -405,7 +405,8 @@
@@ -18421,8 +65897,84 @@
perms.add(new FilePermission("<<ALL FILES>>", "read"));
+--- jdk/src/share/classes/sun/rmi/transport/proxy/CGIHandler.java 2012-08-10 10:29:17.000000000 -0700
++++ jdk/src/share/classes/sun/rmi/transport/proxy/CGIHandler.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -150,7 +150,7 @@
+ returnServerError(e.getMessage());
+ }
+ else
+- returnClientError("invalid command: " + command);
++ returnClientError("invalid command.");
+ } catch (Exception e) {
+ returnServerError("internal error: " + e.getMessage());
+ }
+@@ -217,7 +217,7 @@
+ try {
+ port = Integer.parseInt(param);
+ } catch (NumberFormatException e) {
+- throw new CGIClientException("invalid port number: " + param);
++ throw new CGIClientException("invalid port number.");
+ }
+ if (port <= 0 || port > 0xFFFF)
+ throw new CGIClientException("invalid port: " + port);
+@@ -285,11 +285,14 @@
+ "unexpected EOF reading server response");
+
+ if (line.toLowerCase().startsWith(key)) {
+- if (contentLengthFound)
+- ; // what would we want to do in this case??
+- responseContentLength =
+- Integer.parseInt(line.substring(key.length()).trim());
+- contentLengthFound = true;
++ if (contentLengthFound) {
++ throw new CGIServerException(
++ "Multiple Content-length entries found.");
++ } else {
++ responseContentLength =
++ Integer.parseInt(line.substring(key.length()).trim());
++ contentLengthFound = true;
++ }
+ }
+ } while ((line.length() != 0) &&
+ (line.charAt(0) != '\r') && (line.charAt(0) != '\n'));
+--- jdk/src/share/classes/sun/rmi/transport/proxy/HttpInputStream.java 2012-08-10 10:29:17.000000000 -0700
++++ jdk/src/share/classes/sun/rmi/transport/proxy/HttpInputStream.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2001, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -70,11 +70,14 @@
+ throw new EOFException();
+
+ if (line.toLowerCase().startsWith(key)) {
+- if (contentLengthFound)
+- ; // what would we want to do in this case??
+- bytesLeft =
+- Integer.parseInt(line.substring(key.length()).trim());
+- contentLengthFound = true;
++ if (contentLengthFound) {
++ throw new IOException(
++ "Multiple Content-length entries found.");
++ } else {
++ bytesLeft =
++ Integer.parseInt(line.substring(key.length()).trim());
++ contentLengthFound = true;
++ }
+ }
+
+ // The idea here is to go past the first blank line.
--- jdk/src/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java 2012-08-10 10:29:20.000000000 -0700
-+++ jdk/src/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/security/jgss/wrapper/SunNativeProvider.java 2013-03-09 08:44:53.000000000 -0800
@@ -83,7 +83,8 @@
String osname = System.getProperty("os.name");
if (osname.startsWith("SunOS")) {
@@ -18433,6 +65985,38 @@
gssLibs = new String[]{
"libgssapi.so",
"libgssapi_krb5.so",
+--- jdk/src/share/classes/sun/security/pkcs11/P11KeyAgreement.java 2012-08-10 10:29:23.000000000 -0700
++++ jdk/src/share/classes/sun/security/pkcs11/P11KeyAgreement.java 2013-03-09 08:44:48.000000000 -0800
+@@ -37,6 +37,7 @@
+ import static sun.security.pkcs11.TemplateManager.*;
+ import sun.security.pkcs11.wrapper.*;
+ import static sun.security.pkcs11.wrapper.PKCS11Constants.*;
++import sun.security.util.KeyUtil;
+
+ /**
+ * KeyAgreement implementation class. This class currently supports
+@@ -134,6 +135,10 @@
+ BigInteger p, g, y;
+ if (key instanceof DHPublicKey) {
+ DHPublicKey dhKey = (DHPublicKey)key;
++
++ // validate the Diffie-Hellman public key
++ KeyUtil.validate(dhKey);
++
+ y = dhKey.getY();
+ DHParameterSpec params = dhKey.getParams();
+ p = params.getP();
+@@ -145,6 +150,10 @@
+ try {
+ DHPublicKeySpec spec = (DHPublicKeySpec)kf.engineGetKeySpec
+ (key, DHPublicKeySpec.class);
++
++ // validate the Diffie-Hellman public key
++ KeyUtil.validate(spec);
++
+ y = spec.getY();
+ p = spec.getP();
+ g = spec.getG();
--- jdk/src/share/classes/sun/security/provider/SecureRandom.java 2012-08-10 10:29:25.000000000 -0700
+++ jdk/src/share/classes/sun/security/provider/SecureRandom.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -18603,6 +66187,877 @@
}
continue; // try next cert
}
+--- jdk/src/share/classes/sun/security/ssl/CipherBox.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/CipherBox.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -393,7 +393,8 @@
+ * uniformly use the bad_record_mac alert to hide the specific type of
+ * the error.
+ */
+- int decrypt(byte[] buf, int offset, int len) throws BadPaddingException {
++ int decrypt(byte[] buf, int offset, int len,
++ int tagLen) throws BadPaddingException {
+ if (cipher == null) {
+ return len;
+ }
+@@ -417,9 +418,10 @@
+ System.out);
+ } catch (IOException e) { }
+ }
++
+ if (blockSize != 0) {
+- newLen = removePadding(buf, offset, newLen,
+- blockSize, protocolVersion);
++ newLen = removePadding(
++ buf, offset, newLen, tagLen, blockSize, protocolVersion);
+
+ if (protocolVersion.v >= ProtocolVersion.TLS11.v) {
+ if (newLen < blockSize) {
+@@ -449,7 +451,7 @@
+ *
+ * @see decrypt(byte[], int, int)
+ */
+- int decrypt(ByteBuffer bb) throws BadPaddingException {
++ int decrypt(ByteBuffer bb, int tagLen) throws BadPaddingException {
+
+ int len = bb.remaining();
+
+@@ -472,7 +474,6 @@
+ }
+
+ if (debug != null && Debug.isOn("plaintext")) {
+- bb.position(pos);
+ try {
+ HexDumpEncoder hd = new HexDumpEncoder();
+
+@@ -480,7 +481,8 @@
+ "Padded plaintext after DECRYPTION: len = "
+ + newLen);
+
+- hd.encodeBuffer(bb, System.out);
++ hd.encodeBuffer(
++ (ByteBuffer)bb.duplicate().position(pos), System.out);
+ } catch (IOException e) { }
+ }
+
+@@ -489,7 +491,8 @@
+ */
+ if (blockSize != 0) {
+ bb.position(pos);
+- newLen = removePadding(bb, blockSize, protocolVersion);
++ newLen = removePadding(
++ bb, tagLen, blockSize, protocolVersion);
+
+ if (protocolVersion.v >= ProtocolVersion.TLS11.v) {
+ if (newLen < blockSize) {
+@@ -591,6 +594,65 @@
+ return newlen;
+ }
+
++ /*
++ * A constant-time check of the padding.
++ *
++ * NOTE that we are checking both the padding and the padLen bytes here.
++ *
++ * The caller MUST ensure that the len parameter is a positive number.
++ */
++ private static int[] checkPadding(
++ byte[] buf, int offset, int len, byte pad) {
++
++ if (len <= 0) {
++ throw new RuntimeException("padding len must be positive");
++ }
++
++ // An array of hits is used to prevent Hotspot optimization for
++ // the purpose of a constant-time check.
++ int[] results = {0, 0}; // {missed #, matched #}
++ for (int i = 0; i <= 256;) {
++ for (int j = 0; j < len && i <= 256; j++, i++) { // j <= i
++ if (buf[offset + j] != pad) {
++ results[0]++; // mismatched padding data
++ } else {
++ results[1]++; // matched padding data
++ }
++ }
++ }
++
++ return results;
++ }
++
++ /*
++ * A constant-time check of the padding.
++ *
++ * NOTE that we are checking both the padding and the padLen bytes here.
++ *
++ * The caller MUST ensure that the bb parameter has remaining.
++ */
++ private static int[] checkPadding(ByteBuffer bb, byte pad) {
++
++ if (!bb.hasRemaining()) {
++ throw new RuntimeException("hasRemaining() must be positive");
++ }
++
++ // An array of hits is used to prevent Hotspot optimization for
++ // the purpose of a constant-time check.
++ int[] results = {0, 0}; // {missed #, matched #}
++ bb.mark();
++ for (int i = 0; i <= 256; bb.reset()) {
++ for (; bb.hasRemaining() && i <= 256; i++) {
++ if (bb.get() != pad) {
++ results[0]++; // mismatched padding data
++ } else {
++ results[1]++; // matched padding data
++ }
++ }
++ }
++
++ return results;
++ }
+
+ /*
+ * Typical TLS padding format for a 64 bit block cipher is as follows:
+@@ -603,86 +665,95 @@
+ * as it makes the data a multiple of the block size
+ */
+ private static int removePadding(byte[] buf, int offset, int len,
+- int blockSize, ProtocolVersion protocolVersion)
+- throws BadPaddingException {
++ int tagLen, int blockSize,
++ ProtocolVersion protocolVersion) throws BadPaddingException {
++
+ // last byte is length byte (i.e. actual padding length - 1)
+ int padOffset = offset + len - 1;
+- int pad = buf[padOffset] & 0x0ff;
+-
+- int newlen = len - (pad + 1);
+- if (newlen < 0) {
+- throw new BadPaddingException("Padding length invalid: " + pad);
+- }
++ int padLen = buf[padOffset] & 0xFF;
+
++ int newLen = len - (padLen + 1);
++ if ((newLen - tagLen) < 0) {
++ // If the buffer is not long enough to contain the padding plus
++ // a MAC tag, do a dummy constant-time padding check.
++ //
++ // Note that it is a dummy check, so we won't care about what is
++ // the actual padding data.
++ checkPadding(buf, offset, len, (byte)(padLen & 0xFF));
++
++ throw new BadPaddingException("Invalid Padding length: " + padLen);
++ }
++
++ // The padding data should be filled with the padding length value.
++ int[] results = checkPadding(buf, offset + newLen,
++ padLen + 1, (byte)(padLen & 0xFF));
+ if (protocolVersion.v >= ProtocolVersion.TLS10.v) {
+- for (int i = 1; i <= pad; i++) {
+- int val = buf[padOffset - i] & 0xff;
+- if (val != pad) {
+- throw new BadPaddingException
+- ("Invalid TLS padding: " + val);
+- }
++ if (results[0] != 0) { // padding data has invalid bytes
++ throw new BadPaddingException("Invalid TLS padding data");
+ }
+ } else { // SSLv3
+ // SSLv3 requires 0 <= length byte < block size
+ // some implementations do 1 <= length byte <= block size,
+ // so accept that as well
+ // v3 does not require any particular value for the other bytes
+- if (pad > blockSize) {
+- throw new BadPaddingException("Invalid SSLv3 padding: " + pad);
++ if (padLen > blockSize) {
++ throw new BadPaddingException("Invalid SSLv3 padding");
+ }
+ }
+- return newlen;
++ return newLen;
+ }
+
+ /*
+ * Position/limit is equal the removed padding.
+ */
+ private static int removePadding(ByteBuffer bb,
+- int blockSize, ProtocolVersion protocolVersion)
+- throws BadPaddingException {
++ int tagLen, int blockSize,
++ ProtocolVersion protocolVersion) throws BadPaddingException {
+
+ int len = bb.remaining();
+ int offset = bb.position();
+
+ // last byte is length byte (i.e. actual padding length - 1)
+ int padOffset = offset + len - 1;
+- int pad = bb.get(padOffset) & 0x0ff;
++ int padLen = bb.get(padOffset) & 0xFF;
+
+- int newlen = len - (pad + 1);
+- if (newlen < 0) {
+- throw new BadPaddingException("Padding length invalid: " + pad);
+- }
+-
+- /*
+- * We could zero the padding area, but not much useful
+- * information there.
+- */
++ int newLen = len - (padLen + 1);
++ if ((newLen - tagLen) < 0) {
++ // If the buffer is not long enough to contain the padding plus
++ // a MAC tag, do a dummy constant-time padding check.
++ //
++ // Note that it is a dummy check, so we won't care about what is
++ // the actual padding data.
++ checkPadding(bb.duplicate(), (byte)(padLen & 0xFF));
++
++ throw new BadPaddingException("Invalid Padding length: " + padLen);
++ }
++
++ // The padding data should be filled with the padding length value.
++ int[] results = checkPadding(
++ (ByteBuffer)bb.duplicate().position(offset + newLen),
++ (byte)(padLen & 0xFF));
+ if (protocolVersion.v >= ProtocolVersion.TLS10.v) {
+- bb.put(padOffset, (byte)0); // zero the padding.
+- for (int i = 1; i <= pad; i++) {
+- int val = bb.get(padOffset - i) & 0xff;
+- if (val != pad) {
+- throw new BadPaddingException
+- ("Invalid TLS padding: " + val);
+- }
++ if (results[0] != 0) { // padding data has invalid bytes
++ throw new BadPaddingException("Invalid TLS padding data");
+ }
+ } else { // SSLv3
+ // SSLv3 requires 0 <= length byte < block size
+ // some implementations do 1 <= length byte <= block size,
+ // so accept that as well
+ // v3 does not require any particular value for the other bytes
+- if (pad > blockSize) {
+- throw new BadPaddingException("Invalid SSLv3 padding: " + pad);
++ if (padLen > blockSize) {
++ throw new BadPaddingException("Invalid SSLv3 padding");
+ }
+ }
+
+ /*
+ * Reset buffer limit to remove padding.
+ */
+- bb.position(offset + newlen);
+- bb.limit(offset + newlen);
++ bb.position(offset + newLen);
++ bb.limit(offset + newLen);
+
+- return newlen;
++ return newLen;
+ }
+
+ /*
+@@ -709,4 +780,45 @@
+ boolean isCBCMode() {
+ return isCBCMode;
+ }
++
++ /**
++ * Is the cipher null?
++ *
++ * @return true if the cipher is null, false otherwise.
++ */
++ boolean isNullCipher() {
++ return cipher == null;
++ }
++
++ /**
++ * Sanity check the length of a fragment before decryption.
++ *
++ * In CBC mode, check that the fragment length is one or multiple times
++ * of the block size of the cipher suite, and is at least one (one is the
++ * smallest size of padding in CBC mode) bigger than the tag size of the
++ * MAC algorithm except the explicit IV size for TLS 1.1 or later.
++ *
++ * In non-CBC mode, check that the fragment length is not less than the
++ * tag size of the MAC algorithm.
++ *
++ * @return true if the length of a fragment matches above requirements
++ */
++ boolean sanityCheck(int tagLen, int fragmentLen) {
++ if (!isCBCMode) {
++ return fragmentLen >= tagLen;
++ }
++
++ if ((fragmentLen % blockSize) == 0) {
++ int minimal = tagLen + 1;
++ minimal = (minimal >= blockSize) ? minimal : blockSize;
++ if (protocolVersion.v >= ProtocolVersion.TLS11.v) {
++ minimal += blockSize; // plus the size of the explicit IV
++ }
++
++ return (fragmentLen >= minimal);
++ }
++
++ return false;
++ }
++
+ }
+--- jdk/src/share/classes/sun/security/ssl/CipherSuite.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/CipherSuite.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -534,9 +534,18 @@
+ // size of the MAC value (and MAC key) in bytes
+ final int size;
+
+- MacAlg(String name, int size) {
++ // block size of the underlying hash algorithm
++ final int hashBlockSize;
++
++ // minimal padding size of the underlying hash algorithm
++ final int minimalPaddingSize;
++
++ MacAlg(String name, int size,
++ int hashBlockSize, int minimalPaddingSize) {
+ this.name = name;
+ this.size = size;
++ this.hashBlockSize = hashBlockSize;
++ this.minimalPaddingSize = minimalPaddingSize;
+ }
+
+ /**
+@@ -580,11 +589,11 @@
+ new BulkCipher(CIPHER_AES, 32, 16, true);
+
+ // MACs
+- final static MacAlg M_NULL = new MacAlg("NULL", 0);
+- final static MacAlg M_MD5 = new MacAlg("MD5", 16);
+- final static MacAlg M_SHA = new MacAlg("SHA", 20);
+- final static MacAlg M_SHA256 = new MacAlg("SHA256", 32);
+- final static MacAlg M_SHA384 = new MacAlg("SHA384", 48);
++ final static MacAlg M_NULL = new MacAlg("NULL", 0, 0, 0);
++ final static MacAlg M_MD5 = new MacAlg("MD5", 16, 64, 9);
++ final static MacAlg M_SHA = new MacAlg("SHA", 20, 64, 9);
++ final static MacAlg M_SHA256 = new MacAlg("SHA256", 32, 64, 9);
++ final static MacAlg M_SHA384 = new MacAlg("SHA384", 48, 128, 17);
+
+ /**
+ * PRFs (PseudoRandom Function) from TLS specifications.
+--- jdk/src/share/classes/sun/security/ssl/ClientHandshaker.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/ClientHandshaker.java 2013-03-09 08:44:48.000000000 -0800
+@@ -128,9 +128,8 @@
+ * in the constructor.
+ */
+ void processMessage(byte type, int messageLen) throws IOException {
+- if (state > type
+- && (type != HandshakeMessage.ht_hello_request
+- && state != HandshakeMessage.ht_client_hello)) {
++ if (state >= type
++ && (type != HandshakeMessage.ht_hello_request)) {
+ throw new SSLProtocolException(
+ "Handshake message sequence violation, " + type);
+ }
+@@ -193,8 +192,12 @@
+ }
+ break;
+ case K_DH_ANON:
+- this.serverKeyExchange(new DH_ServerKeyExchange(
++ try {
++ this.serverKeyExchange(new DH_ServerKeyExchange(
+ input, protocolVersion));
++ } catch (GeneralSecurityException e) {
++ throwSSLException("Server key", e);
++ }
+ break;
+ case K_DHE_DSS:
+ case K_DHE_RSA:
+@@ -922,7 +925,7 @@
+ case K_DHE_RSA:
+ case K_DHE_DSS:
+ case K_DH_ANON:
+- preMasterSecret = dh.getAgreedSecret(serverDH);
++ preMasterSecret = dh.getAgreedSecret(serverDH, true);
+ break;
+ case K_ECDHE_RSA:
+ case K_ECDHE_ECDSA:
+--- jdk/src/share/classes/sun/security/ssl/DHClientKeyExchange.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/DHClientKeyExchange.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1997, 2007, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -29,7 +29,7 @@
+ import java.io.IOException;
+ import java.io.PrintStream;
+ import java.math.BigInteger;
+-
++import javax.net.ssl.SSLHandshakeException;
+
+ /*
+ * Message used by clients to send their Diffie-Hellman public
+@@ -50,7 +50,7 @@
+ private byte dh_Yc[]; // 1 to 2^16 -1 bytes
+
+ BigInteger getClientPublicKey() {
+- return new BigInteger(1, dh_Yc);
++ return dh_Yc == null ? null : new BigInteger(1, dh_Yc);
+ }
+
+ /*
+@@ -72,7 +72,14 @@
+ * but that's what the protocol spec requires.)
+ */
+ DHClientKeyExchange(HandshakeInStream input) throws IOException {
+- dh_Yc = input.getBytes16();
++ if (input.available() >= 2) {
++ dh_Yc = input.getBytes16();
++ } else {
++ // currently, we don't support cipher suites that requires
++ // implicit public key of client.
++ throw new SSLHandshakeException(
++ "Unsupported implicit client DiffieHellman public key");
++ }
+ }
+
+ int messageLength() {
+@@ -84,7 +91,9 @@
+ }
+
+ void send(HandshakeOutStream s) throws IOException {
+- s.putBytes16(dh_Yc);
++ if (dh_Yc != null && dh_Yc.length != 0) {
++ s.putBytes16(dh_Yc);
++ }
+ }
+
+ void print(PrintStream s) throws IOException {
+--- jdk/src/share/classes/sun/security/ssl/DHCrypt.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/DHCrypt.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -28,12 +28,15 @@
+
+ import java.math.BigInteger;
+ import java.security.*;
+-
++import java.io.IOException;
++import javax.net.ssl.SSLHandshakeException;
+ import javax.crypto.SecretKey;
+ import javax.crypto.KeyAgreement;
+ import javax.crypto.interfaces.DHPublicKey;
+ import javax.crypto.spec.*;
+
++import sun.security.util.KeyUtil;
++
+ /**
+ * This class implements the Diffie-Hellman key exchange algorithm.
+ * D-H means combining your private key with your partners public key to
+@@ -54,7 +57,8 @@
+ * . if we are server, call DHCrypt(keyLength,random). This generates
+ * an ephemeral keypair of the request length.
+ * . if we are client, call DHCrypt(modulus, base, random). This
+- * generates an ephemeral keypair using the parameters specified by the server.
++ * generates an ephemeral keypair using the parameters specified by
++ * the server.
+ * . send parameters and public value to remote peer
+ * . receive peers ephemeral public key
+ * . call getAgreedSecret() to calculate the shared secret
+@@ -83,6 +87,9 @@
+ // public component of our key, X = (g ^ x) mod p
+ private BigInteger publicValue; // X (aka y)
+
++ // the times to recove from failure if public key validation
++ private static int MAX_FAILOVER_TIMES = 2;
++
+ /**
+ * Generate a Diffie-Hellman keypair of the specified size.
+ */
+@@ -90,9 +97,12 @@
+ try {
+ KeyPairGenerator kpg = JsseJce.getKeyPairGenerator("DiffieHellman");
+ kpg.initialize(keyLength, random);
+- KeyPair kp = kpg.generateKeyPair();
+- privateKey = kp.getPrivate();
+- DHPublicKeySpec spec = getDHPublicKeySpec(kp.getPublic());
++
++ DHPublicKeySpec spec = generateDHPublicKeySpec(kpg);
++ if (spec == null) {
++ throw new RuntimeException("Could not generate DH keypair");
++ }
++
+ publicValue = spec.getY();
+ modulus = spec.getP();
+ base = spec.getG();
+@@ -115,20 +125,25 @@
+ KeyPairGenerator kpg = JsseJce.getKeyPairGenerator("DiffieHellman");
+ DHParameterSpec params = new DHParameterSpec(modulus, base);
+ kpg.initialize(params, random);
+- KeyPair kp = kpg.generateKeyPair();
+- privateKey = kp.getPrivate();
+- DHPublicKeySpec spec = getDHPublicKeySpec(kp.getPublic());
++
++ DHPublicKeySpec spec = generateDHPublicKeySpec(kpg);
++ if (spec == null) {
++ throw new RuntimeException("Could not generate DH keypair");
++ }
++
+ publicValue = spec.getY();
+ } catch (GeneralSecurityException e) {
+ throw new RuntimeException("Could not generate DH keypair", e);
+ }
+ }
+
++
+ static DHPublicKeySpec getDHPublicKeySpec(PublicKey key) {
+ if (key instanceof DHPublicKey) {
+ DHPublicKey dhKey = (DHPublicKey)key;
+ DHParameterSpec params = dhKey.getParams();
+- return new DHPublicKeySpec(dhKey.getY(), params.getP(), params.getG());
++ return new DHPublicKeySpec(dhKey.getY(),
++ params.getP(), params.getG());
+ }
+ try {
+ KeyFactory factory = JsseJce.getKeyFactory("DH");
+@@ -166,17 +181,32 @@
+ * <P>It is illegal to call this member function if the private key
+ * has not been set (or generated).
+ *
+- * @param peerPublicKey the peer's public key.
+- * @returns the secret, which is an unsigned big-endian integer
+- * the same size as the Diffie-Hellman modulus.
++ * @param peerPublicKey the peer's public key.
++ * @param keyIsValidated whether the {@code peerPublicKey} has beed
++ * validated
++ * @return the secret, which is an unsigned big-endian integer
++ * the same size as the Diffie-Hellman modulus.
+ */
+- SecretKey getAgreedSecret(BigInteger peerPublicValue) {
++ SecretKey getAgreedSecret(BigInteger peerPublicValue,
++ boolean keyIsValidated) throws IOException {
+ try {
+ KeyFactory kf = JsseJce.getKeyFactory("DiffieHellman");
+ DHPublicKeySpec spec =
+ new DHPublicKeySpec(peerPublicValue, modulus, base);
+ PublicKey publicKey = kf.generatePublic(spec);
+ KeyAgreement ka = JsseJce.getKeyAgreement("DiffieHellman");
++
++ // validate the Diffie-Hellman public key
++ if (!keyIsValidated &&
++ !KeyUtil.isOracleJCEProvider(ka.getProvider().getName())) {
++ try {
++ KeyUtil.validate(spec);
++ } catch (InvalidKeyException ike) {
++ // prefer handshake_failure alert to internal_error alert
++ throw new SSLHandshakeException(ike.getMessage());
++ }
++ }
++
+ ka.init(privateKey);
+ ka.doPhase(publicKey, true);
+ return ka.generateSecret("TlsPremasterSecret");
+@@ -185,4 +215,33 @@
+ }
+ }
+
++ // Generate and validate DHPublicKeySpec
++ private DHPublicKeySpec generateDHPublicKeySpec(KeyPairGenerator kpg)
++ throws GeneralSecurityException {
++
++ boolean doExtraValiadtion =
++ (!KeyUtil.isOracleJCEProvider(kpg.getProvider().getName()));
++ for (int i = 0; i <= MAX_FAILOVER_TIMES; i++) {
++ KeyPair kp = kpg.generateKeyPair();
++ privateKey = kp.getPrivate();
++ DHPublicKeySpec spec = getDHPublicKeySpec(kp.getPublic());
++
++ // validate the Diffie-Hellman public key
++ if (doExtraValiadtion) {
++ try {
++ KeyUtil.validate(spec);
++ } catch (InvalidKeyException ivke) {
++ if (i == MAX_FAILOVER_TIMES) {
++ throw ivke;
++ }
++ // otherwise, ignore the exception and try the next one
++ continue;
++ }
++ }
++
++ return spec;
++ }
++
++ return null;
++ }
+ }
+--- jdk/src/share/classes/sun/security/ssl/EngineInputRecord.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/EngineInputRecord.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2003, 2007, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -177,91 +177,169 @@
+ }
+
+ /*
+- * Verifies and removes the MAC value. Returns true if
+- * the MAC checks out OK.
++ * Pass the data down if it's internally cached, otherwise
++ * do it here.
+ *
+- * On entry:
+- * position = beginning of app/MAC data
+- * limit = end of MAC data.
++ * If internal data, data is decrypted internally.
+ *
+- * On return:
+- * position = beginning of app data
+- * limit = end of app data
++ * If external data(app), return a new ByteBuffer with data to
++ * process.
+ */
+- boolean checkMAC(MAC signer, ByteBuffer bb) {
++ ByteBuffer decrypt(MAC signer,
++ CipherBox box, ByteBuffer bb) throws BadPaddingException {
++
+ if (internalData) {
+- return checkMAC(signer);
++ decrypt(signer, box); // MAC is checked during decryption
++ return tmpBB;
+ }
+
+- int len = signer.MAClen();
+- if (len == 0) { // no mac
+- return true;
++ BadPaddingException reservedBPE = null;
++ int tagLen = signer.MAClen();
++ int cipheredLength = bb.remaining();
++
++ if (!box.isNullCipher()) {
++ // sanity check length of the ciphertext
++ if (!box.sanityCheck(tagLen, cipheredLength)) {
++ throw new BadPaddingException(
++ "ciphertext sanity check failed");
++ }
++
++ try {
++ // Note that the CipherBox.decrypt() does not change
++ // the capacity of the buffer.
++ box.decrypt(bb, tagLen);
++ } catch (BadPaddingException bpe) {
++ // RFC 2246 states that decryption_failed should be used
++ // for this purpose. However, that allows certain attacks,
++ // so we just send bad record MAC. We also need to make
++ // sure to always check the MAC to avoid a timing attack
++ // for the same issue. See paper by Vaudenay et al and the
++ // update in RFC 4346/5246.
++ //
++ // Failover to message authentication code checking.
++ reservedBPE = bpe;
++ } finally {
++ bb.rewind();
++ }
+ }
+
+- /*
+- * Grab the original limit
+- */
+- int lim = bb.limit();
++ if (tagLen != 0) {
++ int macOffset = bb.limit() - tagLen;
+
+- /*
+- * Delineate the area to apply a MAC on.
+- */
+- int macData = lim - len;
+- bb.limit(macData);
++ // Note that although it is not necessary, we run the same MAC
++ // computation and comparison on the payload for both stream
++ // cipher and CBC block cipher.
++ if (bb.remaining() < tagLen) {
++ // negative data length, something is wrong
++ if (reservedBPE == null) {
++ reservedBPE = new BadPaddingException("bad record");
++ }
++
++ // set offset of the dummy MAC
++ macOffset = cipheredLength - tagLen;
++ bb.limit(cipheredLength);
++ }
++
++ // Run MAC computation and comparison on the payload.
++ if (checkMacTags(contentType(), bb, signer, false)) {
++ if (reservedBPE == null) {
++ reservedBPE = new BadPaddingException("bad record MAC");
++ }
++ }
+
+- byte[] mac = signer.compute(contentType(), bb);
++ // Run MAC computation and comparison on the remainder.
++ //
++ // It is only necessary for CBC block cipher. It is used to get a
++ // constant time of MAC computation and comparison on each record.
++ if (box.isCBCMode()) {
++ int remainingLen = calculateRemainingLen(
++ signer, cipheredLength, macOffset);
++
++ // NOTE: here we use the InputRecord.buf because I did not find
++ // an effective way to work on ByteBuffer when its capacity is
++ // less than remainingLen.
++
++ // NOTE: remainingLen may be bigger (less than 1 block of the
++ // hash algorithm of the MAC) than the cipheredLength. However,
++ // We won't need to worry about it because we always use a
++ // maximum buffer for every record. We need a change here if
++ // we use small buffer size in the future.
++ if (remainingLen > buf.length) {
++ // unlikely to happen, just a placehold
++ throw new RuntimeException(
++ "Internal buffer capacity error");
++ }
++
++ // Won't need to worry about the result on the remainder. And
++ // then we won't need to worry about what's actual data to
++ // check MAC tag on. We start the check from the header of the
++ // buffer so that we don't need to construct a new byte buffer.
++ checkMacTags(contentType(), buf, 0, remainingLen, signer, true);
++ }
++
++ bb.limit(macOffset);
++ }
++
++ // Is it a failover?
++ if (reservedBPE != null) {
++ throw reservedBPE;
++ }
+
+- if (len != mac.length) {
++ return bb.slice();
++ }
++
++ /*
++ * Run MAC computation and comparison
++ *
++ * Please DON'T change the content of the ByteBuffer parameter!
++ */
++ private static boolean checkMacTags(byte contentType, ByteBuffer bb,
++ MAC signer, boolean isSimulated) {
++
++ int tagLen = signer.MAClen();
++ int lim = bb.limit();
++ int macData = lim - tagLen;
++
++ bb.limit(macData);
++ byte[] hash = signer.compute(contentType, bb, isSimulated);
++ if (hash == null || tagLen != hash.length) {
++ // Something is wrong with MAC implementation.
+ throw new RuntimeException("Internal MAC error");
+ }
+
+- /*
+- * Delineate the MAC values, position was already set
+- * by doing the compute above.
+- *
+- * We could zero the MAC area, but not much useful information
+- * there anyway.
+- */
+ bb.position(macData);
+ bb.limit(lim);
+-
+ try {
+- for (int i = 0; i < len; i++) {
+- if (bb.get() != mac[i]) { // No BB.equals(byte []); !
+- return false;
+- }
+- }
+- return true;
++ int[] results = compareMacTags(bb, hash);
++ return (results[0] != 0);
+ } finally {
+- /*
+- * Position to the data.
+- */
+ bb.rewind();
+ bb.limit(macData);
+ }
+ }
+
+ /*
+- * Pass the data down if it's internally cached, otherwise
+- * do it here.
++ * A constant-time comparison of the MAC tags.
+ *
+- * If internal data, data is decrypted internally.
+- *
+- * If external data(app), return a new ByteBuffer with data to
+- * process.
++ * Please DON'T change the content of the ByteBuffer parameter!
+ */
+- ByteBuffer decrypt(CipherBox box, ByteBuffer bb)
+- throws BadPaddingException {
++ private static int[] compareMacTags(ByteBuffer bb, byte[] tag) {
+
+- if (internalData) {
+- decrypt(box);
+- return tmpBB;
++ // An array of hits is used to prevent Hotspot optimization for
++ // the purpose of a constant-time check.
++ int[] results = {0, 0}; // {missed #, matched #}
++
++ // The caller ensures there are enough bytes available in the buffer.
++ // So we won't need to check the remaining of the buffer.
++ for (int i = 0; i < tag.length; i++) {
++ if (bb.get() != tag[i]) {
++ results[0]++; // mismatched bytes
++ } else {
++ results[1]++; // matched bytes
++ }
+ }
+
+- box.decrypt(bb);
+- bb.rewind();
+-
+- return bb.slice();
++ return results;
+ }
+
+ /*
+--- jdk/src/share/classes/sun/security/ssl/EngineOutputRecord.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/EngineOutputRecord.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -120,7 +120,7 @@
+ throws IOException {
+
+ if (signer.MAClen() != 0) {
+- byte[] hash = signer.compute(contentType(), bb);
++ byte[] hash = signer.compute(contentType(), bb, false);
+
+ /*
+ * position was advanced to limit in compute above.
--- jdk/src/share/classes/sun/security/ssl/HandshakeInStream.java 2012-08-10 10:29:27.000000000 -0700
+++ jdk/src/share/classes/sun/security/ssl/HandshakeInStream.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -18648,6 +67103,77 @@
+ }
+
}
+--- jdk/src/share/classes/sun/security/ssl/HandshakeMessage.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/HandshakeMessage.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -41,12 +41,14 @@
+
+ import javax.crypto.KeyGenerator;
+ import javax.crypto.SecretKey;
++import javax.crypto.spec.DHPublicKeySpec;
+
+ import javax.net.ssl.*;
+
+ import sun.security.internal.spec.TlsPrfParameterSpec;
+ import sun.security.ssl.CipherSuite.*;
+ import static sun.security.ssl.CipherSuite.PRF.*;
++import sun.security.util.KeyUtil;
+
+ /**
+ * Many data structures are involved in the handshake messages. These
+@@ -702,6 +704,7 @@
+ this.protocolVersion = protocolVersion;
+ this.preferableSignatureAlgorithm = null;
+
++ // The DH key has been validated in the constructor of DHCrypt.
+ setValues(obj);
+ signature = null;
+ }
+@@ -718,6 +721,7 @@
+
+ this.protocolVersion = protocolVersion;
+
++ // The DH key has been validated in the constructor of DHCrypt.
+ setValues(obj);
+
+ Signature sig;
+@@ -744,7 +748,8 @@
+ * DH_anon key exchange
+ */
+ DH_ServerKeyExchange(HandshakeInStream input,
+- ProtocolVersion protocolVersion) throws IOException {
++ ProtocolVersion protocolVersion)
++ throws IOException, GeneralSecurityException {
+
+ this.protocolVersion = protocolVersion;
+ this.preferableSignatureAlgorithm = null;
+@@ -752,6 +757,10 @@
+ dh_p = input.getBytes16();
+ dh_g = input.getBytes16();
+ dh_Ys = input.getBytes16();
++ KeyUtil.validate(new DHPublicKeySpec(new BigInteger(1, dh_Ys),
++ new BigInteger(1, dh_p),
++ new BigInteger(1, dh_g)));
++
+ signature = null;
+ }
+
+@@ -772,6 +781,9 @@
+ dh_p = input.getBytes16();
+ dh_g = input.getBytes16();
+ dh_Ys = input.getBytes16();
++ KeyUtil.validate(new DHPublicKeySpec(new BigInteger(1, dh_Ys),
++ new BigInteger(1, dh_p),
++ new BigInteger(1, dh_g)));
+
+ // read the signature and hash algorithm
+ if (protocolVersion.v >= ProtocolVersion.TLS12.v) {
--- jdk/src/share/classes/sun/security/ssl/Handshaker.java 2012-08-10 10:29:27.000000000 -0700
+++ jdk/src/share/classes/sun/security/ssl/Handshaker.java 2013-01-16 08:58:10.000000000 -0800
@@ -1,5 +1,5 @@
@@ -18673,8 +67199,327 @@
}
preMasterSecret =
RSAClientKeyExchange.generateDummySecret(requestedVersion);
+--- jdk/src/share/classes/sun/security/ssl/InputRecord.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/InputRecord.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2008, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -135,43 +135,173 @@
+ return handshakeHash;
+ }
+
+- /*
+- * Verify and remove the MAC ... used for all records.
+- */
+- boolean checkMAC(MAC signer) {
+- int len = signer.MAClen();
+- if (len == 0) { // no mac
+- return true;
++ void decrypt(MAC signer, CipherBox box) throws BadPaddingException {
++
++ BadPaddingException reservedBPE = null;
++ int tagLen = signer.MAClen();
++ int cipheredLength = count - headerSize;
++
++ if (!box.isNullCipher()) {
++ // sanity check length of the ciphertext
++ if (!box.sanityCheck(tagLen, cipheredLength)) {
++ throw new BadPaddingException(
++ "ciphertext sanity check failed");
++ }
++
++ try {
++ // Note that the CipherBox.decrypt() does not change
++ // the capacity of the buffer.
++ count = headerSize +
++ box.decrypt(buf, headerSize, cipheredLength, tagLen);
++ } catch (BadPaddingException bpe) {
++ // RFC 2246 states that decryption_failed should be used
++ // for this purpose. However, that allows certain attacks,
++ // so we just send bad record MAC. We also need to make
++ // sure to always check the MAC to avoid a timing attack
++ // for the same issue. See paper by Vaudenay et al and the
++ // update in RFC 4346/5246.
++ //
++ // Failover to message authentication code checking.
++ reservedBPE = bpe;
++ }
+ }
+
+- int offset = count - len;
++ if (tagLen != 0) {
++ int macOffset = count - tagLen;
++ int contentLen = macOffset - headerSize;
++
++ // Note that although it is not necessary, we run the same MAC
++ // computation and comparison on the payload for both stream
++ // cipher and CBC block cipher.
++ if (contentLen < 0) {
++ // negative data length, something is wrong
++ if (reservedBPE == null) {
++ reservedBPE = new BadPaddingException("bad record");
++ }
+
+- if (offset < headerSize) {
+- // data length would be negative, something is wrong
+- return false;
++ // set offset of the dummy MAC
++ macOffset = headerSize + cipheredLength - tagLen;
++ contentLen = macOffset - headerSize;
++ }
++
++ count -= tagLen; // Set the count before any MAC checking
++ // exception occurs, so that the following
++ // process can read the actual decrypted
++ // content (minus the MAC) in the fragment
++ // if necessary.
++
++ // Run MAC computation and comparison on the payload.
++ if (checkMacTags(contentType(),
++ buf, headerSize, contentLen, signer, false)) {
++ if (reservedBPE == null) {
++ reservedBPE = new BadPaddingException("bad record MAC");
++ }
++ }
++
++ // Run MAC computation and comparison on the remainder.
++ //
++ // It is only necessary for CBC block cipher. It is used to get a
++ // constant time of MAC computation and comparison on each record.
++ if (box.isCBCMode()) {
++ int remainingLen = calculateRemainingLen(
++ signer, cipheredLength, contentLen);
++
++ // NOTE: remainingLen may be bigger (less than 1 block of the
++ // hash algorithm of the MAC) than the cipheredLength. However,
++ // We won't need to worry about it because we always use a
++ // maximum buffer for every record. We need a change here if
++ // we use small buffer size in the future.
++ if (remainingLen > buf.length) {
++ // unlikely to happen, just a placehold
++ throw new RuntimeException(
++ "Internal buffer capacity error");
++ }
++
++ // Won't need to worry about the result on the remainder. And
++ // then we won't need to worry about what's actual data to
++ // check MAC tag on. We start the check from the header of the
++ // buffer so that we don't need to construct a new byte buffer.
++ checkMacTags(contentType(), buf, 0, remainingLen, signer, true);
++ }
++ }
++
++ // Is it a failover?
++ if (reservedBPE != null) {
++ throw reservedBPE;
+ }
++ }
+
+- byte[] mac = signer.compute(contentType(), buf,
+- headerSize, offset - headerSize);
++ /*
++ * Run MAC computation and comparison
++ *
++ * Please DON'T change the content of the byte buffer parameter!
++ */
++ static boolean checkMacTags(byte contentType, byte[] buffer,
++ int offset, int contentLen, MAC signer, boolean isSimulated) {
+
+- if (len != mac.length) {
++ int tagLen = signer.MAClen();
++ byte[] hash = signer.compute(
++ contentType, buffer, offset, contentLen, isSimulated);
++ if (hash == null || tagLen != hash.length) {
++ // Something is wrong with MAC implementation.
+ throw new RuntimeException("Internal MAC error");
+ }
+
+- for (int i = 0; i < len; i++) {
+- if (buf[offset + i] != mac[i]) {
+- return false;
++ int[] results = compareMacTags(buffer, offset + contentLen, hash);
++ return (results[0] != 0);
++ }
++
++ /*
++ * A constant-time comparison of the MAC tags.
++ *
++ * Please DON'T change the content of the byte buffer parameter!
++ */
++ private static int[] compareMacTags(
++ byte[] buffer, int offset, byte[] tag) {
++
++ // An array of hits is used to prevent Hotspot optimization for
++ // the purpose of a constant-time check.
++ int[] results = {0, 0}; // {missed #, matched #}
++
++ // The caller ensures there are enough bytes available in the buffer.
++ // So we won't need to check the length of the buffer.
++ for (int i = 0; i < tag.length; i++) {
++ if (buffer[offset + i] != tag[i]) {
++ results[0]++; // mismatched bytes
++ } else {
++ results[1]++; // matched bytes
+ }
+ }
+- count -= len;
+- return true;
+- }
+
+- void decrypt(CipherBox box) throws BadPaddingException {
+- int len = count - headerSize;
+- count = headerSize + box.decrypt(buf, headerSize, len);
++ return results;
+ }
+
++ /*
++ * Calculate the length of a dummy buffer to run MAC computation
++ * and comparison on the remainder.
++ *
++ * The caller MUST ensure that the fullLen is not less than usedLen.
++ */
++ static int calculateRemainingLen(
++ MAC signer, int fullLen, int usedLen) {
++
++ int blockLen = signer.hashBlockLen();
++ int minimalPaddingLen = signer.minimalPaddingLen();
++
++ // (blockLen - minimalPaddingLen) is the maximum message size of
++ // the last block of hash function operation. See FIPS 180-4, or
++ // MD5 specification.
++ fullLen += 13 - (blockLen - minimalPaddingLen);
++ usedLen += 13 - (blockLen - minimalPaddingLen);
++
++ // Note: fullLen is always not less than usedLen, and blockLen
++ // is always bigger than minimalPaddingLen, so we don't worry
++ // about negative values. 0x01 is added to the result to ensure
++ // that the return value is positive. The extra one byte does
++ // not impact the overall MAC compression function evaluations.
++ return 0x01 + (int)(Math.ceil(fullLen/(1.0d * blockLen)) -
++ Math.ceil(usedLen/(1.0d * blockLen))) * signer.hashBlockLen();
++ }
+
+ /*
+ * Well ... hello_request messages are _never_ hashed since we can't
+--- jdk/src/share/classes/sun/security/ssl/MAC.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/MAC.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2011, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -43,8 +43,8 @@
+ * provide integrity protection for SSL messages. The MAC is actually
+ * one of several keyed hashes, as associated with the cipher suite and
+ * protocol version. (SSL v3.0 uses one construct, TLS uses another.)
+- *
+- * <P>NOTE: MAC computation is the only place in the SSL protocol that the
++ * <P>
++ * NOTE: MAC computation is the only place in the SSL protocol that the
+ * sequence number is used. It's also reset to zero with each change of
+ * a cipher spec, so this is the only place this state is needed.
+ *
+@@ -133,15 +133,31 @@
+ }
+
+ /**
++ * Returns the hash function block length of the MAC alorithm.
++ */
++ int hashBlockLen() {
++ return macAlg.hashBlockSize;
++ }
++
++ /**
++ * Returns the hash function minimal padding length of the MAC alorithm.
++ */
++ int minimalPaddingLen() {
++ return macAlg.minimalPaddingSize;
++ }
++
++ /**
+ * Computes and returns the MAC for the data in this byte array.
+ *
+ * @param type record type
+ * @param buf compressed record on which the MAC is computed
+ * @param offset start of compressed record data
+ * @param len the size of the compressed record
++ * @param isSimulated if true, simulate the the MAC computation
+ */
+- final byte[] compute(byte type, byte buf[], int offset, int len) {
+- return compute(type, null, buf, offset, len);
++ final byte[] compute(byte type, byte buf[],
++ int offset, int len, boolean isSimulated) {
++ return compute(type, null, buf, offset, len, isSimulated);
+ }
+
+ /**
+@@ -154,9 +170,10 @@
+ * @param type record type
+ * @param bb a ByteBuffer in which the position and limit
+ * demarcate the data to be MAC'd.
++ * @param isSimulated if true, simulate the the MAC computation
+ */
+- final byte[] compute(byte type, ByteBuffer bb) {
+- return compute(type, bb, null, 0, bb.remaining());
++ final byte[] compute(byte type, ByteBuffer bb, boolean isSimulated) {
++ return compute(type, bb, null, 0, bb.remaining(), isSimulated);
+ }
+
+ /**
+@@ -209,18 +226,21 @@
+ * or buf/offset/len.
+ */
+ private byte[] compute(byte type, ByteBuffer bb, byte[] buf,
+- int offset, int len) {
++ int offset, int len, boolean isSimulated) {
+
+ if (macSize == 0) {
+ return nullMAC;
+ }
+
+- block[BLOCK_OFFSET_TYPE] = type;
+- block[block.length - 2] = (byte)(len >> 8);
+- block[block.length - 1] = (byte)(len );
++ // MUST NOT increase the sequence number for a simulated computation.
++ if (!isSimulated) {
++ block[BLOCK_OFFSET_TYPE] = type;
++ block[block.length - 2] = (byte)(len >> 8);
++ block[block.length - 1] = (byte)(len );
+
+- mac.update(block);
+- incrementSequenceNumber();
++ mac.update(block);
++ incrementSequenceNumber();
++ }
+
+ // content
+ if (bb != null) {
+--- jdk/src/share/classes/sun/security/ssl/OutputRecord.java 2012-08-10 10:29:27.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/OutputRecord.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -204,7 +204,7 @@
+ }
+ if (signer.MAClen() != 0) {
+ byte[] hash = signer.compute(contentType, buf,
+- headerSize, count - headerSize);
++ headerSize, count - headerSize, false);
+ write(hash);
+ }
+ }
--- jdk/src/share/classes/sun/security/ssl/RSAClientKeyExchange.java 2012-08-10 10:29:28.000000000 -0700
-+++ jdk/src/share/classes/sun/security/ssl/RSAClientKeyExchange.java 2013-01-16 08:58:10.000000000 -0800
++++ jdk/src/share/classes/sun/security/ssl/RSAClientKeyExchange.java 2013-03-09 08:44:48.000000000 -0800
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 1996, 2010, Oracle and/or its affiliates. All rights reserved.
@@ -18686,7 +67531,7 @@
import javax.net.ssl.*;
import sun.security.internal.spec.TlsRsaPremasterSecretParameterSpec;
-+import sun.security.util.KeyLength;
++import sun.security.util.KeyUtil;
/**
* This is the client key exchange message (CLIENT --> SERVER) used with
@@ -18696,7 +67541,7 @@
- // We are not always able to get the encoded key of the
- // premaster secret. Pass the cheking to master secret
-+ int keySize = KeyLength.getKeySize(secretKey);
++ int keySize = KeyUtil.getKeySize(secretKey);
+ if (keySize > 0 && keySize != 384) { // 384 = 48 * 8
+ if (debug != null && Debug.isOn("handshake")) {
+ System.out.println(
@@ -18782,6 +67627,602 @@
try {
String s = ((version.v >= ProtocolVersion.TLS12.v) ?
"SunTls12RsaPremasterSecret" : "SunTlsRsaPremasterSecret");
+--- jdk/src/share/classes/sun/security/ssl/SSLEngineImpl.java 2012-08-10 10:29:28.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/SSLEngineImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -950,35 +950,15 @@
+ * throw a fatal alert if the integrity check fails.
+ */
+ try {
+- decryptedBB = inputRecord.decrypt(readCipher, readBB);
++ decryptedBB = inputRecord.decrypt(readMAC, readCipher, readBB);
+ } catch (BadPaddingException e) {
+- // RFC 2246 states that decryption_failed should be used
+- // for this purpose. However, that allows certain attacks,
+- // so we just send bad record MAC. We also need to make
+- // sure to always check the MAC to avoid a timing attack
+- // for the same issue. See paper by Vaudenay et al.
+- //
+- // rewind the BB if necessary.
+- readBB.rewind();
+-
+- inputRecord.checkMAC(readMAC, readBB);
+-
+- // use the same alert types as for MAC failure below
+ byte alertType = (inputRecord.contentType() ==
+ Record.ct_handshake) ?
+ Alerts.alert_handshake_failure :
+ Alerts.alert_bad_record_mac;
+- fatal(alertType, "Invalid padding", e);
++ fatal(alertType, e.getMessage(), e);
+ }
+
+- if (!inputRecord.checkMAC(readMAC, decryptedBB)) {
+- if (inputRecord.contentType() == Record.ct_handshake) {
+- fatal(Alerts.alert_handshake_failure,
+- "bad handshake record MAC");
+- } else {
+- fatal(Alerts.alert_bad_record_mac, "bad record MAC");
+- }
+- }
+
+ // if (!inputRecord.decompress(c))
+ // fatal(Alerts.alert_decompression_failure,
+--- jdk/src/share/classes/sun/security/ssl/SSLSocketImpl.java 2012-08-10 10:29:28.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/SSLSocketImpl.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 1996, 2012, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -966,29 +966,13 @@
+ * throw a fatal alert if the integrity check fails.
+ */
+ try {
+- r.decrypt(readCipher);
++ r.decrypt(readMAC, readCipher);
+ } catch (BadPaddingException e) {
+- // RFC 2246 states that decryption_failed should be used
+- // for this purpose. However, that allows certain attacks,
+- // so we just send bad record MAC. We also need to make
+- // sure to always check the MAC to avoid a timing attack
+- // for the same issue. See paper by Vaudenay et al.
+- r.checkMAC(readMAC);
+- // use the same alert types as for MAC failure below
+ byte alertType = (r.contentType() == Record.ct_handshake)
+ ? Alerts.alert_handshake_failure
+ : Alerts.alert_bad_record_mac;
+- fatal(alertType, "Invalid padding", e);
++ fatal(alertType, e.getMessage(), e);
+ }
+- if (!r.checkMAC(readMAC)) {
+- if (r.contentType() == Record.ct_handshake) {
+- fatal(Alerts.alert_handshake_failure,
+- "bad handshake record MAC");
+- } else {
+- fatal(Alerts.alert_bad_record_mac, "bad record MAC");
+- }
+- }
+-
+
+ // if (!r.decompress(c))
+ // fatal(Alerts.alert_decompression_failure,
+--- jdk/src/share/classes/sun/security/ssl/ServerHandshaker.java 2012-08-10 10:29:28.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/ServerHandshaker.java 2013-03-09 08:44:48.000000000 -0800
+@@ -150,7 +150,7 @@
+ // In SSLv3 and TLS, messages follow strictly increasing
+ // numerical order _except_ for one annoying special case.
+ //
+- if ((state > type)
++ if ((state >= type)
+ && (state != HandshakeMessage.ht_client_key_exchange
+ && type != HandshakeMessage.ht_certificate_verify)) {
+ throw new SSLProtocolException(
+@@ -250,13 +250,15 @@
+ }
+
+ //
+- // Move the state machine forward except for that annoying
+- // special case. This means that clients could send extra
+- // cert verify messages; not a problem so long as all of
+- // them actually check out.
++ // Move state machine forward if the message handling
++ // code didn't already do so
+ //
+- if (state < type && type != HandshakeMessage.ht_certificate_verify) {
+- state = type;
++ if (state < type) {
++ if(type == HandshakeMessage.ht_certificate_verify) {
++ state = type + 2; // an annoying special case
++ } else {
++ state = type;
++ }
+ }
+ }
+
+@@ -1363,7 +1365,7 @@
+ if (debug != null && Debug.isOn("handshake")) {
+ mesg.print(System.out);
+ }
+- return dh.getAgreedSecret(mesg.getClientPublicKey());
++ return dh.getAgreedSecret(mesg.getClientPublicKey(), false);
+ }
+
+ private SecretKey clientKeyExchange(ECDHClientKeyExchange mesg)
+--- jdk/src/share/classes/sun/security/ssl/SignatureAndHashAlgorithm.java 2012-08-10 10:29:28.000000000 -0700
++++ jdk/src/share/classes/sun/security/ssl/SignatureAndHashAlgorithm.java 2013-03-09 08:44:48.000000000 -0800
+@@ -38,7 +38,7 @@
+ import java.util.Collections;
+ import java.util.ArrayList;
+
+-import sun.security.util.KeyLength;
++import sun.security.util.KeyUtil;
+
+ /**
+ * Signature and hash algorithm.
+@@ -279,7 +279,7 @@
+ * If key size is less than 512, the digest length should be
+ * less than or equal to 20 bytes.
+ */
+- int keySize = KeyLength.getKeySize(signingKey);
++ int keySize = KeyUtil.getKeySize(signingKey);
+ if (keySize >= 768) {
+ maxDigestLength = HashAlgorithm.SHA512.length;
+ } else if ((keySize >= 512) && (keySize < 768)) {
+--- jdk/src/share/classes/sun/security/util/DerIndefLenConverter.java 2012-08-10 10:29:30.000000000 -0700
++++ jdk/src/share/classes/sun/security/util/DerIndefLenConverter.java 2013-03-09 08:44:48.000000000 -0800
+@@ -325,6 +325,10 @@
+ }
+ }
+
++ if (unresolved != 0) {
++ throw new IOException("not all indef len BER resolved");
++ }
++
+ newData = new byte[dataSize + numOfTotalLenBytes + unused];
+ dataPos=0; newDataPos=0; index=0;
+
+--- jdk/src/share/classes/sun/security/util/DisabledAlgorithmConstraints.java 2012-08-10 10:29:30.000000000 -0700
++++ jdk/src/share/classes/sun/security/util/DisabledAlgorithmConstraints.java 2013-03-09 08:44:48.000000000 -0800
+@@ -438,7 +438,7 @@
+
+ // Does this key constraint disable the specified key?
+ public boolean disables(Key key) {
+- int size = KeyLength.getKeySize(key);
++ int size = KeyUtil.getKeySize(key);
+
+ if (size == 0) {
+ return true; // we don't allow any key of size 0.
+--- jdk/src/share/classes/sun/security/util/KeyLength.java 2012-08-10 10:29:30.000000000 -0700
++++ jdk/src/share/classes/sun/security/util/KeyLength.java 1969-12-31 16:00:00.000000000 -0800
+@@ -1,91 +0,0 @@
+-/*
+- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+- *
+- * This code is free software; you can redistribute it and/or modify it
+- * under the terms of the GNU General Public License version 2 only, as
+- * published by the Free Software Foundation. Oracle designates this
+- * particular file as subject to the "Classpath" exception as provided
+- * by Oracle in the LICENSE file that accompanied this code.
+- *
+- * This code is distributed in the hope that it will be useful, but WITHOUT
+- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+- * version 2 for more details (a copy is included in the LICENSE file that
+- * accompanied this code).
+- *
+- * You should have received a copy of the GNU General Public License version
+- * 2 along with this work; if not, write to the Free Software Foundation,
+- * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+- *
+- * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+- * or visit www.oracle.com if you need additional information or have any
+- * questions.
+- */
+-
+-package sun.security.util;
+-
+-import java.security.Key;
+-import java.security.PrivilegedAction;
+-import java.security.AccessController;
+-import java.security.interfaces.ECKey;
+-import java.security.interfaces.RSAKey;
+-import java.security.interfaces.DSAKey;
+-import javax.crypto.SecretKey;
+-import javax.crypto.interfaces.DHKey;
+-
+-/**
+- * A utility class to get key length
+- */
+-public final class KeyLength {
+-
+- /**
+- * Returns the key size of the given key object in bits.
+- *
+- * @param key the key object, cannot be null
+- * @return the key size of the given key object in bits, or -1 if the
+- * key size is not accessible
+- */
+- final public static int getKeySize(Key key) {
+- int size = -1;
+-
+- if (key instanceof Length) {
+- try {
+- Length ruler = (Length)key;
+- size = ruler.length();
+- } catch (UnsupportedOperationException usoe) {
+- // ignore the exception
+- }
+-
+- if (size >= 0) {
+- return size;
+- }
+- }
+-
+- // try to parse the length from key specification
+- if (key instanceof SecretKey) {
+- SecretKey sk = (SecretKey)key;
+- String format = sk.getFormat();
+- if ("RAW".equals(format) && sk.getEncoded() != null) {
+- size = (sk.getEncoded().length * 8);
+- } // Otherwise, it may be a unextractable key of PKCS#11, or
+- // a key we are not able to handle.
+- } else if (key instanceof RSAKey) {
+- RSAKey pubk = (RSAKey)key;
+- size = pubk.getModulus().bitLength();
+- } else if (key instanceof ECKey) {
+- ECKey pubk = (ECKey)key;
+- size = pubk.getParams().getOrder().bitLength();
+- } else if (key instanceof DSAKey) {
+- DSAKey pubk = (DSAKey)key;
+- size = pubk.getParams().getP().bitLength();
+- } else if (key instanceof DHKey) {
+- DHKey pubk = (DHKey)key;
+- size = pubk.getParams().getP().bitLength();
+- } // Otherwise, it may be a unextractable key of PKCS#11, or
+- // a key we are not able to handle.
+-
+- return size;
+- }
+-}
+-
+--- jdk/src/share/classes/sun/security/util/KeyUtil.java 1969-12-31 16:00:00.000000000 -0800
++++ jdk/src/share/classes/sun/security/util/KeyUtil.java 2013-03-09 08:44:48.000000000 -0800
+@@ -0,0 +1,204 @@
++/*
++ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation. Oracle designates this
++ * particular file as subject to the "Classpath" exception as provided
++ * by Oracle in the LICENSE file that accompanied this code.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++package sun.security.util;
++
++import java.security.Key;
++import java.security.PrivilegedAction;
++import java.security.AccessController;
++import java.security.InvalidKeyException;
++import java.security.interfaces.ECKey;
++import java.security.interfaces.RSAKey;
++import java.security.interfaces.DSAKey;
++import java.security.spec.KeySpec;
++import javax.crypto.SecretKey;
++import javax.crypto.interfaces.DHKey;
++import javax.crypto.interfaces.DHPublicKey;
++import javax.crypto.spec.DHParameterSpec;
++import javax.crypto.spec.DHPublicKeySpec;
++import java.math.BigInteger;
++
++/**
++ * A utility class to get key length, valiate keys, etc.
++ */
++public final class KeyUtil {
++
++ /**
++ * Returns the key size of the given key object in bits.
++ *
++ * @param key the key object, cannot be null
++ * @return the key size of the given key object in bits, or -1 if the
++ * key size is not accessible
++ */
++ public static final int getKeySize(Key key) {
++ int size = -1;
++
++ if (key instanceof Length) {
++ try {
++ Length ruler = (Length)key;
++ size = ruler.length();
++ } catch (UnsupportedOperationException usoe) {
++ // ignore the exception
++ }
++
++ if (size >= 0) {
++ return size;
++ }
++ }
++
++ // try to parse the length from key specification
++ if (key instanceof SecretKey) {
++ SecretKey sk = (SecretKey)key;
++ String format = sk.getFormat();
++ if ("RAW".equals(format) && sk.getEncoded() != null) {
++ size = (sk.getEncoded().length * 8);
++ } // Otherwise, it may be a unextractable key of PKCS#11, or
++ // a key we are not able to handle.
++ } else if (key instanceof RSAKey) {
++ RSAKey pubk = (RSAKey)key;
++ size = pubk.getModulus().bitLength();
++ } else if (key instanceof ECKey) {
++ ECKey pubk = (ECKey)key;
++ size = pubk.getParams().getOrder().bitLength();
++ } else if (key instanceof DSAKey) {
++ DSAKey pubk = (DSAKey)key;
++ size = pubk.getParams().getP().bitLength();
++ } else if (key instanceof DHKey) {
++ DHKey pubk = (DHKey)key;
++ size = pubk.getParams().getP().bitLength();
++ } // Otherwise, it may be a unextractable key of PKCS#11, or
++ // a key we are not able to handle.
++
++ return size;
++ }
++
++ /**
++ * Returns whether the key is valid or not.
++ * <P>
++ * Note that this method is only apply to DHPublicKey at present.
++ *
++ * @param publicKey
++ * the key object, cannot be null
++ *
++ * @throws NullPointerException if {@code publicKey} is null
++ * @throws InvalidKeyException if {@code publicKey} is invalid
++ */
++ public static final void validate(Key key)
++ throws InvalidKeyException {
++ if (key == null) {
++ throw new NullPointerException(
++ "The key to be validated cannot be null");
++ }
++
++ if (key instanceof DHPublicKey) {
++ validateDHPublicKey((DHPublicKey)key);
++ }
++ }
++
++
++ /**
++ * Returns whether the key spec is valid or not.
++ * <P>
++ * Note that this method is only apply to DHPublicKeySpec at present.
++ *
++ * @param keySpec
++ * the key spec object, cannot be null
++ *
++ * @throws NullPointerException if {@code keySpec} is null
++ * @throws InvalidKeyException if {@code keySpec} is invalid
++ */
++ public static final void validate(KeySpec keySpec)
++ throws InvalidKeyException {
++ if (keySpec == null) {
++ throw new NullPointerException(
++ "The key spec to be validated cannot be null");
++ }
++
++ if (keySpec instanceof DHPublicKeySpec) {
++ validateDHPublicKey((DHPublicKeySpec)keySpec);
++ }
++ }
++
++ /**
++ * Returns whether the specified provider is Oracle provider or not.
++ * <P>
++ * Note that this method is only apply to SunJCE and SunPKCS11 at present.
++ *
++ * @param providerName
++ * the provider name
++ * @return true if, and only if, the provider of the specified
++ * {@code providerName} is Oracle provider
++ */
++ public static final boolean isOracleJCEProvider(String providerName) {
++ return providerName != null && (providerName.equals("SunJCE") ||
++ providerName.startsWith("SunPKCS11"));
++ }
++
++ /**
++ * Returns whether the Diffie-Hellman public key is valid or not.
++ *
++ * Per RFC 2631 and NIST SP800-56A, the following algorithm is used to
++ * validate Diffie-Hellman public keys:
++ * 1. Verify that y lies within the interval [2,p-1]. If it does not,
++ * the key is invalid.
++ * 2. Compute y^q mod p. If the result == 1, the key is valid.
++ * Otherwise the key is invalid.
++ */
++ private static void validateDHPublicKey(DHPublicKey publicKey)
++ throws InvalidKeyException {
++ DHParameterSpec paramSpec = publicKey.getParams();
++
++ BigInteger p = paramSpec.getP();
++ BigInteger g = paramSpec.getG();
++ BigInteger y = publicKey.getY();
++
++ validateDHPublicKey(p, g, y);
++ }
++
++ private static void validateDHPublicKey(DHPublicKeySpec publicKeySpec)
++ throws InvalidKeyException {
++ validateDHPublicKey(publicKeySpec.getP(),
++ publicKeySpec.getG(), publicKeySpec.getY());
++ }
++
++ private static void validateDHPublicKey(BigInteger p,
++ BigInteger g, BigInteger y) throws InvalidKeyException {
++
++ // For better interoperability, the interval is limited to [2, p-2].
++ BigInteger leftOpen = BigInteger.ONE;
++ BigInteger rightOpen = p.subtract(BigInteger.ONE);
++ if (y.compareTo(leftOpen) <= 0) {
++ throw new InvalidKeyException(
++ "Diffie-Hellman public key is too small");
++ }
++ if (y.compareTo(rightOpen) >= 0) {
++ throw new InvalidKeyException(
++ "Diffie-Hellman public key is too large");
++ }
++
++ // Don't bother to check against the y^q mod p if safe primes are used.
++ }
++}
++
+--- jdk/src/share/classes/sun/security/util/UntrustedCertificates.java 2012-08-10 10:29:31.000000000 -0700
++++ jdk/src/share/classes/sun/security/util/UntrustedCertificates.java 2013-03-09 08:44:48.000000000 -0800
+@@ -1,5 +1,5 @@
+ /*
+- * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
++ * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+@@ -737,5 +737,111 @@
+ "B8WfedLHjFW/TMcnXlEWKz4=\n" +
+ "-----END CERTIFICATE-----");
+
++ //
++ // Revoked DigiCert code signing certificates used to sign malware
++ //
++
++ // Subject: CN=Buster Paper Comercial Ltda,
++ // O=Buster Paper Comercial Ltda,
++ // L=S?o Jos? Dos Campos,
++ // ST=S?o Paulo,
++ // C=BR
++ // Issuer: CN=DigiCert Assured ID Code Signing CA-1,
++ // OU=www.digicert.com,
++ // O=DigiCert Inc,
++ // C=US
++ // Serial: 07:b4:4c:db:ff:fb:78:de:05:f4:26:16:72:a6:73:12
++ add("buster-paper-comercial-ltda-72A67312",
++ "-----BEGIN CERTIFICATE-----\n" +
++ "MIIGwzCCBaugAwIBAgIQB7RM2//7eN4F9CYWcqZzEjANBgkqhkiG9w0BAQUFADBv\n" +
++ "MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\n" +
++ "d3cuZGlnaWNlcnQuY29tMS4wLAYDVQQDEyVEaWdpQ2VydCBBc3N1cmVkIElEIENv\n" +
++ "ZGUgU2lnbmluZyBDQS0xMB4XDTEzMDExNzAwMDAwMFoXDTE0MDEyMjEyMDAwMFow\n" +
++ "gY4xCzAJBgNVBAYTAkJSMRMwEQYDVQQIDApTw6NvIFBhdWxvMR4wHAYDVQQHDBVT\n" +
++ "w6NvIEpvc8OpIERvcyBDYW1wb3MxJDAiBgNVBAoTG0J1c3RlciBQYXBlciBDb21l\n" +
++ "cmNpYWwgTHRkYTEkMCIGA1UEAxMbQnVzdGVyIFBhcGVyIENvbWVyY2lhbCBMdGRh\n" +
++ "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAzO0l6jWIpEfO2oUpVHpL\n" +
++ "HETj5lzivNb0S9jKHgGJax917czh81PnGTxwxFXd6gLJuy/XFHvmiSi8g8jzlymn\n" +
++ "2Ji5zQ3CPaz7nomJokSUDlMVJ2qYWtctw4jrdjuI4qtn+koXXUFkWjkf8h8251I4\n" +
++ "tUs7S49HE2Go5owCYP3byajj7fsFAYR/Xb7TdVtndkZsUB/YgOjHovyACjouaNCi\n" +
++ "mDiRyQ6zLLjZGiyeD65Yiseuhp5b8/BL5h1p7w76QYMYMVQNAdtDKut2R8MBpuWf\n" +
++ "Ny7Eoi0x/gm1p9X5Rcl5aN7K0G4UtTAJKbkuUfXddsyFoM0Nx8uo8SgNQ8Y/X5Jx\n" +
++ "BwIDAQABo4IDOTCCAzUwHwYDVR0jBBgwFoAUe2jOKarAF75JeuHlP9an90WPNTIw\n" +
++ "HQYDVR0OBBYEFFLZ3n5nt/Eer7n1bvtOqMb1qKO5MA4GA1UdDwEB/wQEAwIHgDAT\n" +
++ "BgNVHSUEDDAKBggrBgEFBQcDAzBzBgNVHR8EbDBqMDOgMaAvhi1odHRwOi8vY3Js\n" +
++ "My5kaWdpY2VydC5jb20vYXNzdXJlZC1jcy0yMDExYS5jcmwwM6AxoC+GLWh0dHA6\n" +
++ "Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9hc3N1cmVkLWNzLTIwMTFhLmNybDCCAcQGA1Ud\n" +
++ "IASCAbswggG3MIIBswYJYIZIAYb9bAMBMIIBpDA6BggrBgEFBQcCARYuaHR0cDov\n" +
++ "L3d3dy5kaWdpY2VydC5jb20vc3NsLWNwcy1yZXBvc2l0b3J5Lmh0bTCCAWQGCCsG\n" +
++ "AQUFBwICMIIBVh6CAVIAQQBuAHkAIAB1AHMAZQAgAG8AZgAgAHQAaABpAHMAIABD\n" +
++ "AGUAcgB0AGkAZgBpAGMAYQB0AGUAIABjAG8AbgBzAHQAaQB0AHUAdABlAHMAIABh\n" +
++ "AGMAYwBlAHAAdABhAG4AYwBlACAAbwBmACAAdABoAGUAIABEAGkAZwBpAEMAZQBy\n" +
++ "AHQAIABDAFAALwBDAFAAUwAgAGEAbgBkACAAdABoAGUAIABSAGUAbAB5AGkAbgBn\n" +
++ "ACAAUABhAHIAdAB5ACAAQQBnAHIAZQBlAG0AZQBuAHQAIAB3AGgAaQBjAGgAIABs\n" +
++ "AGkAbQBpAHQAIABsAGkAYQBiAGkAbABpAHQAeQAgAGEAbgBkACAAYQByAGUAIABp\n" +
++ "AG4AYwBvAHIAcABvAHIAYQB0AGUAZAAgAGgAZQByAGUAaQBuACAAYgB5ACAAcgBl\n" +
++ "AGYAZQByAGUAbgBjAGUALjCBggYIKwYBBQUHAQEEdjB0MCQGCCsGAQUFBzABhhho\n" +
++ "dHRwOi8vb2NzcC5kaWdpY2VydC5jb20wTAYIKwYBBQUHMAKGQGh0dHA6Ly9jYWNl\n" +
++ "cnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEFzc3VyZWRJRENvZGVTaWduaW5nQ0Et\n" +
++ "MS5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQUFAAOCAQEAPTTQvpOIikXI\n" +
++ "hTLnNbajaFRR5GhQpTzUNgBfF9VYSlNw/wMjpGsrh5RxaJCip52jbehmTgjMRhft\n" +
++ "jRYyml44PAVsCcR9uEoDpCZYpI1fHI1R+F8jd1C9rqprbSwwOG4xlg4SmvTHYs6e\n" +
++ "gBItQ/1p9XY+Sf4Wv1qOuOFL1qvV/5VyR2zdlOQCmKCeMgxt6a/tHLBDiAA67D44\n" +
++ "/vfdoNJl0CU2It0PO60jdCPFNWIRcxL+OSDqAoePeUC7xQ+JsTEIxuUE8+d6w6fc\n" +
++ "BV2mYb1flh22t46GLjh4gyo7xw3aL6L0L0jzlTT6IcEw6NIbaPbIKj/npQnHobYj\n" +
++ "XMuKLxbh7g==\n" +
++ "-----END CERTIFICATE-----");
++
++ // Subject: CN=BUSTER ASSISTENCIA TECNICA ELETRONICA LTDA - ME,
++ // O=BUSTER ASSISTENCIA TECNICA ELETRONICA LTDA - ME,
++ // L=S?o Paulo,
++ // ST=S?o Paulo,
++ // C=BR
++ // Issuer: CN=DigiCert Assured ID Code Signing CA-1,
++ // OU=www.digicert.com,
++ // O=DigiCert Inc,
++ // C=US
++ // Serial: 0a:38:9b:95:ee:73:6d:d1:3b:c0:ed:74:3f:d7:4d:2f
++ add("buster-assistencia-tecnica-electronica-ltda-3FD74D2F",
++ "-----BEGIN CERTIFICATE-----\n" +
++ "MIIG4DCCBcigAwIBAgIQCjible5zbdE7wO10P9dNLzANBgkqhkiG9w0BAQUFADBv\n" +
++ "MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3\n" +
++ "d3cuZGlnaWNlcnQuY29tMS4wLAYDVQQDEyVEaWdpQ2VydCBBc3N1cmVkIElEIENv\n" +
++ "ZGUgU2lnbmluZyBDQS0xMB4XDTEyMTEwOTAwMDAwMFoXDTEzMTExNDEyMDAwMFow\n" +
++ "gasxCzAJBgNVBAYTAkJSMRMwEQYDVQQIDApTw6NvIFBhdWxvMRMwEQYDVQQHDApT\n" +
++ "w6NvIFBhdWxvMTgwNgYDVQQKEy9CVVNURVIgQVNTSVNURU5DSUEgVEVDTklDQSBF\n" +
++ "TEVUUk9OSUNBIExUREEgLSBNRTE4MDYGA1UEAxMvQlVTVEVSIEFTU0lTVEVOQ0lB\n" +
++ "IFRFQ05JQ0EgRUxFVFJPTklDQSBMVERBIC0gTUUwggEiMA0GCSqGSIb3DQEBAQUA\n" +
++ "A4IBDwAwggEKAoIBAQDAqNeEs5/B2CTXGjTOkUIdu6jV6qulOZwdw4sefHWYj1UR\n" +
++ "4z6zPk9kjpUgbnb402RFq88QtfInwddZ/wXn9OxMtDd/3TnC7HrhNS7ga79ZFL2V\n" +
++ "JnmzKHum2Yvh0q82QEJ9tHBR2X9VdKpUIH08Zs3k6cWWM1H0YX0cxA/HohhesQJW\n" +
++ "kwJ3urOIJiH/HeByDk8a1NS8safcCxk5vxvW4WvCg43iT09LeHY5Aa8abKw8lqVb\n" +
++ "0tD5ZSIjdmdj3TT1U37iAHLLRM2DXbxfdbhouUX1c5U1ZHAMA67HwjKiseOiDaHj\n" +
++ "NUGbC37C+cgbc9VVM/cURD8WvS0Kj6fQv7F2QtJDAgMBAAGjggM5MIIDNTAfBgNV\n" +
++ "HSMEGDAWgBR7aM4pqsAXvkl64eU/1qf3RY81MjAdBgNVHQ4EFgQU88EXKAyDsh30\n" +
++ "o9+Gu9a4xUy+FSMwDgYDVR0PAQH/BAQDAgeAMBMGA1UdJQQMMAoGCCsGAQUFBwMD\n" +
++ "MHMGA1UdHwRsMGowM6AxoC+GLWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9hc3N1\n" +
++ "cmVkLWNzLTIwMTFhLmNybDAzoDGgL4YtaHR0cDovL2NybDQuZGlnaWNlcnQuY29t\n" +
++ "L2Fzc3VyZWQtY3MtMjAxMWEuY3JsMIIBxAYDVR0gBIIBuzCCAbcwggGzBglghkgB\n" +
++ "hv1sAwEwggGkMDoGCCsGAQUFBwIBFi5odHRwOi8vd3d3LmRpZ2ljZXJ0LmNvbS9z\n" +
++ "c2wtY3BzLXJlcG9zaXRvcnkuaHRtMIIBZAYIKwYBBQUHAgIwggFWHoIBUgBBAG4A\n" +
++ "eQAgAHUAcwBlACAAbwBmACAAdABoAGkAcwAgAEMAZQByAHQAaQBmAGkAYwBhAHQA\n" +
++ "ZQAgAGMAbwBuAHMAdABpAHQAdQB0AGUAcwAgAGEAYwBjAGUAcAB0AGEAbgBjAGUA\n" +
++ "IABvAGYAIAB0AGgAZQAgAEQAaQBnAGkAQwBlAHIAdAAgAEMAUAAvAEMAUABTACAA\n" +
++ "YQBuAGQAIAB0AGgAZQAgAFIAZQBsAHkAaQBuAGcAIABQAGEAcgB0AHkAIABBAGcA\n" +
++ "cgBlAGUAbQBlAG4AdAAgAHcAaABpAGMAaAAgAGwAaQBtAGkAdAAgAGwAaQBhAGIA\n" +
++ "aQBsAGkAdAB5ACAAYQBuAGQAIABhAHIAZQAgAGkAbgBjAG8AcgBwAG8AcgBhAHQA\n" +
++ "ZQBkACAAaABlAHIAZQBpAG4AIABiAHkAIAByAGUAZgBlAHIAZQBuAGMAZQAuMIGC\n" +
++ "BggrBgEFBQcBAQR2MHQwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRpZ2ljZXJ0\n" +
++ "LmNvbTBMBggrBgEFBQcwAoZAaHR0cDovL2NhY2VydHMuZGlnaWNlcnQuY29tL0Rp\n" +
++ "Z2lDZXJ0QXNzdXJlZElEQ29kZVNpZ25pbmdDQS0xLmNydDAMBgNVHRMBAf8EAjAA\n" +
++ "MA0GCSqGSIb3DQEBBQUAA4IBAQAei1QmiXepje8OIfo/WonD4MIXgpPr2dfRaquQ\n" +
++ "A8q63OpTRSveyqdQDCSPpDRF/nvO1Y30yksZvIH1tNBsW5LBdxAKN3lFdBlqBwtE\n" +
++ "Q3jHc0KVVYRJ0FBaGE/PJHmRajscdAhYIcMPhTga0u0tDK+wOHEq3993dfl6yHjA\n" +
++ "XHU2iW5pnk75ZoE39zALD5eKXT8ZXrET5c3XUFJKWA+XuGmdmyzqo0Au49PanBv9\n" +
++ "UlZnabYfqoMArqMS0tGSX4cGgi9/2E+pHG9BX4sFW+ZDumroOA2pxyMWEKjxePEL\n" +
++ "zCOfhbsRWdMLYepauaNZOIMZXmFwcrIl0TGMkTAtATz+XmZc\n" +
++ "-----END CERTIFICATE-----");
++
+ }
+ }
--- jdk/src/share/classes/sun/swing/FilePane.java 2012-08-10 10:29:34.000000000 -0700
+++ jdk/src/share/classes/sun/swing/FilePane.java 2013-01-16 00:07:14.000000000 -0800
@@ -35,7 +35,6 @@
@@ -18832,7 +68273,7 @@
} // createDetailsView
--- jdk/src/share/classes/sun/tools/attach/META-INF/services/com.sun.tools.attach.spi.AttachProvider 2012-08-10 10:29:42.000000000 -0700
-+++ jdk/src/share/classes/sun/tools/attach/META-INF/services/com.sun.tools.attach.spi.AttachProvider 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/tools/attach/META-INF/services/com.sun.tools.attach.spi.AttachProvider 2013-03-09 08:44:53.000000000 -0800
@@ -30,4 +30,5 @@
#[solaris]sun.tools.attach.SolarisAttachProvider
#[windows]sun.tools.attach.WindowsAttachProvider
@@ -18840,7 +68281,7 @@
+#[bsd]sun.tools.attach.BsdAttachProvider
#[macosx]sun.tools.attach.BsdAttachProvider
--- jdk/src/share/classes/sun/tools/jar/Main.java 2012-08-10 10:29:42.000000000 -0700
-+++ jdk/src/share/classes/sun/tools/jar/Main.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/tools/jar/Main.java 2013-03-09 08:44:53.000000000 -0800
@@ -51,6 +51,7 @@
String zname = "";
String[] files;
@@ -18912,7 +68353,7 @@
throw new IOException(formatMsg(
"error.create.dir", d.getPath()));
--- jdk/src/share/classes/sun/tools/jar/resources/jar.properties 2012-08-10 10:29:42.000000000 -0700
-+++ jdk/src/share/classes/sun/tools/jar/resources/jar.properties 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/classes/sun/tools/jar/resources/jar.properties 2013-03-09 08:44:53.000000000 -0800
@@ -44,6 +44,8 @@
{0} : could not create directory
error.incorrect.length=\
@@ -18923,7 +68364,7 @@
added manifest
out.update.manifest=\
--- jdk/src/share/demo/jvmti/compiledMethodLoad/sample.makefile.txt 2012-08-10 10:30:07.000000000 -0700
-+++ jdk/src/share/demo/jvmti/compiledMethodLoad/sample.makefile.txt 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/demo/jvmti/compiledMethodLoad/sample.makefile.txt 2013-03-09 08:44:53.000000000 -0800
@@ -38,6 +38,7 @@
# gnumake JDK=<java_home> OSNAME=solaris [OPT=true] [LIBARCH=sparcv9]
# gnumake JDK=<java_home> OSNAME=linux [OPT=true]
@@ -18963,87 +68404,203 @@
CFLAGS += -I.
CFLAGS += -I../agent_util
--- jdk/src/share/lib/security/java.security 2012-08-10 10:30:16.000000000 -0700
-+++ jdk/src/share/lib/security/java.security 2013-01-16 08:58:10.000000000 -0800
-@@ -123,7 +123,7 @@
++++ jdk/src/share/lib/security/java.security 2013-03-09 08:44:48.000000000 -0800
+@@ -123,7 +123,18 @@
# passed to checkPackageAccess unless the
# corresponding RuntimePermission ("accessClassInPackage."+package) has
# been granted.
-package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.access=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# List of comma-separated packages that start with or equal this string
-@@ -135,7 +135,7 @@
+@@ -135,7 +146,18 @@
# by default, none of the class loaders supplied with the JDK call
# checkPackageDefinition.
#
-package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.definition=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# Determines whether this properties file can be appended to
--- jdk/src/share/lib/security/java.security-macosx 2012-08-10 10:30:16.000000000 -0700
-+++ jdk/src/share/lib/security/java.security-macosx 2013-01-16 08:58:10.000000000 -0800
-@@ -124,7 +124,7 @@
++++ jdk/src/share/lib/security/java.security-macosx 2013-03-09 08:44:48.000000000 -0800
+@@ -124,7 +124,19 @@
# passed to checkPackageAccess unless the
# corresponding RuntimePermission ("accessClassInPackage."+package) has
# been granted.
-package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,apple.
-+package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.
++package.access=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.,\
++ apple.
#
# List of comma-separated packages that start with or equal this string
-@@ -136,7 +136,7 @@
+@@ -136,7 +148,19 @@
# by default, none of the class loaders supplied with the JDK call
# checkPackageDefinition.
#
-package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,apple.
-+package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.,apple.
++package.definition=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.,\
++ apple.
#
# Determines whether this properties file can be appended to
--- jdk/src/share/lib/security/java.security-solaris 2012-08-10 10:30:16.000000000 -0700
-+++ jdk/src/share/lib/security/java.security-solaris 2013-01-16 08:58:10.000000000 -0800
-@@ -125,7 +125,7 @@
++++ jdk/src/share/lib/security/java.security-solaris 2013-03-09 08:44:48.000000000 -0800
+@@ -125,7 +125,18 @@
# passed to checkPackageAccess unless the
# corresponding RuntimePermission ("accessClassInPackage."+package) has
# been granted.
-package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.access=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# List of comma-separated packages that start with or equal this string
-@@ -137,7 +137,7 @@
+@@ -137,7 +148,18 @@
# by default, none of the class loaders supplied with the JDK call
# checkPackageDefinition.
#
-package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.definition=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# Determines whether this properties file can be appended to
--- jdk/src/share/lib/security/java.security-windows 2012-08-10 10:30:16.000000000 -0700
-+++ jdk/src/share/lib/security/java.security-windows 2013-01-16 08:58:10.000000000 -0800
-@@ -124,7 +124,7 @@
++++ jdk/src/share/lib/security/java.security-windows 2013-03-09 08:44:48.000000000 -0800
+@@ -124,7 +124,18 @@
# passed to checkPackageAccess unless the
# corresponding RuntimePermission ("accessClassInPackage."+package) has
# been granted.
-package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.access=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# List of comma-separated packages that start with or equal this string
-@@ -136,7 +136,7 @@
+@@ -136,7 +147,18 @@
# by default, none of the class loaders supplied with the JDK call
# checkPackageDefinition.
#
-package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.
-+package.definition=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.,com.sun.org.apache.xerces.internal.utils.,com.sun.org.apache.xalan.internal.utils.,com.sun.org.glassfish.external.,com.sun.org.glassfish.gmbal.
++package.definition=sun.,\
++ com.sun.xml.internal.bind.,\
++ com.sun.xml.internal.org.jvnet.staxex.,\
++ com.sun.xml.internal.ws.,\
++ com.sun.imageio.,\
++ com.sun.istack.internal.,\
++ com.sun.jmx.,\
++ com.sun.proxy.,\
++ com.sun.org.apache.xerces.internal.utils.,\
++ com.sun.org.apache.xalan.internal.utils.,\
++ com.sun.org.glassfish.external.,\
++ com.sun.org.glassfish.gmbal.
#
# Determines whether this properties file can be appended to
+--- jdk/src/share/native/com/sun/java/util/jar/pack/bands.cpp 2012-08-10 10:30:16.000000000 -0700
++++ jdk/src/share/native/com/sun/java/util/jar/pack/bands.cpp 2013-03-09 08:44:48.000000000 -0800
+@@ -187,6 +187,10 @@
+
+ entry* band::getRefCommon(cpindex* ix_, bool nullOKwithCaller) {
+ CHECK_0;
++ if (ix_ == NULL) {
++ abort("no index");
++ return NULL;
++ }
+ assert(ix_->ixTag == ixTag
+ || (ixTag == CONSTANT_Literal
+ && ix_->ixTag >= CONSTANT_Integer
+--- jdk/src/share/native/com/sun/java/util/jar/pack/bands.h 2012-08-10 10:30:16.000000000 -0700
++++ jdk/src/share/native/com/sun/java/util/jar/pack/bands.h 2013-03-09 08:44:48.000000000 -0800
+@@ -101,8 +101,8 @@
+
+ int getByte() { assert(ix == null); return vs[0].getByte(); }
+ int getInt() { assert(ix == null); return vs[0].getInt(); }
+- entry* getRefN() { assert(ix != null); return getRefCommon(ix, true); }
+- entry* getRef() { assert(ix != null); return getRefCommon(ix, false); }
++ entry* getRefN() { return getRefCommon(ix, true); }
++ entry* getRef() { return getRefCommon(ix, false); }
+ entry* getRefUsing(cpindex* ix2)
+ { assert(ix == null); return getRefCommon(ix2, true); }
+ entry* getRefCommon(cpindex* ix, bool nullOK);
--- jdk/src/share/native/com/sun/java/util/jar/pack/defines.h 2012-08-10 10:30:16.000000000 -0700
-+++ jdk/src/share/native/com/sun/java/util/jar/pack/defines.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/com/sun/java/util/jar/pack/defines.h 2013-03-09 08:44:53.000000000 -0800
@@ -93,7 +93,7 @@
// bytes and byte arrays
@@ -19053,8 +68610,306 @@
#ifdef _LP64
typedef unsigned int uLong; // Historical zlib, should be 32-bit.
#else
+--- jdk/src/share/native/com/sun/java/util/jar/pack/jni.cpp 2012-08-10 10:30:16.000000000 -0700
++++ jdk/src/share/native/com/sun/java/util/jar/pack/jni.cpp 2013-03-09 08:44:48.000000000 -0800
+@@ -50,6 +50,7 @@
+ static jmethodID currentInstMID;
+ static jmethodID readInputMID;
+ static jclass NIclazz;
++static jmethodID getUnpackerPtrMID;
+
+ static char* dbg = null;
+
+@@ -60,8 +61,8 @@
+
+ static unpacker* get_unpacker(JNIEnv *env, jobject pObj, bool noCreate=false) {
+ unpacker* uPtr;
+- uPtr = (unpacker*)jlong2ptr(env->GetLongField(pObj, unpackerPtrFID));
+- //fprintf(stderr, "get_unpacker(%p) uPtr=%p\n", pObj, uPtr);
++ jlong p = env->CallLongMethod(pObj, getUnpackerPtrMID);
++ uPtr = (unpacker*)jlong2ptr(p);
+ if (uPtr == null) {
+ if (noCreate) return null;
+ uPtr = new unpacker();
+@@ -90,11 +91,15 @@
+ if (env == null)
+ return null;
+ jobject pObj = env->CallStaticObjectMethod(NIclazz, currentInstMID);
+- //fprintf(stderr, "get_unpacker() pObj=%p\n", pObj);
+- if (pObj == null)
+- return null;
+- // Got pObj and env; now do it the easy way.
+- return get_unpacker(env, pObj);
++ //fprintf(stderr, "get_unpacker0() pObj=%p\n", pObj);
++ if (pObj != null) {
++ // Got pObj and env; now do it the easy way.
++ return get_unpacker(env, pObj);
++ }
++ // this should really not happen, if it does something is seriously
++ // wrong throw an exception
++ THROW_IOE(ERROR_INTERNAL);
++ return null;
+ }
+
+ static void free_unpacker(JNIEnv *env, jobject pObj, unpacker* uPtr) {
+@@ -123,18 +128,23 @@
+
+ JNIEXPORT void JNICALL
+ Java_com_sun_java_util_jar_pack_NativeUnpack_initIDs(JNIEnv *env, jclass clazz) {
++#ifndef PRODUCT
+ dbg = getenv("DEBUG_ATTACH");
+ while( dbg != null) { sleep(10); }
++#endif
+ NIclazz = (jclass) env->NewGlobalRef(clazz);
+ unpackerPtrFID = env->GetFieldID(clazz, "unpackerPtr", "J");
+ currentInstMID = env->GetStaticMethodID(clazz, "currentInstance",
+ "()Ljava/lang/Object;");
+ readInputMID = env->GetMethodID(clazz, "readInputFn",
+ "(Ljava/nio/ByteBuffer;J)J");
++ getUnpackerPtrMID = env->GetMethodID(clazz, "getUnpackerPtr", "()J");
++
+ if (unpackerPtrFID == null ||
+ currentInstMID == null ||
+ readInputMID == null ||
+- NIclazz == null) {
++ NIclazz == null ||
++ getUnpackerPtrMID == null) {
+ THROW_IOE("cannot init class members");
+ }
+ }
+@@ -142,8 +152,13 @@
+ JNIEXPORT jlong JNICALL
+ Java_com_sun_java_util_jar_pack_NativeUnpack_start(JNIEnv *env, jobject pObj,
+ jobject pBuf, jlong offset) {
+- unpacker* uPtr = get_unpacker(env, pObj);
+-
++ // try to get the unpacker pointer the hard way first, we do this to ensure
++ // valid object pointers and env is intact, if not now is good time to bail.
++ unpacker* uPtr = get_unpacker();
++ //fprintf(stderr, "start(%p) uPtr=%p initializing\n", pObj, uPtr);
++ if (uPtr == null) {
++ return -1;
++ }
+ // redirect our io to the default log file or whatever.
+ uPtr->redirect_stdio();
+
+@@ -159,7 +174,12 @@
+ else
+ { buf = (char*)buf + (size_t)offset; buflen -= (size_t)offset; }
+ }
+-
++ // before we start off we make sure there is no other error by the time we
++ // get here
++ if (uPtr->aborting()) {
++ THROW_IOE(uPtr->get_abort_message());
++ return 0;
++ }
+ uPtr->start(buf, buflen);
+ if (uPtr->aborting()) {
+ THROW_IOE(uPtr->get_abort_message());
+@@ -226,11 +246,14 @@
+
+ // We have fetched all the files.
+ // Now swallow up any remaining input.
+- if (uPtr->input_remaining() == 0)
++ if (uPtr->input_remaining() == 0) {
+ return null;
+- else
+- return env->NewDirectByteBuffer(uPtr->input_scan(),
+- uPtr->input_remaining());
++ } else {
++ bytes remaining_bytes;
++ remaining_bytes.malloc(uPtr->input_remaining());
++ remaining_bytes.copyFrom(uPtr->input_scan(), uPtr->input_remaining());
++ return env->NewDirectByteBuffer(remaining_bytes.ptr, remaining_bytes.len);
++ }
+ }
+
+ JNIEXPORT jlong JNICALL
+--- jdk/src/share/native/com/sun/java/util/jar/pack/unpack.cpp 2012-08-10 10:30:16.000000000 -0700
++++ jdk/src/share/native/com/sun/java/util/jar/pack/unpack.cpp 2013-03-09 08:44:48.000000000 -0800
+@@ -267,11 +267,13 @@
+ }
+
+ inline cpindex* cpool::getFieldIndex(entry* classRef) {
++ if (classRef == NULL) { abort("missing class reference"); return NULL; }
+ assert(classRef->tagMatches(CONSTANT_Class));
+ assert((uint)classRef->inord < (uint)tag_count[CONSTANT_Class]);
+ return &member_indexes[classRef->inord*2+0];
+ }
+ inline cpindex* cpool::getMethodIndex(entry* classRef) {
++ if (classRef == NULL) { abort("missing class reference"); return NULL; }
+ assert(classRef->tagMatches(CONSTANT_Class));
+ assert((uint)classRef->inord < (uint)tag_count[CONSTANT_Class]);
+ return &member_indexes[classRef->inord*2+1];
+@@ -1238,6 +1240,7 @@
+ entry& e = cpMap[i];
+ e.refs = U_NEW(entry*, e.nrefs = 2);
+ e.refs[0] = cp_band1.getRef();
++ CHECK;
+ e.refs[1] = cp_band2.getRef();
+ CHECK;
+ }
+@@ -1963,6 +1966,7 @@
+ int attrc = ADH_BYTE_CONTEXT(header);
+ int idx = ADH_BYTE_INDEX(header);
+ entry* name = attr_definition_name.getRef();
++ CHECK;
+ entry* layout = attr_definition_layout.getRef();
+ CHECK;
+ attr_defs[attrc].defineLayout(idx, name, layout->value.b.strval());
+@@ -2067,7 +2071,9 @@
+ if (ics[i].name == NO_ENTRY_YET) {
+ // Long form.
+ ics[i].outer = ic_outer_class.getRefN();
++ CHECK;
+ ics[i].name = ic_name.getRefN();
++ CHECK;
+ } else {
+ // Fill in outer and name based on inner.
+ bytes& n = ics[i].inner->value.b;
+@@ -2583,6 +2589,7 @@
+ e = b.getRefUsing(cp.getKQIndex());
+ else
+ e = b.getRefN();
++ CHECK;
+ switch (b.le_len) {
+ case 0: break;
+ case 1: putu1ref(e); break;
+@@ -2964,7 +2971,7 @@
+
+ void unpacker::read_bands() {
+ byte* rp0 = rp;
+-
++ CHECK;
+ read_file_header();
+ CHECK;
+
+@@ -3632,10 +3639,12 @@
+ // packed file and len is the length of the buffer.
+ // If null, the callback is used to fill an internal buffer.
+ void unpacker::start(void* packptr, size_t len) {
++ CHECK;
+ NOT_PRODUCT(debug_u = this);
+ if (packptr != null && len != 0) {
+ inbytes.set((byte*) packptr, len);
+ }
++ CHECK;
+ read_bands();
+ }
+
+@@ -3766,6 +3775,7 @@
+ NOT_PRODUCT(bc_superfield.setIndex(null));
+ NOT_PRODUCT(bc_supermethod.setIndex(null));
+ }
++ CHECK;
+
+ for (int curIP = 0; ; curIP++) {
+ int curPC = (int)(wpoffset() - codeBase);
+@@ -3879,7 +3889,8 @@
+ int coding = bc_initref.getInt();
+ // Find the nth overloading of <init> in classRef.
+ entry* ref = null;
+- cpindex* ix = (classRef == null)? null: cp.getMethodIndex(classRef);
++ cpindex* ix = cp.getMethodIndex(classRef);
++ CHECK;
+ for (int j = 0, which_init = 0; ; j++) {
+ ref = (ix == null)? null: ix->get(j);
+ if (ref == null) break; // oops, bad input
+@@ -4150,6 +4161,7 @@
+ case ADH_BYTE(ATTR_CONTEXT_CLASS, CLASS_ATTR_EnclosingMethod):
+ aname = cp.sym[cpool::s_EnclosingMethod];
+ putref(class_EnclosingMethod_RC.getRefN());
++ CHECK_0;
+ putref(class_EnclosingMethod_RDN.getRefN());
+ break;
+
+@@ -4168,6 +4180,7 @@
+ putu2(count = method_Exceptions_N.getInt());
+ for (j = 0; j < count; j++) {
+ putref(method_Exceptions_RC.getRefN());
++ CHECK_0;
+ }
+ break;
+
+@@ -4191,16 +4204,18 @@
+ // (253) [(1)(2)(2)]
+ // (254) [(1)(2)(2)(2)]
+ putu2(code_StackMapTable_offset.getInt());
++ CHECK_0;
+ for (int k = (tag - 251); k > 0; k--) {
+ put_stackmap_type();
++ CHECK_0;
+ }
+ } else {
+ // (255) [(1)NH[(2)]NH[(2)]]
+ putu2(code_StackMapTable_offset.getInt());
+ putu2(j2 = code_StackMapTable_local_N.getInt());
+- while (j2-- > 0) put_stackmap_type();
++ while (j2-- > 0) {put_stackmap_type(); CHECK_0;}
+ putu2(j2 = code_StackMapTable_stack_N.getInt());
+- while (j2-- > 0) put_stackmap_type();
++ while (j2-- > 0) {put_stackmap_type(); CHECK_0;}
+ }
+ }
+ break;
+@@ -4224,7 +4239,9 @@
+ bii += code_LocalVariableTable_span_O.getInt();
+ putu2(to_bci(bii) - bci);
+ putref(code_LocalVariableTable_name_RU.getRefN());
++ CHECK_0;
+ putref(code_LocalVariableTable_type_RS.getRefN());
++ CHECK_0;
+ putu2(code_LocalVariableTable_slot.getInt());
+ }
+ break;
+@@ -4239,7 +4256,9 @@
+ bii += code_LocalVariableTypeTable_span_O.getInt();
+ putu2(to_bci(bii) - bci);
+ putref(code_LocalVariableTypeTable_name_RU.getRefN());
++ CHECK_0;
+ putref(code_LocalVariableTypeTable_type_RS.getRefN());
++ CHECK_0;
+ putu2(code_LocalVariableTypeTable_slot.getInt());
+ }
+ break;
+@@ -4267,7 +4286,7 @@
+ break;
+ }
+ }
+-
++ CHECK_0;
+ if (aname == null) {
+ // Unparse a compressor-defined attribute.
+ layout_definition* lo = ad.getLayout(idx);
+@@ -4366,6 +4385,7 @@
+ julong indexMask = ad.flagIndexMask();
+
+ cur_class = class_this.getRef();
++ CHECK;
+ cur_super = class_super.getRef();
+
+ CHECK;
+@@ -4380,6 +4400,7 @@
+ putu2(num = class_interface_count.getInt());
+ for (i = 0; i < num; i++) {
+ putref(class_interface.getRef());
++ CHECK;
+ }
+
+ write_members(class_field_count.getInt(), ATTR_CONTEXT_FIELD);
+@@ -4460,7 +4481,9 @@
+ flags &= ~ACC_IC_LONG_FORM; // clear high bit if set to get clean zero
+ extra_ic.flags = flags;
+ extra_ic.outer = class_InnerClasses_outer_RCN.getRefN();
++ CHECK;
+ extra_ic.name = class_InnerClasses_name_RUN.getRefN();
++ CHECK;
+ // Detect if this is an exact copy of the global tuple.
+ if (global_ic != null) {
+ if (global_ic->flags != extra_ic.flags ||
--- jdk/src/share/native/com/sun/media/sound/SoundDefs.h 2012-08-10 10:30:18.000000000 -0700
-+++ jdk/src/share/native/com/sun/media/sound/SoundDefs.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/com/sun/media/sound/SoundDefs.h 2013-03-09 08:44:53.000000000 -0800
@@ -64,7 +64,7 @@
@@ -19065,7 +68920,7 @@
#endif
--- jdk/src/share/native/java/lang/fdlibm/include/fdlibm.h 2012-08-10 10:30:19.000000000 -0700
-+++ jdk/src/share/native/java/lang/fdlibm/include/fdlibm.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/java/lang/fdlibm/include/fdlibm.h 2013-03-09 08:44:53.000000000 -0800
@@ -24,6 +24,9 @@
* questions.
*/
@@ -19089,8 +68944,281 @@
#ifdef __NEWVALID /* special setup for Sun test regime */
#if defined(i386) || defined(i486) || \
defined(intel) || defined(x86) || defined(arm) || \
+--- jdk/src/share/native/sun/awt/image/awt_parseImage.c 2012-08-10 10:30:22.000000000 -0700
++++ jdk/src/share/native/sun/awt/image/awt_parseImage.c 2013-03-09 08:44:48.000000000 -0800
+@@ -34,6 +34,7 @@
+ #include "java_awt_color_ColorSpace.h"
+ #include "awt_Mlib.h"
+ #include "safe_alloc.h"
++#include "safe_math.h"
+
+ static int setHints(JNIEnv *env, BufImageS_t *imageP);
+
+@@ -114,6 +115,62 @@
+ return status;
+ }
+
++/* Verifies whether the channel offsets are sane and correspond to the type of
++ * the raster.
++ *
++ * Return value:
++ * 0: Failure: channel offsets are invalid
++ * 1: Success
++ */
++static int checkChannelOffsets(RasterS_t *rasterP, int dataArrayLength) {
++ int i, lastPixelOffset, lastScanOffset;
++ switch (rasterP->rasterType) {
++ case COMPONENT_RASTER_TYPE:
++ if (!SAFE_TO_MULT(rasterP->height, rasterP->scanlineStride)) {
++ return 0;
++ }
++ if (!SAFE_TO_MULT(rasterP->width, rasterP->pixelStride)) {
++ return 0;
++ }
++
++ lastScanOffset = (rasterP->height - 1) * rasterP->scanlineStride;
++ lastPixelOffset = (rasterP->width - 1) * rasterP->pixelStride;
++
++
++ if (!SAFE_TO_ADD(lastPixelOffset, lastScanOffset)) {
++ return 0;
++ }
++
++ lastPixelOffset += lastScanOffset;
++
++ for (i = 0; i < rasterP->numDataElements; i++) {
++ int off = rasterP->chanOffsets[i];
++ int size = lastPixelOffset + off;
++
++ if (off < 0 || !SAFE_TO_ADD(lastPixelOffset, off)) {
++ return 0;
++ }
++
++ if (size < lastPixelOffset || size >= dataArrayLength) {
++ // an overflow, or insufficient buffer capacity
++ return 0;
++ }
++ }
++ return 1;
++ case BANDED_RASTER_TYPE:
++ // NB:caller does not support the banded rasters yet,
++ // so this branch of the code must be re-defined in
++ // order to provide valid criteria for the data offsets
++ // verification, when/if banded rasters will be supported.
++ // At the moment, we prohibit banded rasters as well.
++ return 0;
++ default:
++ // PACKED_RASTER_TYPE: does not support channel offsets
++ // UNKNOWN_RASTER_TYPE: should not be used, likely indicates an error
++ return 0;
++ }
++}
++
+ /* Parse the raster. All of the raster information is returned in the
+ * rasterP structure.
+ *
+@@ -125,7 +182,6 @@
+ int awt_parseRaster(JNIEnv *env, jobject jraster, RasterS_t *rasterP) {
+ jobject joffs = NULL;
+ /* int status;*/
+- int isDiscrete = TRUE;
+
+ if (JNU_IsNull(env, jraster)) {
+ JNU_ThrowNullPointerException(env, "null Raster object");
+@@ -155,6 +211,9 @@
+ return -1;
+ }
+
++ // make sure that the raster type is initialized
++ rasterP->rasterType = UNKNOWN_RASTER_TYPE;
++
+ if (rasterP->numBands <= 0 ||
+ rasterP->numBands > MAX_NUMBANDS)
+ {
+@@ -165,9 +224,14 @@
+ return 0;
+ }
+
++ rasterP->sppsm.isUsed = 0;
++
+ if ((*env)->IsInstanceOf(env, rasterP->jsampleModel,
+ (*env)->FindClass(env,"java/awt/image/SinglePixelPackedSampleModel"))) {
+ jobject jmask, joffs, jnbits;
++
++ rasterP->sppsm.isUsed = 1;
++
+ rasterP->sppsm.maxBitSize = (*env)->GetIntField(env,
+ rasterP->jsampleModel,
+ g_SPPSMmaxBitID);
+@@ -254,7 +318,6 @@
+ }
+ rasterP->chanOffsets[0] = (*env)->GetIntField(env, jraster, g_BPRdataBitOffsetID);
+ rasterP->dataType = BYTE_DATA_TYPE;
+- isDiscrete = FALSE;
+ }
+ else {
+ rasterP->type = sun_awt_image_IntegerComponentRaster_TYPE_CUSTOM;
+@@ -265,7 +328,19 @@
+ return 0;
+ }
+
+- if (isDiscrete) {
++ // do basic validation of the raster structure
++ if (rasterP->width <= 0 || rasterP->height <= 0 ||
++ rasterP->pixelStride <= 0 || rasterP->scanlineStride <= 0)
++ {
++ // invalid raster
++ return -1;
++ }
++
++ // channel (data) offsets
++ switch (rasterP->rasterType) {
++ case COMPONENT_RASTER_TYPE:
++ case BANDED_RASTER_TYPE: // note that this routine does not support banded rasters at the moment
++ // get channel (data) offsets
+ rasterP->chanOffsets = NULL;
+ if (SAFE_TO_ALLOC_2(rasterP->numDataElements, sizeof(jint))) {
+ rasterP->chanOffsets =
+@@ -278,10 +353,21 @@
+ }
+ (*env)->GetIntArrayRegion(env, joffs, 0, rasterP->numDataElements,
+ rasterP->chanOffsets);
++ if (rasterP->jdata == NULL) {
++ // unable to verify the raster
++ return -1;
++ }
++ // verify whether channel offsets look sane
++ if (!checkChannelOffsets(rasterP, (*env)->GetArrayLength(env, rasterP->jdata))) {
++ return -1;
++ }
++ break;
++ default:
++ ; // PACKED_RASTER_TYPE does not use the channel offsets.
+ }
+
+- /* additioanl check for sppsm fields validity: make sure that
+- * size of raster samples doesn't exceed the data type cpacity.
++ /* additional check for sppsm fields validity: make sure that
++ * size of raster samples doesn't exceed the data type capacity.
+ */
+ if (rasterP->dataType > UNKNOWN_DATA_TYPE && /* data type has been recognized */
+ rasterP->sppsm.maxBitSize > 0 && /* raster has SPP sample model */
+@@ -631,6 +717,21 @@
+ }
+ else if (cmodelP->cmType == DIRECT_CM_TYPE || cmodelP->cmType == PACKED_CM_TYPE) {
+ int i;
++
++ /* do some sanity check first: make sure that
++ * - sample model is SinglePixelPackedSampleModel
++ * - number of bands in the raster corresponds to the number
++ * of color components in the color model
++ */
++ if (!rasterP->sppsm.isUsed ||
++ rasterP->numBands != cmodelP->numComponents)
++ {
++ /* given raster is not compatible with the color model,
++ * so the operation has to be aborted.
++ */
++ return -1;
++ }
++
+ if (cmodelP->maxNbits > 8) {
+ hintP->needToExpand = TRUE;
+ hintP->expandToNbits = cmodelP->maxNbits;
+--- jdk/src/share/native/sun/awt/image/awt_parseImage.h 2012-08-10 10:30:22.000000000 -0700
++++ jdk/src/share/native/sun/awt/image/awt_parseImage.h 2013-03-09 08:44:48.000000000 -0800
+@@ -95,6 +95,7 @@
+ jint offsets[MAX_NUMBANDS];
+ jint nBits[MAX_NUMBANDS];
+ jint maxBitSize;
++ jint isUsed; // flag to indicate whether the raster sample model is SPPSM
+ } SPPSampleModelS_t;
+
+ /* Struct that holds information for the Raster object */
+--- jdk/src/share/native/sun/awt/medialib/awt_ImagingLib.c 2012-08-10 10:30:26.000000000 -0700
++++ jdk/src/share/native/sun/awt/medialib/awt_ImagingLib.c 2013-03-09 08:44:48.000000000 -0800
+@@ -42,6 +42,7 @@
+ #include "awt_Mlib.h"
+ #include "gdefs.h"
+ #include "safe_alloc.h"
++#include "safe_math.h"
+
+ /***************************************************************************
+ * Definitions *
+@@ -1993,13 +1994,23 @@
+ unsigned char *dP = dataP;
+ #define NUM_LINES 10
+ int numLines = NUM_LINES;
+- int nbytes = rasterP->width*4*NUM_LINES;
++ /* it is safe to calculate the scan length, because width has been verified
++ * on creation of the mlib image
++ */
++ int scanLength = rasterP->width * 4;
++
++ int nbytes = 0;
++ if (!SAFE_TO_MULT(numLines, scanLength)) {
++ return -1;
++ }
++
++ nbytes = numLines * scanLength;
+
+ for (y=0; y < rasterP->height; y+=numLines) {
+ /* getData, one scanline at a time */
+ if (y+numLines > rasterP->height) {
+ numLines = rasterP->height - y;
+- nbytes = rasterP->width*4*numLines;
++ nbytes = numLines * scanLength;
+ }
+ jpixels = (*env)->CallObjectMethod(env, imageP->jimage,
+ g_BImgGetRGBMID, 0, y,
+@@ -2129,8 +2140,14 @@
+ if (cvtToDefault) {
+ int status = 0;
+ *mlibImagePP = (*sMlibSysFns.createFP)(MLIB_BYTE, 4, width, height);
++ if (*mlibImagePP == NULL) {
++ return -1;
++ }
+ cDataP = (unsigned char *) mlib_ImageGetData(*mlibImagePP);
+- /* Make sure the image is cleared */
++ /* Make sure the image is cleared.
++ * NB: the image dimension is already verified, so we can
++ * safely calculate the length of the buffer.
++ */
+ memset(cDataP, 0, width*height*4);
+
+ if (!isSrc) {
+@@ -2380,6 +2397,9 @@
+ case sun_awt_image_IntegerComponentRaster_TYPE_BYTE_PACKED_SAMPLES:
+ *mlibImagePP = (*sMlibSysFns.createFP)(MLIB_BYTE, rasterP->numBands,
+ width, height);
++ if (*mlibImagePP == NULL) {
++ return -1;
++ }
+ if (!isSrc) return 0;
+ cDataP = (unsigned char *) mlib_ImageGetData(*mlibImagePP);
+ return expandPackedBCR(env, rasterP, -1, cDataP);
+@@ -2388,6 +2408,9 @@
+ if (rasterP->sppsm.maxBitSize <= 8) {
+ *mlibImagePP = (*sMlibSysFns.createFP)(MLIB_BYTE, rasterP->numBands,
+ width, height);
++ if (*mlibImagePP == NULL) {
++ return -1;
++ }
+ if (!isSrc) return 0;
+ cDataP = (unsigned char *) mlib_ImageGetData(*mlibImagePP);
+ return expandPackedSCR(env, rasterP, -1, cDataP);
+@@ -2397,6 +2420,9 @@
+ if (rasterP->sppsm.maxBitSize <= 8) {
+ *mlibImagePP = (*sMlibSysFns.createFP)(MLIB_BYTE, rasterP->numBands,
+ width, height);
++ if (*mlibImagePP == NULL) {
++ return -1;
++ }
+ if (!isSrc) return 0;
+ cDataP = (unsigned char *) mlib_ImageGetData(*mlibImagePP);
+ return expandPackedICR(env, rasterP, -1, cDataP);
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv2x2_f.c 2012-08-10 10:30:27.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv2x2_f.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv2x2_f.c 2013-03-09 08:44:53.000000000 -0800
@@ -86,7 +86,7 @@
#endif /* MLIB_USE_FTOI_CLAMPING */
@@ -19131,7 +69259,7 @@
#endif /* _NO_LONGLONG */
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16ext.c 2012-08-10 10:30:27.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16ext.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16ext.c 2013-03-09 08:44:53.000000000 -0800
@@ -126,7 +126,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19172,7 +69300,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16nw.c 2012-08-10 10:30:27.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16nw.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_16nw.c 2013-03-09 08:44:53.000000000 -0800
@@ -94,7 +94,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19213,7 +69341,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8ext.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8ext.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8ext.c 2013-03-09 08:44:53.000000000 -0800
@@ -126,7 +126,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19254,7 +69382,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8nw.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8nw.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_8nw.c 2013-03-09 08:44:53.000000000 -0800
@@ -95,7 +95,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19295,7 +69423,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16ext.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16ext.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16ext.c 2013-03-09 08:44:53.000000000 -0800
@@ -126,7 +126,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19336,7 +69464,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16nw.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16nw.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageConv_u16nw.c 2013-03-09 08:44:53.000000000 -0800
@@ -94,7 +94,7 @@
#define D2I(x) CLAMP_S32((x) SAT_OFF)
@@ -19377,7 +69505,7 @@
/***************************************************************/
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageCopy_Bit.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageCopy_Bit.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageCopy_Bit.c 2013-03-09 08:44:53.000000000 -0800
@@ -95,7 +95,7 @@
dst = dp[0];
if (ld_offset + size < 32) {
@@ -19597,8 +69725,74 @@
}
#else /* _LONGLONG */
+--- jdk/src/share/native/sun/awt/medialib/mlib_ImageCreate.c 2012-08-10 10:30:28.000000000 -0700
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageCreate.c 2013-03-09 08:44:48.000000000 -0800
+@@ -120,6 +120,7 @@
+ #include "mlib_image.h"
+ #include "mlib_ImageRowTable.h"
+ #include "mlib_ImageCreate.h"
++#include "safe_math.h"
+
+ /***************************************************************/
+ mlib_image* mlib_ImageSet(mlib_image *image,
+@@ -247,28 +248,50 @@
+ return NULL;
+ };
+
++ if (!SAFE_TO_MULT(width, channels)) {
++ return NULL;
++ }
++
++ wb = width * channels;
++
+ switch (type) {
+ case MLIB_DOUBLE:
+- wb = width * channels * 8;
++ if (!SAFE_TO_MULT(wb, 8)) {
++ return NULL;
++ }
++ wb *= 8;
+ break;
+ case MLIB_FLOAT:
+ case MLIB_INT:
+- wb = width * channels * 4;
++ if (!SAFE_TO_MULT(wb, 4)) {
++ return NULL;
++ }
++ wb *= 4;
+ break;
+ case MLIB_USHORT:
+ case MLIB_SHORT:
+- wb = width * channels * 2;
++ if (!SAFE_TO_MULT(wb, 4)) {
++ return NULL;
++ }
++ wb *= 2;
+ break;
+ case MLIB_BYTE:
+- wb = width * channels;
++ // wb is ready
+ break;
+ case MLIB_BIT:
+- wb = (width * channels + 7) / 8;
++ if (!SAFE_TO_ADD(7, wb)) {
++ return NULL;
++ }
++ wb = (wb + 7) / 8;
+ break;
+ default:
+ return NULL;
+ }
+
++ if (!SAFE_TO_MULT(wb, height)) {
++ return NULL;
++ }
++
+ data = mlib_malloc(wb * height);
+ if (data == NULL) {
+ return NULL;
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_64.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_64.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_64.c 2013-03-09 08:44:53.000000000 -0800
@@ -168,7 +168,7 @@
}
@@ -19880,7 +70074,7 @@
dp[13] = t1;
dp[14] = t2;
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_Bit.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_Bit.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageLookUp_Bit.c 2013-03-09 08:44:53.000000000 -0800
@@ -88,7 +88,7 @@
} d64_2_f32;
@@ -20033,7 +70227,7 @@
((mlib_u32*)lh)[0] = l; ((mlib_u32*)lh)[1] = l;
((mlib_u32*)lh)[2] = l; ((mlib_u32*)lh)[3] = h;
--- jdk/src/share/native/sun/awt/medialib/mlib_ImageUtils.c 2012-08-10 10:30:28.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_ImageUtils.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_ImageUtils.c 2013-03-09 08:44:53.000000000 -0800
@@ -30,7 +30,7 @@
typedef union {
mlib_d64 db;
@@ -20044,7 +70238,7 @@
#else
mlib_s32 int0, int1;
--- jdk/src/share/native/sun/awt/medialib/mlib_c_ImageCopy.c 2012-08-10 10:30:29.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_c_ImageCopy.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_c_ImageCopy.c 2013-03-09 08:44:53.000000000 -0800
@@ -275,11 +275,11 @@
for (i = 0; j <= (b_size - 4); j += 4, i++) {
src0 = src1;
@@ -20144,7 +70338,7 @@
dp += SIZE;
sp += SIZE;
--- jdk/src/share/native/sun/awt/medialib/mlib_c_ImageLookUp_f.c 2012-08-10 10:30:29.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_c_ImageLookUp_f.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_c_ImageLookUp_f.c 2013-03-09 08:44:53.000000000 -0800
@@ -120,7 +120,7 @@
} \
}
@@ -21378,7 +71572,7 @@
dp[13] = t1;
dp[14] = t2;
--- jdk/src/share/native/sun/awt/medialib/mlib_image.h 2012-08-10 10:30:29.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_image.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_image.h 2013-03-09 08:44:53.000000000 -0800
@@ -27,9 +27,21 @@
#ifndef MLIB_IMAGE_H
#define MLIB_IMAGE_H
@@ -21403,7 +71597,7 @@
#include <mlib_status.h>
#include <mlib_sys.h>
--- jdk/src/share/native/sun/awt/medialib/mlib_sys.c 2012-08-10 10:30:30.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_sys.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_sys.c 2013-03-09 08:44:53.000000000 -0800
@@ -26,7 +26,7 @@
#include <stdlib.h>
@@ -21426,7 +71620,7 @@
#else
return (void *) memalign(8, size);
--- jdk/src/share/native/sun/awt/medialib/mlib_types.h 2012-08-10 10:30:30.000000000 -0700
-+++ jdk/src/share/native/sun/awt/medialib/mlib_types.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/mlib_types.h 2013-03-09 08:44:53.000000000 -0800
@@ -59,8 +59,16 @@
#if defined(__SUNPRO_C) || defined(__SUNPRO_CC) || defined(__GNUC__)
@@ -21444,6 +71638,65 @@
#if defined(MLIB_OS64BIT) || (defined(MACOSX) && defined(_LP64))
+--- jdk/src/share/native/sun/awt/medialib/safe_alloc.h 2012-08-10 10:30:30.000000000 -0700
++++ jdk/src/share/native/sun/awt/medialib/safe_alloc.h 2013-03-09 08:44:48.000000000 -0800
+@@ -41,5 +41,4 @@
+ (((w) > 0) && ((h) > 0) && ((sz) > 0) && \
+ (((0xffffffffu / ((juint)(w))) / ((juint)(h))) > ((juint)(sz))))
+
+-
+ #endif // __SAFE_ALLOC_H__
+--- jdk/src/share/native/sun/awt/medialib/safe_math.h 1969-12-31 16:00:00.000000000 -0800
++++ jdk/src/share/native/sun/awt/medialib/safe_math.h 2013-03-09 08:44:48.000000000 -0800
+@@ -0,0 +1,35 @@
++/*
++ * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation. Oracle designates this
++ * particular file as subject to the "Classpath" exception as provided
++ * by Oracle in the LICENSE file that accompanied this code.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++#ifndef __SAFE_MATH_H__
++#define __SAFE_MATH_H__
++
++#define SAFE_TO_MULT(a, b) \
++ (((a) > 0) && ((b) >= 0) && ((0x7fffffff / (a)) > (b)))
++
++#define SAFE_TO_ADD(a, b) \
++ (((a) >= 0) && ((b) >= 0) && ((0x7fffffff - (a)) > (b)))
++
++#endif // __SAFE_MATH_H__
+--- jdk/src/share/native/sun/awt/splashscreen/splashscreen_jpeg.c 2012-08-10 10:30:30.000000000 -0700
++++ jdk/src/share/native/sun/awt/splashscreen/splashscreen_jpeg.c 2013-03-09 08:44:48.000000000 -0800
+@@ -133,6 +133,10 @@
+ ImageFormat srcFormat;
+
+ jpeg_read_header(cinfo, TRUE);
++
++ // SplashScreen jpeg converter expects data in RGB format only
++ cinfo->out_color_space = JCS_RGB;
++
+ jpeg_start_decompress(cinfo);
+
+ SplashCleanup(splash);
--- jdk/src/share/native/sun/java2d/opengl/OGLBlitLoops.c 2012-08-10 10:31:05.000000000 -0700
+++ jdk/src/share/native/sun/java2d/opengl/OGLBlitLoops.c 2013-01-16 00:07:18.000000000 -0800
@@ -393,16 +393,7 @@
@@ -21476,7 +71729,7 @@
/**
--- jdk/src/share/native/sun/java2d/opengl/OGLFuncs.h 2012-08-10 10:31:05.000000000 -0700
-+++ jdk/src/share/native/sun/java2d/opengl/OGLFuncs.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/share/native/sun/java2d/opengl/OGLFuncs.h 2013-03-09 08:44:53.000000000 -0800
@@ -26,7 +26,7 @@
#ifndef OGLFuncs_h_Included
#define OGLFuncs_h_Included
@@ -21487,7 +71740,7 @@
#endif
#include "jni.h"
--- jdk/src/solaris/back/util_md.h 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/back/util_md.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/back/util_md.h 2013-03-09 08:44:53.000000000 -0800
@@ -51,7 +51,7 @@
/* On little endian machines, convert java big endian numbers. */
@@ -21498,7 +71751,7 @@
#define HOST_TO_JAVA_CHAR(x) (((x & 0xff) << 8) | ((x >> 8) & (0xff)))
#define HOST_TO_JAVA_SHORT(x) (((x & 0xff) << 8) | ((x >> 8) & (0xff)))
--- jdk/src/solaris/bin/ergo.c 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/bin/ergo.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/bin/ergo.c 2013-03-09 08:44:53.000000000 -0800
@@ -100,6 +100,27 @@
/* Compute physical memory by asking the OS */
uint64_t
@@ -21534,7 +71787,7 @@
+#endif
}
--- jdk/src/solaris/bin/ergo.h 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/bin/ergo.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/bin/ergo.h 2013-03-09 08:44:53.000000000 -0800
@@ -33,6 +33,10 @@
#include <sys/stat.h>
#include <unistd.h>
@@ -21547,7 +71800,7 @@
#include "java.h"
--- jdk/src/solaris/bin/ergo_i586.c 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/bin/ergo_i586.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/bin/ergo_i586.c 2013-03-09 08:44:53.000000000 -0800
@@ -106,7 +106,7 @@
#endif /* __solaris__ */
@@ -21629,7 +71882,7 @@
+ return NewPlatformStringArray(env, strv, argc);
+}
--- jdk/src/solaris/bin/java_md_solinux.c 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/bin/java_md_solinux.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/bin/java_md_solinux.c 2013-03-09 08:44:53.000000000 -0800
@@ -951,6 +951,19 @@
return exec_path;
}
@@ -21691,7 +71944,7 @@
}
--- jdk/src/solaris/bin/java_md_solinux.h 2012-08-10 10:31:14.000000000 -0700
-+++ jdk/src/solaris/bin/java_md_solinux.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/bin/java_md_solinux.h 2013-03-09 08:44:53.000000000 -0800
@@ -33,6 +33,10 @@
#include <sys/time.h>
#define CounterGet() (gethrtime()/1000)
@@ -22698,7 +72951,7 @@
}
--- jdk/src/solaris/classes/sun/awt/X11FontManager.java 2012-08-10 10:31:20.000000000 -0700
-+++ jdk/src/solaris/classes/sun/awt/X11FontManager.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/classes/sun/awt/X11FontManager.java 2013-03-09 08:44:53.000000000 -0800
@@ -213,7 +213,7 @@
if (fontID != null) {
fileName = (String)fontNameMap.get(fontID);
@@ -22811,8 +73064,85 @@
}
j++;
}
+--- jdk/src/solaris/classes/sun/nio/ch/SctpChannelImpl.java 2012-08-10 10:31:23.000000000 -0700
++++ jdk/src/solaris/classes/sun/nio/ch/SctpChannelImpl.java 2013-03-09 08:44:49.000000000 -0800
+@@ -1019,13 +1019,21 @@
+ boolean unordered,
+ int ppid)
+ throws IOException {
++ InetAddress addr = null; // no preferred address
++ int port = 0;
++ if (target != null) {
++ InetSocketAddress isa = Net.checkAddress(target);
++ addr = isa.getAddress();
++ port = isa.getPort();
++ }
++
+ int pos = bb.position();
+ int lim = bb.limit();
+ assert (pos <= lim);
+ int rem = (pos <= lim ? lim - pos : 0);
+
+- int written = send0(fd, ((DirectBuffer)bb).address() + pos,
+- rem, target, -1 /*121*/, streamNumber, unordered, ppid);
++ int written = send0(fd, ((DirectBuffer)bb).address() + pos, rem, addr,
++ port, -1 /*121*/, streamNumber, unordered, ppid);
+ if (written > 0)
+ bb.position(pos + written);
+ return written;
+@@ -1084,7 +1092,7 @@
+ long address, int length, boolean peek) throws IOException;
+
+ static native int send0(int fd, long address, int length,
+- SocketAddress target, int assocId, int streamNumber,
++ InetAddress addr, int port, int assocId, int streamNumber,
+ boolean unordered, int ppid) throws IOException;
+
+ private static native int checkConnect(FileDescriptor fd, boolean block,
+--- jdk/src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java 2012-08-10 10:31:23.000000000 -0700
++++ jdk/src/solaris/classes/sun/nio/ch/SctpMultiChannelImpl.java 2013-03-09 08:44:49.000000000 -0800
+@@ -880,13 +880,20 @@
+ boolean unordered,
+ int ppid)
+ throws IOException {
++ InetAddress addr = null; // no preferred address
++ int port = 0;
++ if (target != null) {
++ InetSocketAddress isa = Net.checkAddress(target);
++ addr = isa.getAddress();
++ port = isa.getPort();
++ }
+ int pos = bb.position();
+ int lim = bb.limit();
+ assert (pos <= lim);
+ int rem = (pos <= lim ? lim - pos : 0);
+
+- int written = send0(fd, ((DirectBuffer)bb).address() + pos,
+- rem, target, assocId, streamNumber, unordered, ppid);
++ int written = send0(fd, ((DirectBuffer)bb).address() + pos, rem, addr,
++ port, assocId, streamNumber, unordered, ppid);
+ if (written > 0)
+ bb.position(pos + written);
+ return written;
+@@ -967,13 +974,14 @@
+ private static int send0(int fd,
+ long address,
+ int length,
+- SocketAddress target,
++ InetAddress addr,
++ int port,
+ int assocId,
+ int streamNumber,
+ boolean unordered,
+ int ppid)
+ throws IOException {
+- return SctpChannelImpl.send0(fd, address, length, target, assocId,
++ return SctpChannelImpl.send0(fd, address, length, addr, port, assocId,
+ streamNumber, unordered, ppid);
+ }
+
--- jdk/src/solaris/classes/sun/nio/fs/DefaultFileSystemProvider.java 2012-08-10 10:31:24.000000000 -0700
-+++ jdk/src/solaris/classes/sun/nio/fs/DefaultFileSystemProvider.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/classes/sun/nio/fs/DefaultFileSystemProvider.java 2013-03-09 08:44:53.000000000 -0800
@@ -68,7 +68,7 @@
return createProvider("sun.nio.fs.SolarisFileSystemProvider");
if (osname.equals("Linux"))
@@ -23253,7 +73583,7 @@
x.rethrowAsIOException(this);
--- jdk/src/solaris/classes/sun/print/UnixPrintServiceLookup.java 2012-08-10 10:31:25.000000000 -0700
-+++ jdk/src/solaris/classes/sun/print/UnixPrintServiceLookup.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/classes/sun/print/UnixPrintServiceLookup.java 2013-03-09 08:44:53.000000000 -0800
@@ -125,6 +125,7 @@
static boolean isBSD() {
@@ -23263,7 +73593,7 @@
}
--- jdk/src/solaris/javavm/export/jvm_md.h 2012-08-10 10:31:28.000000000 -0700
-+++ jdk/src/solaris/javavm/export/jvm_md.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/javavm/export/jvm_md.h 2013-03-09 08:44:53.000000000 -0800
@@ -75,7 +75,11 @@
#define JVM_O_O_APPEND O_APPEND
#define JVM_O_EXCL O_EXCL
@@ -23277,7 +73607,7 @@
/* Signals */
--- jdk/src/solaris/native/com/sun/management/UnixOperatingSystem_md.c 2012-08-10 10:31:28.000000000 -0700
-+++ jdk/src/solaris/native/com/sun/management/UnixOperatingSystem_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/com/sun/management/UnixOperatingSystem_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -168,6 +168,9 @@
/*
* XXXBSD: there's no way available to get swap info in
@@ -23328,7 +73658,7 @@
// throw_internal_error(env, "Unimplemented in FreeBSD");
return (100);
--- jdk/src/solaris/native/java/io/UnixFileSystem_md.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/io/UnixFileSystem_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/io/UnixFileSystem_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -146,7 +146,6 @@
return rv;
}
@@ -23338,7 +73668,7 @@
Java_java_io_UnixFileSystem_setPermission(JNIEnv *env, jobject this,
jobject file,
--- jdk/src/solaris/native/java/lang/ProcessEnvironment_md.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/lang/ProcessEnvironment_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/lang/ProcessEnvironment_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -53,7 +53,7 @@
for (i = 0; environ[i]; i++) {
@@ -23358,7 +73688,7 @@
const char * valBeg = varEnd + 1;
jsize varLength = varEnd - environ[i];
--- jdk/src/solaris/native/java/lang/UNIXProcess_md.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/lang/UNIXProcess_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/lang/UNIXProcess_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -394,7 +394,17 @@
return c >= '0' && c <= '9';
}
@@ -23387,7 +73717,7 @@
static int
moveDescriptor(int fd_from, int fd_to)
--- jdk/src/solaris/native/java/lang/java_props_md.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/lang/java_props_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/lang/java_props_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -151,7 +151,7 @@
lc = setlocale(cat, NULL);
#endif
@@ -23418,7 +73748,7 @@
sprops.language = "en";
sprops.encoding = "ISO8859-1";
--- jdk/src/solaris/native/java/net/Inet4AddressImpl.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/net/Inet4AddressImpl.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/Inet4AddressImpl.c 2013-03-09 08:44:53.000000000 -0800
@@ -669,11 +669,11 @@
sizeof(struct sockaddr));
if (n < 0 && errno != EINPROGRESS ) {
@@ -23449,7 +73779,7 @@
#endif /* __linux__ */
close(fd);
--- jdk/src/solaris/native/java/net/Inet6AddressImpl.c 2012-08-10 10:31:30.000000000 -0700
-+++ jdk/src/solaris/native/java/net/Inet6AddressImpl.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/Inet6AddressImpl.c 2013-03-09 08:44:53.000000000 -0800
@@ -512,11 +512,11 @@
n = sendto(fd, sendbuf, plen, 0, (struct sockaddr*) him, sizeof(struct sockaddr_in6));
if (n < 0 && errno != EINPROGRESS) {
@@ -23480,7 +73810,7 @@
#endif /* __linux__ */
close(fd);
--- jdk/src/solaris/native/java/net/NetworkInterface.c 2012-08-10 10:31:31.000000000 -0700
-+++ jdk/src/solaris/native/java/net/NetworkInterface.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/NetworkInterface.c 2013-03-09 08:44:53.000000000 -0800
@@ -60,14 +60,18 @@
#include <sys/param.h>
#include <sys/ioctl.h>
@@ -23528,7 +73858,7 @@
#endif
--- jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c 2012-08-10 10:31:31.000000000 -0700
-+++ jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/PlainDatagramSocketImpl.c 2013-03-09 08:44:53.000000000 -0800
@@ -23,12 +23,12 @@
* questions.
*/
@@ -23566,8 +73896,129 @@
len = sizeof(struct sockaddr_in);
}
JVM_Connect(fd, (struct sockaddr *)&addr, len);
+@@ -1350,7 +1358,7 @@
+ * value is an InetAddress.
+ */
+ #ifdef AF_INET6
+-#if defined(__solaris__) || defined(MACOSX)
++#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
+ if (ipv6_available()) {
+ mcast_set_if_by_addr_v6(env, this, fd, value);
+ } else {
+@@ -1373,7 +1381,7 @@
+ * value is a NetworkInterface.
+ */
+ #ifdef AF_INET6
+-#if defined(__solaris__) || defined(MACOSX)
++#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
+ if (ipv6_available()) {
+ mcast_set_if_by_if_v6(env, this, fd, value);
+ } else {
+@@ -1456,7 +1464,7 @@
+ static void setMulticastLoopbackMode(JNIEnv *env, jobject this, int fd,
+ jint opt, jobject value) {
+ #ifdef AF_INET6
+-#if defined(__solaris__) || defined(MACOSX)
++#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
+ if (ipv6_available()) {
+ mcast_set_loop_v6(env, this, fd, value);
+ } else {
+@@ -2030,7 +2038,7 @@
+ }
+ /* setsockopt to be correct ttl */
+ #ifdef AF_INET6
+-#if defined(__solaris__) || defined(MACOSX)
++#if defined(__solaris__) || defined(_ALLBSD_SOURCE)
+ if (ipv6_available()) {
+ setHopLimit(env, fd, ttl);
+ } else {
+--- jdk/src/solaris/native/java/net/bsd_close.c 2012-08-10 10:31:31.000000000 -0700
++++ jdk/src/solaris/native/java/net/bsd_close.c 2013-03-09 08:44:53.000000000 -0800
+@@ -345,6 +345,76 @@
+ * signal other than our wakeup signal.
+ */
+ int NET_Timeout(int s, long timeout) {
++/*
++ * On MacOS X, poll(2) is not working correctly, so a select(2) based
++ * implementation is preferred. See
++ *
++ * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7131399
++ *
++ * However, on FreeBSD, the select(2) based implementation can cause
++ * crashes under load and poll(2) is preferred. See
++ *
++ * http://docs.freebsd.org/cgi/getmsg.cgi?fetch=215525+0+current/freebsd-java
++ *
++ * Other *BSD will use poll(2) for now, but please adjust as appropriate.
++ */
++#ifndef __APPLE__
++ long prevtime = 0, newtime;
++ struct timeval t;
++ fdEntry_t *fdEntry = getFdEntry(s);
++
++ /*
++ * Check that fd hasn't been closed.
++ */
++ if (fdEntry == NULL) {
++ errno = EBADF;
++ return -1;
++ }
++
++ /*
++ * Pick up current time as may need to adjust timeout
++ */
++ if (timeout > 0) {
++ gettimeofday(&t, NULL);
++ prevtime = t.tv_sec * 1000 + t.tv_usec / 1000;
++ }
++
++ for(;;) {
++ struct pollfd pfd;
++ int rv;
++ threadEntry_t self;
++
++ /*
++ * Poll the fd. If interrupted by our wakeup signal
++ * errno will be set to EBADF.
++ */
++ pfd.fd = s;
++ pfd.events = POLLIN | POLLERR;
++
++ startOp(fdEntry, &self);
++ rv = poll(&pfd, 1, timeout);
++ endOp(fdEntry, &self);
++
++ /*
++ * If interrupted then adjust timeout. If timeout
++ * has expired return 0 (indicating timeout expired).
++ */
++ if (rv < 0 && errno == EINTR) {
++ if (timeout > 0) {
++ gettimeofday(&t, NULL);
++ newtime = t.tv_sec * 1000 + t.tv_usec / 1000;
++ timeout -= newtime - prevtime;
++ if (timeout <= 0) {
++ return 0;
++ }
++ prevtime = newtime;
++ }
++ } else {
++ return rv;
++ }
++
++ }
++#else
+ long prevtime = 0, newtime;
+ struct timeval t, *tp = &t;
+ fdEntry_t *fdEntry = getFdEntry(s);
+@@ -414,4 +484,5 @@
+ }
+
+ }
++#endif
+ }
--- jdk/src/solaris/native/java/net/net_util_md.c 2012-08-10 10:31:31.000000000 -0700
-+++ jdk/src/solaris/native/java/net/net_util_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/net_util_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -45,6 +45,10 @@
#endif
#endif
@@ -23604,7 +74055,7 @@
return setsockopt(fd, level, opt, arg, len);
}
--- jdk/src/solaris/native/java/net/net_util_md.h 2012-08-10 10:31:31.000000000 -0700
-+++ jdk/src/solaris/native/java/net/net_util_md.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/net/net_util_md.h 2013-03-09 08:44:53.000000000 -0800
@@ -37,7 +37,7 @@
#endif
@@ -23615,7 +74066,7 @@
extern int NET_Read(int s, void* buf, size_t len);
extern int NET_RecvFrom(int s, void *buf, int len, unsigned int flags,
--- jdk/src/solaris/native/java/util/TimeZone_md.c 2012-08-10 10:31:31.000000000 -0700
-+++ jdk/src/solaris/native/java/util/TimeZone_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/java/util/TimeZone_md.c 2013-03-09 08:44:53.000000000 -0800
@@ -123,7 +123,7 @@
return NULL;
}
@@ -23650,7 +74101,7 @@
-#endif /* MACOSX */
+#endif /* _ALLBSD_SOURCE */
--- jdk/src/solaris/native/sun/awt/awt_Font.c 2012-08-10 10:31:32.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_Font.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_Font.c 2013-03-09 08:44:53.000000000 -0800
@@ -334,7 +334,7 @@
if (strcmp(style, "regular") == 0) {
altstyle = "roman";
@@ -23661,7 +74112,7 @@
family = "lucida";
}
--- jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.c 2012-08-10 10:31:32.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_GraphicsEnv.c 2013-03-09 08:44:53.000000000 -0800
@@ -123,7 +123,7 @@
*/
@@ -23722,7 +74173,7 @@
return point;
}
--- jdk/src/solaris/native/sun/awt/awt_InputMethod.c 2012-08-10 10:31:32.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_InputMethod.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_InputMethod.c 2013-03-09 08:44:53.000000000 -0800
@@ -67,7 +67,7 @@
XIMPreeditDrawCallbackStruct *);
static void PreeditCaretCallback(XIC, XPointer,
@@ -23963,7 +74414,7 @@
adjustStatusWindow(window);
AWT_UNLOCK();
--- jdk/src/solaris/native/sun/awt/awt_Robot.c 2012-08-10 10:31:32.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_Robot.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_Robot.c 2013-03-09 08:44:53.000000000 -0800
@@ -45,7 +45,7 @@
#include "wsutils.h"
#include "list.h"
@@ -23974,7 +74425,7 @@
#endif
--- jdk/src/solaris/native/sun/awt/awt_util.h 2012-08-10 10:31:33.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_util.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_util.h 2013-03-09 08:44:53.000000000 -0800
@@ -187,7 +187,7 @@
#ifdef __solaris__
extern Widget awt_util_getXICStatusAreaWindow(Widget w);
@@ -23994,7 +74445,7 @@
Cardinal num_refs; /* Number of referencing widgets. */
Cardinal max_refs; /* Maximum length of refs array. */
--- jdk/src/solaris/native/sun/awt/awt_wm.c 2012-08-10 10:31:33.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_wm.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_wm.c 2013-03-09 08:44:53.000000000 -0800
@@ -121,12 +121,19 @@
static Atom XA_KWM_WIN_MAXIMIZED;
@@ -24093,7 +74544,7 @@
}
else {
--- jdk/src/solaris/native/sun/awt/awt_wm.h 2012-08-10 10:31:33.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/awt_wm.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/awt_wm.h 2013-03-09 08:44:53.000000000 -0800
@@ -45,7 +45,10 @@
KDE2_WM,
SAWFISH_WM,
@@ -24107,7 +74558,7 @@
extern void awt_wm_init(void);
--- jdk/src/solaris/native/sun/awt/extutil.h 2012-08-10 10:31:33.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/extutil.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/extutil.h 2013-03-09 08:44:53.000000000 -0800
@@ -58,7 +58,7 @@
*/
/* $XFree86: xc/include/extensions/extutil.h,v 1.5 2001/01/17 17:53:20 dawes Exp $ */
@@ -24124,7 +74575,7 @@
-#endif /* __linux__ || MACOSX */
+#endif /* __linux__ || _ALLBSD_SOURCE */
--- jdk/src/solaris/native/sun/awt/fontpath.c 2012-08-10 10:31:33.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/fontpath.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/fontpath.c 2013-03-09 08:44:53.000000000 -0800
@@ -23,7 +23,7 @@
* questions.
*/
@@ -24203,7 +74654,7 @@
#endif
#endif /* !HEADLESS */
--- jdk/src/solaris/native/sun/awt/robot_common.c 2012-08-10 10:31:35.000000000 -0700
-+++ jdk/src/solaris/native/sun/awt/robot_common.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/awt/robot_common.c 2013-03-09 08:44:53.000000000 -0800
@@ -27,7 +27,7 @@
#error This file should not be included in headless library
#endif
@@ -24225,7 +74676,7 @@
#include <signal.h>
#include <inttypes.h>
--- jdk/src/solaris/native/sun/java2d/j2d_md.h 2012-08-10 10:31:35.000000000 -0700
-+++ jdk/src/solaris/native/sun/java2d/j2d_md.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/java2d/j2d_md.h 2013-03-09 08:44:53.000000000 -0800
@@ -28,9 +28,9 @@
#include <sys/types.h>
@@ -24239,7 +74690,7 @@
#endif /* __linux__ || MACOSX */
--- jdk/src/solaris/native/sun/java2d/loops/vis_FuncArray.c 2012-08-10 10:31:36.000000000 -0700
-+++ jdk/src/solaris/native/sun/java2d/loops/vis_FuncArray.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/java2d/loops/vis_FuncArray.c 2013-03-09 08:44:53.000000000 -0800
@@ -804,7 +804,7 @@
static int initialized;
static int usevis = JNI_TRUE;
@@ -24250,8 +74701,27 @@
#else
# define ULTRA_CHIP "sun4u"
--- jdk/src/solaris/native/sun/nio/ch/DatagramChannelImpl.c 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/DatagramChannelImpl.c 2013-01-16 08:58:15.000000000 -0800
-@@ -77,7 +77,7 @@
++++ jdk/src/solaris/native/sun/nio/ch/DatagramChannelImpl.c 2013-03-09 08:44:53.000000000 -0800
+@@ -46,8 +46,6 @@
+
+ #include "sun_nio_ch_DatagramChannelImpl.h"
+
+-static jfieldID isa_addrID; /* address in java.net.InetSocketAddress */
+-static jfieldID isa_portID; /* port in java.net.InetSocketAddress */
+ static jfieldID dci_senderID; /* sender in sun.nio.ch.DatagramChannelImpl */
+ static jfieldID dci_senderAddrID; /* sender InetAddress in sun.nio.ch.DatagramChannelImpl */
+ static jfieldID dci_senderPortID; /* sender port in sun.nio.ch.DatagramChannelImpl */
+@@ -61,9 +59,6 @@
+ isa_class = (*env)->NewGlobalRef(env, clazz);
+ isa_ctorID = (*env)->GetMethodID(env, clazz, "<init>",
+ "(Ljava/net/InetAddress;I)V");
+- isa_addrID = (*env)->GetFieldID(env, clazz, "addr",
+- "Ljava/net/InetAddress;");
+- isa_portID = (*env)->GetFieldID(env, clazz, "port", "I");
+
+ clazz = (*env)->FindClass(env, "sun/nio/ch/DatagramChannelImpl");
+ dci_senderID = (*env)->GetFieldID(env, clazz, "sender",
+@@ -77,7 +72,7 @@
JNIEXPORT void JNICALL
Java_sun_nio_ch_DatagramChannelImpl_disconnect0(JNIEnv *env, jobject this,
@@ -24260,7 +74730,7 @@
{
jint fd = fdval(env, fdo);
int rv;
-@@ -94,7 +94,7 @@
+@@ -94,7 +89,7 @@
memset(&sa, 0, sizeof(sa));
#ifdef AF_INET6
@@ -24269,8 +74739,25 @@
struct sockaddr_in6 *him6 = (struct sockaddr_in6 *)&sa;
#if defined(_ALLBSD_SOURCE)
him6->sin6_family = AF_INET6;
+@@ -212,15 +207,13 @@
+ JNIEXPORT jint JNICALL
+ Java_sun_nio_ch_DatagramChannelImpl_send0(JNIEnv *env, jobject this,
+ jboolean preferIPv6, jobject fdo, jlong address,
+- jint len, jobject dest)
++ jint len, jobject destAddress, jint destPort)
+ {
+ jint fd = fdval(env, fdo);
+ void *buf = (void *)jlong_to_ptr(address);
+ SOCKADDR sa;
+ int sa_len = SOCKADDR_LEN;
+ jint n = 0;
+- jobject destAddress = (*env)->GetObjectField(env, dest, isa_addrID);
+- jint destPort = (*env)->GetIntField(env, dest, isa_portID);
+
+ if (len > MAX_PACKET_LEN) {
+ len = MAX_PACKET_LEN;
--- jdk/src/solaris/native/sun/nio/ch/DatagramDispatcher.c 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/DatagramDispatcher.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/ch/DatagramDispatcher.c 2013-03-09 08:44:53.000000000 -0800
@@ -36,7 +36,6 @@
#include <sys/socket.h>
@@ -24336,7 +74823,7 @@
result = sendmsg(fd, &m, 0);
if (result < 0 && errno == ECONNREFUSED) {
--- jdk/src/solaris/native/sun/nio/ch/FileChannelImpl.c 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/FileChannelImpl.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/ch/FileChannelImpl.c 2013-03-09 08:44:53.000000000 -0800
@@ -201,7 +201,7 @@
return IOS_THROWN;
}
@@ -24356,7 +74843,7 @@
if (numBytes > 0)
--- jdk/src/solaris/native/sun/nio/ch/FileDispatcherImpl.c 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/FileDispatcherImpl.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/ch/FileDispatcherImpl.c 2013-03-09 08:44:53.000000000 -0800
@@ -200,7 +200,7 @@
}
lockResult = fcntl(fd, cmd, &fl);
@@ -24389,7 +74876,7 @@
JNU_ThrowIOExceptionWithLastError(env, "Release failed");
}
--- jdk/src/solaris/native/sun/nio/ch/Sctp.h 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/Sctp.h 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/ch/Sctp.h 2013-03-09 08:44:53.000000000 -0800
@@ -320,8 +320,20 @@
typedef int sctp_peeloff_func(int sock, sctp_assoc_t id);
@@ -24429,8 +74916,71 @@
jboolean loadSocketExtensionFuncs(JNIEnv* env);
#endif /* !SUN_NIO_CH_SCTP_H */
+--- jdk/src/solaris/native/sun/nio/ch/SctpChannelImpl.c 2012-08-10 10:31:37.000000000 -0700
++++ jdk/src/solaris/native/sun/nio/ch/SctpChannelImpl.c 2013-03-09 08:44:53.000000000 -0800
+@@ -67,8 +67,6 @@
+ static jmethodID spc_ctrID; /* sun.nio.ch.SctpPeerAddressChanged.<init> */
+ static jclass ss_class; /* sun.nio.ch.SctpShutdown */
+ static jmethodID ss_ctrID; /* sun.nio.ch.SctpShutdown.<init> */
+-static jfieldID isa_addrID; /* java.net.InetSocketAddress.addr */
+-static jfieldID isa_portID; /* java.net.InetSocketAddress.port */
+
+ /* defined in SctpNet.c */
+ jobject SockAddrToInetSocketAddress(JNIEnv* env, struct sockaddr* addr);
+@@ -136,13 +134,6 @@
+ CHECK_NULL(ss_class);
+ ss_ctrID = (*env)->GetMethodID(env, cls, "<init>", "(I)V");
+ CHECK_NULL(ss_ctrID);
+-
+- /* InetSocketAddress */
+- cls = (*env)->FindClass(env, "java/net/InetSocketAddress");
+- CHECK_NULL(cls);
+- isa_addrID = (*env)->GetFieldID(env, cls, "addr", "Ljava/net/InetAddress;");
+- CHECK_NULL(isa_addrID);
+- isa_portID = (*env)->GetFieldID(env, cls, "port", "I");
+ }
+
+ void getControlData
+@@ -507,12 +498,12 @@
+ /*
+ * Class: sun_nio_ch_SctpChannelImpl
+ * Method: send0
+- * Signature: (IJILjava/net/SocketAddress;IIZI)I
++ * Signature: (IJILjava/net/InetAddress;IIIZI)I
+ */
+ JNIEXPORT jint JNICALL Java_sun_nio_ch_SctpChannelImpl_send0
+ (JNIEnv *env, jclass klass, jint fd, jlong address, jint length,
+- jobject saTarget, jint assocId, jint streamNumber, jboolean unordered,
+- jint ppid) {
++ jobject targetAddress, jint targetPort, jint assocId, jint streamNumber,
++ jboolean unordered, jint ppid) {
+ SOCKADDR sa;
+ int sa_len = sizeof(sa);
+ ssize_t rv = 0;
+@@ -524,17 +515,13 @@
+ struct controlData cdata[1];
+
+ /* SctpChannel:
+- * saTarget may contain the preferred address or NULL to use primary,
++ * targetAddress may contain the preferred address or NULL to use primary,
+ * assocId will always be -1
+ * SctpMultiChannell:
+- * Setup new association, saTarget will contain address, assocId = -1
+- * Association already existing, assocId != -1, saTarget = preferred addr
++ * Setup new association, targetAddress will contain address, assocId = -1
++ * Association already existing, assocId != -1, targetAddress = preferred addr
+ */
+- if (saTarget != NULL /*&& assocId <= 0*/) {
+-
+- jobject targetAddress = (*env)->GetObjectField(env, saTarget, isa_addrID);
+- jint targetPort = (*env)->GetIntField(env, saTarget, isa_portID);
+-
++ if (targetAddress != NULL /*&& assocId <= 0*/) {
+ if (NET_InetAddressToSockaddr(env, targetAddress, targetPort,
+ (struct sockaddr *)&sa,
+ &sa_len, JNI_TRUE) != 0) {
--- jdk/src/solaris/native/sun/nio/ch/SctpNet.c 2012-08-10 10:31:37.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/ch/SctpNet.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/ch/SctpNet.c 2013-03-09 08:44:53.000000000 -0800
@@ -58,6 +58,7 @@
*/
jboolean loadSocketExtensionFuncs
@@ -24459,7 +75009,7 @@
/**
--- jdk/src/solaris/native/sun/nio/fs/genUnixConstants.c 2012-08-10 10:31:38.000000000 -0700
-+++ jdk/src/solaris/native/sun/nio/fs/genUnixConstants.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/nio/fs/genUnixConstants.c 2013-03-09 08:44:53.000000000 -0800
@@ -26,7 +26,7 @@
#include <stdio.h>
#include <errno.h>
@@ -24483,7 +75033,7 @@
// mode masks
emitX("S_IAMB",
--- jdk/src/solaris/native/sun/security/pkcs11/j2secmod_md.c 2012-08-10 10:31:38.000000000 -0700
-+++ jdk/src/solaris/native/sun/security/pkcs11/j2secmod_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/security/pkcs11/j2secmod_md.c 2013-03-09 08:44:54.000000000 -0800
@@ -36,6 +36,11 @@
#include "j2secmod.h"
@@ -24519,7 +75069,7 @@
dprintf2("-handle: %u (0X%X)\n", hModule, hModule);
--- jdk/src/solaris/native/sun/xawt/XWindow.c 2012-08-10 10:31:38.000000000 -0700
-+++ jdk/src/solaris/native/sun/xawt/XWindow.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/native/sun/xawt/XWindow.c 2013-03-09 08:44:54.000000000 -0800
@@ -867,7 +867,7 @@
{
KeySym originalKeysym = *keysym;
@@ -24530,7 +75080,7 @@
* not to echo on JTextField when the NumLock is on. The
* keysyms will be 0, because the last parameter 2 is not defined.
--- jdk/src/solaris/transport/socket/socket_md.c 2012-08-10 10:31:39.000000000 -0700
-+++ jdk/src/solaris/transport/socket/socket_md.c 2013-01-16 08:58:15.000000000 -0800
++++ jdk/src/solaris/transport/socket/socket_md.c 2013-03-09 08:44:54.000000000 -0800
@@ -35,7 +35,8 @@
#include <sys/time.h>
#ifdef __solaris__
@@ -25154,8 +75704,92 @@
+}
+#endif /* IDE_STANDALONE */
--- jdk/src/windows/bin/java_md.c 2012-08-10 10:31:39.000000000 -0700
-+++ jdk/src/windows/bin/java_md.c 2013-01-16 08:58:12.000000000 -0800
-@@ -1357,3 +1357,89 @@
++++ jdk/src/windows/bin/java_md.c 2013-03-09 08:44:50.000000000 -0800
+@@ -101,7 +101,6 @@
+ /* funtion in awt.dll (src/windows/native/sun/java2d/d3d/D3DPipelineManager.cpp) */
+ #define D3D_PRELOAD_FUNC "preloadD3D"
+
+-
+ /* Extracts value of a parameter with the specified name
+ * from command line argument (returns pointer in the argument).
+ * Returns NULL if the argument does not contains the parameter.
+@@ -202,7 +201,7 @@
+ }
+
+ JLI_Snprintf(jvmcfg, so_jvmcfg, "%s%slib%s%s%sjvm.cfg",
+- jrepath, FILESEP, FILESEP, (char*)GetArch(), FILESEP);
++ jrepath, FILESEP, FILESEP, (char*)GetArch(), FILESEP);
+
+ /* Find the specified JVM type */
+ if (ReadKnownVMs(jvmcfg, JNI_FALSE) < 1) {
+@@ -276,7 +275,8 @@
+ #endif
+ #ifdef CRT_DLL
+ if (GetJREPath(crtpath, MAXPATHLEN)) {
+- if (JLI_StrLen(crtpath) + JLI_StrLen("\\bin\\") + JLI_StrLen(CRT_DLL) >= MAXPATHLEN) {
++ if (JLI_StrLen(crtpath) + JLI_StrLen("\\bin\\") +
++ JLI_StrLen(CRT_DLL) >= MAXPATHLEN) {
+ JLI_ReportErrorMessage(JRE_ERROR11);
+ return JNI_FALSE;
+ }
+@@ -347,7 +347,8 @@
+ if (JLI_StrChr(jvmtype, '/') || JLI_StrChr(jvmtype, '\\')) {
+ JLI_Snprintf(jvmpath, jvmpathsize, "%s\\" JVM_DLL, jvmtype);
+ } else {
+- JLI_Snprintf(jvmpath, jvmpathsize, "%s\\bin\\%s\\" JVM_DLL, jrepath, jvmtype);
++ JLI_Snprintf(jvmpath, jvmpathsize, "%s\\bin\\%s\\" JVM_DLL,
++ jrepath, jvmtype);
+ }
+ if (stat(jvmpath, &s) == 0) {
+ return JNI_TRUE;
+@@ -525,6 +526,37 @@
+ }
+ return (counts * 1000 * 1000)/counterFrequency.QuadPart;
+ }
++/*
++ * windows snprintf does not guarantee a null terminator in the buffer,
++ * if the computed size is equal to or greater than the buffer size,
++ * as well as error conditions. This function guarantees a null terminator
++ * under all these conditions. An unreasonable buffer or size will return
++ * an error value. Under all other conditions this function will return the
++ * size of the bytes actually written minus the null terminator, similar
++ * to ansi snprintf api. Thus when calling this function the caller must
++ * ensure storage for the null terminator.
++ */
++int
++JLI_Snprintf(char* buffer, size_t size, const char* format, ...) {
++ int rc;
++ va_list vl;
++ if (size == 0 || buffer == NULL)
++ return -1;
++ buffer[0] = '\0';
++ va_start(vl, format);
++ rc = vsnprintf(buffer, size, format, vl);
++ va_end(vl);
++ /* force a null terminator, if something is amiss */
++ if (rc < 0) {
++ /* apply ansi semantics */
++ buffer[size - 1] = '\0';
++ return size;
++ } else if (rc == size) {
++ /* force a null terminator */
++ buffer[size - 1] = '\0';
++ }
++ return rc;
++}
+
+ void
+ JLI_ReportErrorMessage(const char* fmt, ...) {
+@@ -880,7 +912,7 @@
+ */
+ void
+ ExecJRE(char *jre, char **argv) {
+- int len;
++ jint len;
+ char path[MAXPATHLEN + 1];
+
+ const char *progname = GetProgramName();
+@@ -1357,3 +1389,92 @@
{
return JNI_FALSE;
}
@@ -25219,7 +75853,10 @@
+ // we add the indicator
+ tlen = 1 + JLI_StrLen(strv[i]) + 1;
+ nargv[i] = (char *) JLI_MemAlloc(tlen);
-+ JLI_Snprintf(nargv[i], tlen, "%c%s", arg_expand ? 'T' : 'F', strv[i]);
++ if (JLI_Snprintf(nargv[i], tlen, "%c%s", arg_expand ? 'T' : 'F',
++ strv[i]) < 0) {
++ return NULL;
++ }
+ JLI_TraceLauncher("%s\n", nargv[i]);
+ }
+
@@ -25255,6 +75892,70 @@
import sun.awt.SunToolkit;
import sun.awt.Win32GraphicsDevice;
import sun.awt.PaintEventDispatcher;
+--- jdk/src/windows/classes/sun/awt/windows/WComponentPeer.java 2012-08-10 10:31:41.000000000 -0700
++++ jdk/src/windows/classes/sun/awt/windows/WComponentPeer.java 2013-03-09 08:44:50.000000000 -0800
+@@ -491,14 +491,15 @@
+ try {
+ replaceSurfaceData();
+ } catch (InvalidPipeException e) {
+- // REMIND : what do we do if our surface creation failed?
++ // REMIND : what do we do if our surface creation failed?
+ }
+ }
+ }
+ };
++ Component c = (Component)target;
+ // Fix 6255371.
+- if (!PaintEventDispatcher.getPaintEventDispatcher().queueSurfaceDataReplacing((Component)target, r)) {
+- postEvent(new InvocationEvent(Toolkit.getDefaultToolkit(), r));
++ if (!PaintEventDispatcher.getPaintEventDispatcher().queueSurfaceDataReplacing(c, r)) {
++ postEvent(new InvocationEvent(c, r));
+ }
+ }
+
+@@ -620,7 +621,7 @@
+ }
+
+ public void disposeLater() {
+- postEvent(new InvocationEvent(Toolkit.getDefaultToolkit(), new Runnable() {
++ postEvent(new InvocationEvent(target, new Runnable() {
+ public void run() {
+ dispose();
+ }
+--- jdk/src/windows/classes/sun/awt/windows/WEmbeddedFrame.java 2012-08-10 10:31:41.000000000 -0700
++++ jdk/src/windows/classes/sun/awt/windows/WEmbeddedFrame.java 2013-03-09 08:44:50.000000000 -0800
+@@ -29,12 +29,9 @@
+ import java.awt.*;
+ import java.awt.event.*;
+ import java.awt.peer.ComponentPeer;
+-import java.util.*;
+-import java.awt.color.*;
+ import java.awt.image.*;
+ import sun.awt.image.ByteInterleavedRaster;
+ import sun.security.action.GetPropertyAction;
+-import java.lang.reflect.*;
+
+ public class WEmbeddedFrame extends EmbeddedFrame {
+
+@@ -232,11 +229,13 @@
+ } else {
+ // To avoid focus concurrence b/w IE and EmbeddedFrame
+ // activation is postponed by means of posting it to EDT.
+- EventQueue.invokeLater(new Runnable() {
+- public void run() {
+- ((WEmbeddedFramePeer)getPeer()).synthesizeWmActivate(true);
+- }
+- });
++ Runnable r = new Runnable() {
++ public void run() {
++ ((WEmbeddedFramePeer)getPeer()).synthesizeWmActivate(true);
++ }
++ };
++ WToolkit.postEvent(WToolkit.targetToAppContext(this),
++ new InvocationEvent(this, r));
+ }
+ }
+
--- jdk/src/windows/classes/sun/awt/windows/WMouseDragGestureRecognizer.java 2012-08-10 10:31:42.000000000 -0700
+++ jdk/src/windows/classes/sun/awt/windows/WMouseDragGestureRecognizer.java 2013-01-16 08:58:12.000000000 -0800
@@ -39,8 +39,6 @@
@@ -25504,8 +76205,27 @@
+ (*env)->SetBooleanField(env, status, status_seqCompleteID, JNI_TRUE);
}
--- jdk/src/windows/native/sun/nio/ch/DatagramChannelImpl.c 2012-08-10 10:31:52.000000000 -0700
-+++ jdk/src/windows/native/sun/nio/ch/DatagramChannelImpl.c 2013-01-16 00:07:21.000000000 -0800
-@@ -108,7 +108,7 @@
++++ jdk/src/windows/native/sun/nio/ch/DatagramChannelImpl.c 2013-03-09 08:44:50.000000000 -0800
+@@ -34,8 +34,6 @@
+ #include "net_util.h"
+ #include <winsock2.h>
+
+-static jfieldID isa_addrID; /* address in java.net.InetSocketAddress */
+-static jfieldID isa_portID; /* port in java.net.InetSocketAddress */
+ static jfieldID dci_senderID; /* sender in sun.nio.ch.DatagramChannelImpl */
+ static jfieldID dci_senderAddrID; /* sender InetAddress in sun.nio.ch.DatagramChannelImpl */
+ static jfieldID dci_senderPortID; /* sender port in sun.nio.ch.DatagramChannelImpl */
+@@ -50,9 +48,6 @@
+ isa_class = (*env)->NewGlobalRef(env, clazz);
+ isa_ctorID = (*env)->GetMethodID(env, clazz, "<init>",
+ "(Ljava/net/InetAddress;I)V");
+- isa_addrID = (*env)->GetFieldID(env, clazz, "addr",
+- "Ljava/net/InetAddress;");
+- isa_portID = (*env)->GetFieldID(env, clazz, "port", "I");
+
+ clazz = (*env)->FindClass(env, "sun/nio/ch/DatagramChannelImpl");
+ dci_senderID = (*env)->GetFieldID(env, clazz, "sender",
+@@ -108,7 +103,7 @@
JNIEXPORT void JNICALL
Java_sun_nio_ch_DatagramChannelImpl_disconnect0(JNIEnv *env, jobject this,
@@ -25514,6 +76234,24 @@
{
jint fd = fdval(env, fdo);
int rv = 0;
+@@ -214,15 +209,14 @@
+ JNIEXPORT jint JNICALL
+ Java_sun_nio_ch_DatagramChannelImpl_send0(JNIEnv *env, jobject this,
+ jboolean preferIPv6, jobject fdo,
+- jlong address, jint len, jobject dest)
++ jlong address, jint len,
++ jobject destAddress, jint destPort)
+ {
+ jint fd = fdval(env, fdo);
+ void *buf = (void *)jlong_to_ptr(address);
+ SOCKETADDRESS sa;
+ int sa_len;
+ jint rv = 0;
+- jobject destAddress = (*env)->GetObjectField(env, dest, isa_addrID);
+- jint destPort = (*env)->GetIntField(env, dest, isa_portID);
+
+ if (NET_InetAddressToSockaddr(env, destAddress, destPort,
+ (struct sockaddr *)&sa,
--- jdk/src/windows/native/sun/windows/awt_Component.cpp 2012-08-10 10:31:55.000000000 -0700
+++ jdk/src/windows/native/sun/windows/awt_Component.cpp 2013-01-16 00:07:21.000000000 -0800
@@ -558,8 +558,6 @@
@@ -25525,6 +76263,67 @@
SetDrawState((jint)JAWT_LOCK_SURFACE_CHANGED |
(jint)JAWT_LOCK_BOUNDS_CHANGED |
(jint)JAWT_LOCK_CLIP_CHANGED);
+--- jdk/src/windows/native/sun/windows/awt_TextComponent.cpp 2012-08-10 10:31:58.000000000 -0700
++++ jdk/src/windows/native/sun/windows/awt_TextComponent.cpp 2013-03-09 08:44:50.000000000 -0800
+@@ -53,14 +53,12 @@
+ * AwtTextComponent fields
+ */
+
+-/* java.awt.TextComponent fields */
+-jfieldID AwtTextComponent::canAccessClipboardID;
+-
+-
+ /************************************************************************
+ * AwtTextComponent methods
+ */
+
++jmethodID AwtTextComponent::canAccessClipboardMID;
++
+ AwtTextComponent::AwtTextComponent() {
+ m_synthetic = FALSE;
+ m_lStartPos = -1;
+@@ -367,8 +365,7 @@
+ }
+ jobject target = GetTarget(env);
+ jboolean canAccessClipboard =
+- env->GetBooleanField(target,
+- AwtTextComponent::canAccessClipboardID);
++ env->CallBooleanMethod (target, AwtTextComponent::canAccessClipboardMID);
+ env->DeleteLocalRef(target);
+ return (canAccessClipboard) ? mrDoDefault : mrConsume;
+ }
+@@ -854,12 +851,13 @@
+ {
+ TRY;
+
+- cls = env->FindClass("java/awt/TextComponent");
+- if (cls != NULL) {
+- AwtTextComponent::canAccessClipboardID =
+- env->GetFieldID(cls, "canAccessClipboard", "Z");
+- DASSERT(AwtTextComponent::canAccessClipboardID != NULL);
+- }
++ jclass textComponentClassID = env->FindClass("java/awt/TextComponent");
++ AwtTextComponent::canAccessClipboardMID =
++ env->GetMethodID(textComponentClassID,
++ "canAccessClipboard", "()Z");
++ env->DeleteLocalRef(textComponentClassID);
++
++ DASSERT(AwtTextComponent::canAccessClipboardMID != NULL)
+
+ CATCH_BAD_ALLOC;
+ }
+--- jdk/src/windows/native/sun/windows/awt_TextComponent.h 2012-08-10 10:31:58.000000000 -0700
++++ jdk/src/windows/native/sun/windows/awt_TextComponent.h 2013-03-09 08:44:50.000000000 -0800
+@@ -42,8 +42,7 @@
+
+ class AwtTextComponent : public AwtComponent {
+ public:
+- /* java.awt.TextComponent canAccessClipboard field ID */
+- static jfieldID canAccessClipboardID;
++ static jmethodID canAccessClipboardMID;
+
+ AwtTextComponent();
+
--- jdk/src/windows/native/sun/windows/awt_Window.cpp 2012-08-10 10:31:58.000000000 -0700
+++ jdk/src/windows/native/sun/windows/awt_Window.cpp 2013-01-16 08:58:12.000000000 -0800
@@ -1477,7 +1477,7 @@
@@ -25579,7 +76378,7 @@
HWND proxyContainerHWnd = GetProxyToplevelContainer();
HWND proxyHWnd = GetProxyFocusOwner();
--- jdk/test/Makefile 2012-08-10 10:31:59.000000000 -0700
-+++ jdk/test/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/Makefile 2013-03-09 08:44:54.000000000 -0800
@@ -79,6 +79,11 @@
endif
OS_VERSION := $(shell $(UNAME) -r)
@@ -25592,6 +76391,15 @@
ifeq ($(UNAME_S), Darwin)
OS_NAME = macosx
OS_ARCH := $(shell $(UNAME) -m)
+@@ -512,7 +517,7 @@
+ JDK_ALL_TARGETS += jdk_misc
+ jdk_misc: $(call TestDirs, \
+ demo/jvmti demo/zipfs javax/naming javax/script \
+- javax/smartcardio com/sun/jndi com/sun/xml sun/misc)
++ javax/smartcardio javax/xml/soap com/sun/jndi com/sun/xml sun/misc)
+ $(call RunAgentvmBatch)
+
+ # Stable samevm testruns (minus items from PROBLEM_LIST)
--- jdk/test/ProblemList.txt 2012-08-10 10:31:59.000000000 -0700
+++ jdk/test/ProblemList.txt 2013-01-16 08:58:12.000000000 -0800
@@ -114,83 +114,10 @@
@@ -25850,7 +76658,7 @@
############################################################################
--- jdk/test/com/sun/jdi/ImmutableResourceTest.sh 2012-08-10 10:32:04.000000000 -0700
-+++ jdk/test/com/sun/jdi/ImmutableResourceTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/ImmutableResourceTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -56,7 +56,7 @@
OS=`uname -s`
@@ -25861,7 +76669,7 @@
;;
--- jdk/test/com/sun/jdi/JITDebug.sh 2012-08-10 10:32:04.000000000 -0700
-+++ jdk/test/com/sun/jdi/JITDebug.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/JITDebug.sh 2013-03-09 08:44:54.000000000 -0800
@@ -63,7 +63,7 @@
OS=`uname -s`
export TRANSPORT_METHOD
@@ -25872,7 +76680,7 @@
TRANSPORT_METHOD=dt_socket
;;
--- jdk/test/com/sun/jdi/PrivateTransportTest.sh 2012-08-10 10:32:05.000000000 -0700
-+++ jdk/test/com/sun/jdi/PrivateTransportTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/PrivateTransportTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -123,7 +123,7 @@
esac
libloc=${jreloc}/lib/${libarch}
@@ -25883,7 +76691,7 @@
libloc=`dirname ${xx}`
;;
--- jdk/test/com/sun/jdi/ShellScaffold.sh 2012-08-10 10:32:06.000000000 -0700
-+++ jdk/test/com/sun/jdi/ShellScaffold.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/ShellScaffold.sh 2013-03-09 08:44:54.000000000 -0800
@@ -292,7 +292,7 @@
psCmd=ps
jstack=jstack.exe
@@ -25894,7 +76702,7 @@
address=
devnull=/dev/null
--- jdk/test/com/sun/jdi/Solaris32AndSolaris64Test.sh 2012-08-10 10:32:06.000000000 -0700
-+++ jdk/test/com/sun/jdi/Solaris32AndSolaris64Test.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/Solaris32AndSolaris64Test.sh 2013-03-09 08:44:54.000000000 -0800
@@ -112,7 +112,7 @@
fi
;;
@@ -25905,7 +76713,7 @@
;;
--- jdk/test/com/sun/jdi/connect/spi/JdiLoadedByCustomLoader.sh 2012-08-10 10:32:07.000000000 -0700
-+++ jdk/test/com/sun/jdi/connect/spi/JdiLoadedByCustomLoader.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/jdi/connect/spi/JdiLoadedByCustomLoader.sh 2013-03-09 08:44:54.000000000 -0800
@@ -45,7 +45,7 @@
OS=`uname -s`
@@ -25916,7 +76724,7 @@
;;
Windows* | CYGWIN*)
--- jdk/test/com/sun/management/OperatingSystemMXBean/TestTotalSwap.sh 2012-08-10 10:32:09.000000000 -0700
-+++ jdk/test/com/sun/management/OperatingSystemMXBean/TestTotalSwap.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/management/OperatingSystemMXBean/TestTotalSwap.sh 2013-03-09 08:44:54.000000000 -0800
@@ -72,6 +72,16 @@
done
}
@@ -25945,7 +76753,7 @@
# $ sysctl -n vm.swapusage
# total = 8192.00M used = 7471.11M free = 720.89M (encrypted)
--- jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetMaxFileDescriptorCount.sh 2012-08-10 10:32:11.000000000 -0700
-+++ jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetMaxFileDescriptorCount.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetMaxFileDescriptorCount.sh 2013-03-09 08:44:54.000000000 -0800
@@ -48,7 +48,7 @@
# Test GetMaxFileDescriptorCount if we are running on Unix
@@ -25956,7 +76764,7 @@
;;
* )
--- jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetOpenFileDescriptorCount.sh 2012-08-10 10:32:11.000000000 -0700
-+++ jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetOpenFileDescriptorCount.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/management/UnixOperatingSystemMXBean/GetOpenFileDescriptorCount.sh 2013-03-09 08:44:54.000000000 -0800
@@ -48,7 +48,7 @@
# Test GetOpenFileDescriptorCount if we are running on Unix
@@ -25967,7 +76775,7 @@
;;
* )
--- jdk/test/com/sun/tools/attach/CommonSetup.sh 2012-08-10 10:32:15.000000000 -0700
-+++ jdk/test/com/sun/tools/attach/CommonSetup.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/com/sun/tools/attach/CommonSetup.sh 2013-03-09 08:44:54.000000000 -0800
@@ -36,7 +36,7 @@
OS=`uname -s`
@@ -26204,7 +77012,7 @@
+ }
+}
--- jdk/test/java/awt/PrintJob/Text/stringwidth.sh 2012-08-10 10:32:25.000000000 -0700
-+++ jdk/test/java/awt/PrintJob/Text/stringwidth.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/awt/PrintJob/Text/stringwidth.sh 2013-03-09 08:44:54.000000000 -0800
@@ -25,10 +25,11 @@
fi
@@ -26986,7 +77794,7 @@
+ }
+}
--- jdk/test/java/io/File/GetXSpace.sh 2012-08-10 10:32:44.000000000 -0700
-+++ jdk/test/java/io/File/GetXSpace.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/io/File/GetXSpace.sh 2013-03-09 08:44:54.000000000 -0800
@@ -26,7 +26,7 @@
# set platform-dependent variable
OS=`uname -s`
@@ -26997,7 +77805,7 @@
Windows* ) SID=`sid`; TMP="c:/temp" ;;
* )
--- jdk/test/java/io/FileOutputStream/ManyFiles.java 2012-08-10 10:32:46.000000000 -0700
-+++ jdk/test/java/io/FileOutputStream/ManyFiles.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/io/FileOutputStream/ManyFiles.java 2013-03-09 08:44:54.000000000 -0800
@@ -43,7 +43,7 @@
// Windows capability it is much simpler to only run it
// on that platform.
@@ -27008,7 +77816,7 @@
for (int n = 0; n < NUM_FILES; n++) {
--- jdk/test/java/io/Serializable/evolution/RenamePackage/run.sh 2012-08-10 10:33:10.000000000 -0700
-+++ jdk/test/java/io/Serializable/evolution/RenamePackage/run.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/io/Serializable/evolution/RenamePackage/run.sh 2013-03-09 08:44:54.000000000 -0800
@@ -41,7 +41,7 @@
# Need to determine the classpath separator and filepath separator based on the
# operating system.
@@ -27019,7 +77827,7 @@
Windows* | CYGWIN* )
PS=";" ;;
--- jdk/test/java/io/Serializable/serialver/classpath/run.sh 2012-08-10 10:33:31.000000000 -0700
-+++ jdk/test/java/io/Serializable/serialver/classpath/run.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/io/Serializable/serialver/classpath/run.sh 2013-03-09 08:44:54.000000000 -0800
@@ -47,7 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27030,7 +77838,7 @@
Windows* | CYGWIN* )
PS=";" ;;
--- jdk/test/java/io/Serializable/serialver/nested/run.sh 2012-08-10 10:33:31.000000000 -0700
-+++ jdk/test/java/io/Serializable/serialver/nested/run.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/io/Serializable/serialver/nested/run.sh 2013-03-09 08:44:54.000000000 -0800
@@ -47,7 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27041,7 +77849,7 @@
Windows* | CYGWIN* )
PS=";" ;;
--- jdk/test/java/lang/ClassLoader/deadlock/TestCrossDelegate.sh 2012-08-10 10:34:02.000000000 -0700
-+++ jdk/test/java/lang/ClassLoader/deadlock/TestCrossDelegate.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/ClassLoader/deadlock/TestCrossDelegate.sh 2013-03-09 08:44:54.000000000 -0800
@@ -45,13 +45,7 @@
# set platform-specific variables
OS=`uname -s`
@@ -27058,7 +77866,7 @@
;;
Windows*)
--- jdk/test/java/lang/ClassLoader/deadlock/TestOneWayDelegate.sh 2012-08-10 10:34:02.000000000 -0700
-+++ jdk/test/java/lang/ClassLoader/deadlock/TestOneWayDelegate.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/ClassLoader/deadlock/TestOneWayDelegate.sh 2013-03-09 08:44:54.000000000 -0800
@@ -49,13 +49,7 @@
# set platform-specific variables
OS=`uname -s`
@@ -27075,7 +77883,7 @@
;;
Windows* | CYGWIN* )
--- jdk/test/java/lang/StringCoding/CheckEncodings.sh 2012-08-10 10:34:06.000000000 -0700
-+++ jdk/test/java/lang/StringCoding/CheckEncodings.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/StringCoding/CheckEncodings.sh 2013-03-09 08:44:54.000000000 -0800
@@ -30,7 +30,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27086,7 +77894,7 @@
echo "Passed"; exit 0 ;;
* ) echo "Unrecognized system!" ; exit 1 ;;
--- jdk/test/java/lang/annotation/loaderLeak/LoaderLeak.sh 2012-08-10 10:34:07.000000000 -0700
-+++ jdk/test/java/lang/annotation/loaderLeak/LoaderLeak.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/annotation/loaderLeak/LoaderLeak.sh 2013-03-09 08:44:54.000000000 -0800
@@ -44,7 +44,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27097,7 +77905,7 @@
PS=":"
FS="/"
--- jdk/test/java/lang/instrument/MakeJAR2.sh 2012-08-10 10:34:08.000000000 -0700
-+++ jdk/test/java/lang/instrument/MakeJAR2.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/instrument/MakeJAR2.sh 2013-03-09 08:44:54.000000000 -0800
@@ -49,7 +49,7 @@
OS=`uname -s`
@@ -27108,7 +77916,7 @@
;;
--- jdk/test/java/lang/instrument/appendToClassLoaderSearch/CommonSetup.sh 2012-08-10 10:34:11.000000000 -0700
-+++ jdk/test/java/lang/instrument/appendToClassLoaderSearch/CommonSetup.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/instrument/appendToClassLoaderSearch/CommonSetup.sh 2013-03-09 08:44:54.000000000 -0800
@@ -35,15 +35,7 @@
OS=`uname -s`
@@ -27127,7 +77935,7 @@
FS="/"
;;
--- jdk/test/java/lang/management/OperatingSystemMXBean/TestSystemLoadAvg.sh 2012-08-10 10:34:13.000000000 -0700
-+++ jdk/test/java/lang/management/OperatingSystemMXBean/TestSystemLoadAvg.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/lang/management/OperatingSystemMXBean/TestSystemLoadAvg.sh 2013-03-09 08:44:54.000000000 -0800
@@ -61,7 +61,7 @@
while true; do
echo "Run $i: TestSystemLoadAvg"
@@ -27138,7 +77946,7 @@
;;
* )
--- jdk/test/java/net/Authenticator/B4933582.sh 2012-08-10 10:34:17.000000000 -0700
-+++ jdk/test/java/net/Authenticator/B4933582.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/Authenticator/B4933582.sh 2013-03-09 08:44:54.000000000 -0800
@@ -26,7 +26,7 @@
OS=`uname -s`
@@ -27232,7 +78040,7 @@
-}
-
--- jdk/test/java/net/DatagramSocket/SendDatagramToBadAddress.java 2012-08-10 10:34:18.000000000 -0700
-+++ jdk/test/java/net/DatagramSocket/SendDatagramToBadAddress.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/DatagramSocket/SendDatagramToBadAddress.java 2013-03-09 08:44:54.000000000 -0800
@@ -45,6 +45,8 @@
return (true);
if (p.getProperty ("os.name").equals ("Linux"))
@@ -27243,7 +78051,7 @@
return (true);
// Check for specific Solaris version from here
--- jdk/test/java/net/DatagramSocket/SetDatagramSocketImplFactory/ADatagramSocket.sh 2012-08-10 10:34:18.000000000 -0700
-+++ jdk/test/java/net/DatagramSocket/SetDatagramSocketImplFactory/ADatagramSocket.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/DatagramSocket/SetDatagramSocketImplFactory/ADatagramSocket.sh 2013-03-09 08:44:54.000000000 -0800
@@ -27,11 +27,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27258,7 +78066,7 @@
FILESEP="/"
;;
--- jdk/test/java/net/Socket/OldSocketImpl.sh 2012-08-10 10:34:21.000000000 -0700
-+++ jdk/test/java/net/Socket/OldSocketImpl.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/Socket/OldSocketImpl.sh 2013-03-09 08:44:54.000000000 -0800
@@ -28,7 +28,7 @@
OS=`uname -s`
@@ -27269,7 +78077,7 @@
FS="/"
;;
--- jdk/test/java/net/URL/B5086147.sh 2012-08-10 10:34:22.000000000 -0700
-+++ jdk/test/java/net/URL/B5086147.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/URL/B5086147.sh 2013-03-09 08:44:54.000000000 -0800
@@ -26,7 +26,7 @@
OS=`uname -s`
@@ -27370,7 +78178,7 @@
.s("http").h("www.math.uio.no").p("/faq/compression-faq/part1.html").z();
--- jdk/test/java/net/URL/runconstructor.sh 2012-08-10 10:34:23.000000000 -0700
-+++ jdk/test/java/net/URL/runconstructor.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/URL/runconstructor.sh 2013-03-09 08:44:54.000000000 -0800
@@ -27,7 +27,7 @@
#
OS=`uname -s`
@@ -27381,7 +78189,7 @@
FS="/"
;;
--- jdk/test/java/net/URLClassLoader/B5077773.sh 2012-08-10 10:34:23.000000000 -0700
-+++ jdk/test/java/net/URLClassLoader/B5077773.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/URLClassLoader/B5077773.sh 2013-03-09 08:44:54.000000000 -0800
@@ -34,11 +34,7 @@
OS=`uname -s`
@@ -27396,7 +78204,7 @@
FS="/"
;;
--- jdk/test/java/net/URLClassLoader/sealing/checksealed.sh 2012-08-10 10:34:25.000000000 -0700
-+++ jdk/test/java/net/URLClassLoader/sealing/checksealed.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/URLClassLoader/sealing/checksealed.sh 2013-03-09 08:44:54.000000000 -0800
@@ -27,11 +27,7 @@
OS=`uname -s`
@@ -27411,7 +78219,7 @@
FS="/"
;;
--- jdk/test/java/net/URLConnection/6212146/test.sh 2012-08-10 10:34:25.000000000 -0700
-+++ jdk/test/java/net/URLConnection/6212146/test.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/net/URLConnection/6212146/test.sh 2013-03-09 08:44:54.000000000 -0800
@@ -33,11 +33,7 @@
OS=`uname -s`
@@ -27505,6 +78313,17 @@
- }
- }
-}
+--- jdk/test/java/nio/channels/DatagramChannel/SendToUnresolved.java 2012-08-10 10:34:29.000000000 -0700
++++ jdk/test/java/nio/channels/DatagramChannel/SendToUnresolved.java 2013-03-09 08:44:50.000000000 -0800
+@@ -42,7 +42,7 @@
+ try {
+ dc.send(bb, sa);
+ throw new RuntimeException("Expected exception not thrown");
+- } catch (IOException e) {
++ } catch (IOException | UnresolvedAddressException e) {
+ // Correct result
+ }
+ dc.close();
--- jdk/test/java/nio/channels/Selector/ChangingInterests.java 1969-12-31 16:00:00.000000000 -0800
+++ jdk/test/java/nio/channels/Selector/ChangingInterests.java 2013-01-16 08:58:12.000000000 -0800
@@ -0,0 +1,190 @@
@@ -27699,7 +78518,7 @@
+
+}
--- jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/Makefile 2012-08-10 10:34:31.000000000 -0700
-+++ jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/Makefile 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/Makefile 2013-03-09 08:44:54.000000000 -0800
@@ -71,6 +71,48 @@
EXTRA_LIBS = -lc
endif
@@ -27750,7 +78569,7 @@
LAUNCHERLIB=$(LIBDIR)/libLauncher.so
--- jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/run_tests.sh 2013-03-09 08:44:54.000000000 -0800
@@ -33,11 +33,14 @@
# @run shell run_tests.sh
@@ -27820,7 +78639,7 @@
LIBDIR=lib/${PLATFORM}-${ARCH}
LAUNCHERLIB=${LIBDIR}/libLauncher.so
--- jdk/test/java/nio/charset/Charset/default.sh 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/charset/Charset/default.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/charset/Charset/default.sh 2013-03-09 08:44:54.000000000 -0800
@@ -41,10 +41,14 @@
fi
@@ -27841,7 +78660,7 @@
JAVA=$TESTJAVA/bin/java
--- jdk/test/java/nio/charset/coders/CheckSJISMappingProp.sh 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/charset/coders/CheckSJISMappingProp.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/charset/coders/CheckSJISMappingProp.sh 2013-03-09 08:44:54.000000000 -0800
@@ -34,7 +34,7 @@
OS=`uname -s`
@@ -27852,7 +78671,7 @@
Windows* )
echo "Passed"; exit 0 ;;
--- jdk/test/java/nio/charset/spi/basic.sh 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/charset/spi/basic.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/charset/spi/basic.sh 2013-03-09 08:44:54.000000000 -0800
@@ -70,10 +70,14 @@
L="$1"
shift
@@ -27882,7 +78701,7 @@
*) echo "Unknown platform: `uname`"; exit 1 ;;
esac
--- jdk/test/java/nio/file/FileSystem/Basic.java 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/file/FileSystem/Basic.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/file/FileSystem/Basic.java 2013-03-09 08:44:54.000000000 -0800
@@ -76,6 +76,8 @@
checkSupported(fs, "posix", "unix", "owner", "acl", "user");
if (os.equals("Linux"))
@@ -27893,7 +78712,7 @@
checkSupported(fs, "posix", "unix", "owner");
if (os.equals("Windows"))
--- jdk/test/java/nio/file/Files/CopyAndMove.java 2012-08-10 10:34:32.000000000 -0700
-+++ jdk/test/java/nio/file/Files/CopyAndMove.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/nio/file/Files/CopyAndMove.java 2013-03-09 08:44:54.000000000 -0800
@@ -634,7 +634,7 @@
// check POSIX attributes are copied
@@ -27913,7 +78732,7 @@
if (isUnix) {
--- jdk/test/java/rmi/registry/readTest/readTest.sh 2012-08-10 10:34:39.000000000 -0700
-+++ jdk/test/java/rmi/registry/readTest/readTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/rmi/registry/readTest/readTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -28,7 +28,7 @@
OS=`uname -s`
@@ -27924,7 +78743,7 @@
FS="/"
FILEURL="file:"
--- jdk/test/java/rmi/reliability/launch_reliability.ksh 2012-08-10 10:34:42.000000000 -0700
-+++ jdk/test/java/rmi/reliability/launch_reliability.ksh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/rmi/reliability/launch_reliability.ksh 2013-03-09 08:44:54.000000000 -0800
@@ -84,14 +84,12 @@
@@ -27944,8 +78763,71 @@
export PATH_SEP
mainpid=$$
+--- jdk/test/java/rmi/server/RMIClassLoader/loadProxyClasses/security.policy 2012-08-10 10:34:43.000000000 -0700
++++ jdk/test/java/rmi/server/RMIClassLoader/loadProxyClasses/security.policy 2013-03-09 08:44:51.000000000 -0800
+@@ -13,6 +13,7 @@
+ permission java.io.FilePermission ".${/}-", "read,write,delete";
+
+ permission java.lang.RuntimePermission "createClassLoader";
++ permission java.lang.RuntimePermission "getClassLoader";
+ permission java.lang.RuntimePermission "setContextClassLoader";
+
+ // used by TestLibrary to determine test environment
+--- jdk/test/java/rmi/testlibrary/JavaVM.java 2012-08-10 10:34:46.000000000 -0700
++++ jdk/test/java/rmi/testlibrary/JavaVM.java 2013-03-09 08:44:51.000000000 -0800
+@@ -109,6 +109,14 @@
+ return TestLibrary.getExtraProperty("jcov.options","");
+ }
+
++ public void start(Runnable runnable) throws IOException {
++ if (runnable == null) {
++ throw new NullPointerException("Runnable cannot be null.");
++ }
++
++ start();
++ new JavaVMCallbackHandler(runnable).start();
++ }
+
+ /**
+ * Exec the VM as specified in this object's constructor.
+@@ -171,4 +179,35 @@
+ protected Process getVM() {
+ return vm;
+ }
++
++ /**
++ * Handles calling the callback.
++ */
++ private class JavaVMCallbackHandler extends Thread {
++ Runnable runnable;
++
++ JavaVMCallbackHandler(Runnable runnable) {
++ this.runnable = runnable;
++ }
++
++
++ /**
++ * Wait for the Process to terminate and notify the callback.
++ */
++ @Override
++ public void run() {
++ if (vm != null) {
++ try {
++ vm.waitFor();
++ } catch(InterruptedException ie) {
++ // Restore the interrupted status
++ Thread.currentThread().interrupt();
++ }
++ }
++
++ if (runnable != null) {
++ runnable.run();
++ }
++ }
++ }
+ }
--- jdk/test/java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh 2012-08-10 10:34:51.000000000 -0700
-+++ jdk/test/java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/security/Security/ClassLoaderDeadlock/ClassLoaderDeadlock.sh 2013-03-09 08:44:54.000000000 -0800
@@ -46,15 +46,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27964,7 +78846,7 @@
FILESEP="/"
;;
--- jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock.sh 2012-08-10 10:34:51.000000000 -0700
-+++ jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock.sh 2013-03-09 08:44:54.000000000 -0800
@@ -34,15 +34,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -27983,7 +78865,7 @@
FILESEP="/"
;;
--- jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.sh 2012-08-10 10:34:51.000000000 -0700
-+++ jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/security/Security/ClassLoaderDeadlock/Deadlock2.sh 2013-03-09 08:44:54.000000000 -0800
@@ -50,15 +50,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28002,7 +78884,7 @@
FILESEP="/"
;;
--- jdk/test/java/security/Security/signedfirst/Dyn.sh 2012-08-10 10:34:51.000000000 -0700
-+++ jdk/test/java/security/Security/signedfirst/Dyn.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/security/Security/signedfirst/Dyn.sh 2013-03-09 08:44:54.000000000 -0800
@@ -46,15 +46,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28021,7 +78903,7 @@
FILESEP="/"
;;
--- jdk/test/java/security/Security/signedfirst/Static.sh 2012-08-10 10:34:51.000000000 -0700
-+++ jdk/test/java/security/Security/signedfirst/Static.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/security/Security/signedfirst/Static.sh 2013-03-09 08:44:54.000000000 -0800
@@ -46,15 +46,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28040,7 +78922,7 @@
FILESEP="/"
;;
--- jdk/test/java/util/Currency/PropertiesTest.sh 2012-08-10 10:34:57.000000000 -0700
-+++ jdk/test/java/util/Currency/PropertiesTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/util/Currency/PropertiesTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -30,7 +30,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28051,7 +78933,7 @@
FS="/"
;;
--- jdk/test/java/util/PluggableLocale/ExecTest.sh 2012-08-10 10:35:02.000000000 -0700
-+++ jdk/test/java/util/PluggableLocale/ExecTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/util/PluggableLocale/ExecTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -58,7 +58,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28062,7 +78944,7 @@
FS="/"
;;
--- jdk/test/java/util/ResourceBundle/Bug6299235Test.sh 2012-08-10 10:35:04.000000000 -0700
-+++ jdk/test/java/util/ResourceBundle/Bug6299235Test.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/util/ResourceBundle/Bug6299235Test.sh 2013-03-09 08:44:54.000000000 -0800
@@ -31,7 +31,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28073,7 +78955,7 @@
FILESEP="/"
;;
--- jdk/test/java/util/ResourceBundle/Control/ExpirationTest.sh 2012-08-10 10:35:05.000000000 -0700
-+++ jdk/test/java/util/ResourceBundle/Control/ExpirationTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/util/ResourceBundle/Control/ExpirationTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -72,10 +72,10 @@
Windows* | CYGWIN* )
DEL=";"
@@ -28088,7 +78970,7 @@
HAS_S=YES
;;
--- jdk/test/java/util/ServiceLoader/basic.sh 2012-08-10 10:35:06.000000000 -0700
-+++ jdk/test/java/util/ServiceLoader/basic.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/java/util/ServiceLoader/basic.sh 2013-03-09 08:44:54.000000000 -0800
@@ -42,9 +42,7 @@
OS=`uname -s`
@@ -28178,8 +79060,370 @@
equal(Thread.activeCount(), count0);
}
+--- jdk/test/java/util/logging/CustomLogManager.java 1969-12-31 16:00:00.000000000 -0800
++++ jdk/test/java/util/logging/CustomLogManager.java 2013-03-09 08:44:51.000000000 -0800
+@@ -0,0 +1,177 @@
++/*
++ * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++import java.io.*;
++import java.util.*;
++import java.util.logging.*;
++
++/*
++ * Custom LogManager implementation to verify that the implementation delegates
++ * to the LogManager subclass to register both system logger and user logger.
++ *
++ * The LogManager implementation is the one configuring the logger's property
++ * such as level, handler, etc.
++ */
++public class CustomLogManager extends LogManager {
++ static LogManager INSTANCE;
++ Map<String,Logger> namedLoggers = new HashMap<>();
++ Properties props = initConfig();
++ public CustomLogManager() {
++ if (INSTANCE != null) {
++ throw new RuntimeException("CustomLogManager already created");
++ }
++ INSTANCE = this;
++ }
++
++ public synchronized boolean addLogger(Logger logger) {
++ String name = logger.getName();
++ if (namedLoggers.containsKey(name)) {
++ return false;
++ }
++ namedLoggers.put(name, logger);
++ // set level
++ if (props.get(name + ".level") != null) {
++ logger.setLevel(Level.parse(props.getProperty(name + ".level")));
++ }
++ // add handlers
++ if (props.get(name + ".handlers") != null && logger.getHandlers().length == 0) {
++ logger.addHandler(new CustomHandler());
++ }
++ // add parent loggers
++ int ix = 1;
++ for (;;) {
++ int ix2 = name.indexOf(".", ix);
++ if (ix2 < 0) {
++ break;
++ }
++ String pname = name.substring(0, ix2);
++ if (props.get(pname + ".level") != null ||
++ props.get(pname + ".handlers") != null) {
++ // This pname has a level/handlers definition.
++ // Make sure it exists.
++ //
++ // The test doesn't set the parent for simplicity.
++ if (!namedLoggers.containsKey(pname)) {
++ Logger.getLogger(pname);
++ }
++ }
++ ix = ix2 + 1;
++ }
++ return true;
++ }
++
++ public synchronized Logger getLogger(String name) {
++ return namedLoggers.get(name);
++ }
++
++ public synchronized Enumeration<String> getLoggerNames() {
++ return Collections.enumeration(namedLoggers.keySet());
++ }
++
++ public String getProperty(String name) {
++ return props.getProperty(name);
++ }
++
++ public void readConfiguration() {
++ // do nothing
++ }
++
++ public void readConfiguration(InputStream ins) {
++ // do nothing
++ }
++
++ private Properties initConfig() {
++ Properties props = new Properties();
++ props.put(".level", "CONFIG");
++ props.put("CustomLogManagerTest.level", "WARNING");
++ props.put("CustomLogManagerTest.handlers", "CustomLogManager$CustomHandler");
++ props.put("SimpleLogManager.level", "INFO");
++ props.put("SimpleLogManager.handlers", "CustomLogManager$CustomHandler");
++ props.put("CustomLogManager$CustomHandler.level", "WARNING");
++ props.put(".handlers", "CustomLogManager$CustomHandler");
++ props.put("org.foo.bar.level", "SEVERE");
++ props.put("org.foo.handlers", "CustomLogManager$CustomHandler");
++ props.put("org.openjdk.level", "SEVERE");
++ props.put("org.openjdk.handlers", "CustomLogManager$CustomHandler");
++ props.put("org.openjdk.core.level", "INFO");
++
++ return props;
++ }
++
++ public static void checkLogger(String name) {
++ checkLogger(name, null);
++ }
++
++ public static void checkLogger(String name, String resourceBundleName) {
++ Logger logger = INSTANCE.getLogger(name);
++ if (logger == null) {
++ throw new RuntimeException("Logger \"" + name + "\" not exist");
++ }
++ System.out.format("Logger \"%s\" level=%s handlers=%s resourcebundle=%s%n",
++ name, logger.getLevel(),
++ Arrays.toString(logger.getHandlers()),
++ logger.getResourceBundleName());
++ String rb = logger.getResourceBundleName();
++ if (rb != resourceBundleName && (rb == null || rb.equals(resourceBundleName))) {
++ throw new RuntimeException("Logger \"" + name +
++ "\" unexpected resource bundle: " + rb);
++ }
++
++ String value = INSTANCE.getProperty(name + ".level");
++ String level = logger.getLevel() != null ? logger.getLevel().getName() : null;
++ if (level != value && (level == null || level.equals(value))) {
++ throw new RuntimeException("Logger \"" + name + "\" unexpected level: " + level);
++ }
++
++ Handler[] handlers = logger.getHandlers();
++ String hdl = INSTANCE.getProperty(name + ".handlers");
++ if ((hdl == null && handlers.length != 0) ||
++ (hdl != null && handlers.length != 1)) {
++ throw new RuntimeException("Logger \"" + name + "\" unexpected handler: " +
++ Arrays.toString(handlers));
++ }
++ checkParents(name);
++ }
++
++ private static void checkParents(String name) {
++ int ix = 1;
++ for (;;) {
++ int ix2 = name.indexOf(".", ix);
++ if (ix2 < 0) {
++ break;
++ }
++ String pname = name.substring(0, ix2);
++ if (INSTANCE.getProperty(pname + ".level") != null ||
++ INSTANCE.getProperty(pname + ".handlers") != null) {
++ // This pname has a level/handlers definition.
++ // Make sure it exists.
++ checkLogger(pname);
++ }
++ ix = ix2 + 1;
++ }
++ }
++
++ // only CustomLogManager can create an instance of CustomHandler
++ private class CustomHandler extends StreamHandler {
++ }
++}
+--- jdk/test/java/util/logging/CustomLogManagerTest.java 1969-12-31 16:00:00.000000000 -0800
++++ jdk/test/java/util/logging/CustomLogManagerTest.java 2013-03-09 08:44:51.000000000 -0800
+@@ -0,0 +1,63 @@
++/*
++ * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++import java.io.*;
++import java.util.*;
++
++import java.util.logging.*;
++import sun.util.logging.PlatformLogger;
++
++/*
++ * @test
++ * @bug 8005615
++ * @summary Add loggers to custom log manager
++ *
++ * @compile -XDignore.symbol.file CustomLogManagerTest.java CustomLogManager.java
++ * @run main/othervm -Djava.util.logging.manager=CustomLogManager CustomLogManagerTest
++ */
++public class CustomLogManagerTest {
++ private static final String RESOURCE_BUNDLE = "sun.util.logging.resources.logging";
++ public static void main(String[] args) {
++ String mgr = System.getProperty("java.util.logging.manager");
++ if (!mgr.equals("CustomLogManager")) {
++ throw new RuntimeException("java.util.logging.manager not set");
++ }
++
++ Logger.getLogger(CustomLogManagerTest.class.getName());
++ Logger.getLogger("org.foo.Foo");
++ Logger.getLogger("org.foo.bar.Foo", RESOURCE_BUNDLE);
++ // platform logger will be set with the default system resource bundle
++ PlatformLogger.getLogger("org.openjdk.core.logger");
++
++ if (LogManager.getLogManager() != CustomLogManager.INSTANCE) {
++ throw new RuntimeException(LogManager.getLogManager() + " not CustomLogManager");
++ }
++
++ CustomLogManager.checkLogger(CustomLogManagerTest.class.getName());
++ CustomLogManager.checkLogger("org.foo.Foo");
++ CustomLogManager.checkLogger("org.foo.bar.Foo", RESOURCE_BUNDLE);
++ CustomLogManager.checkLogger(Logger.GLOBAL_LOGGER_NAME);
++ CustomLogManager.checkLogger("");
++ CustomLogManager.checkLogger("org.openjdk.core.logger", RESOURCE_BUNDLE);
++ }
++}
+--- jdk/test/java/util/logging/SimpleLogManager.java 1969-12-31 16:00:00.000000000 -0800
++++ jdk/test/java/util/logging/SimpleLogManager.java 2013-03-09 08:44:51.000000000 -0800
+@@ -0,0 +1,113 @@
++/*
++ * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
++ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
++ *
++ * This code is free software; you can redistribute it and/or modify it
++ * under the terms of the GNU General Public License version 2 only, as
++ * published by the Free Software Foundation.
++ *
++ * This code is distributed in the hope that it will be useful, but WITHOUT
++ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
++ * version 2 for more details (a copy is included in the LICENSE file that
++ * accompanied this code).
++ *
++ * You should have received a copy of the GNU General Public License version
++ * 2 along with this work; if not, write to the Free Software Foundation,
++ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
++ *
++ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
++ * or visit www.oracle.com if you need additional information or have any
++ * questions.
++ */
++
++import java.util.*;
++import java.util.logging.*;
++import sun.util.logging.PlatformLogger;
++
++/*
++ * @test
++ * @bug 8005615
++ * @summary A LogManager subclass overrides its own implementation of named
++ * logger (see the subclassing information in the Logger class specification)
++ *
++ * @compile -XDignore.symbol.file CustomLogManager.java SimpleLogManager.java
++ * @run main/othervm -Djava.util.logging.manager=SimpleLogManager SimpleLogManager
++ */
++public class SimpleLogManager extends CustomLogManager {
++ public static void main(String[] args) {
++ String classname = System.getProperty("java.util.logging.manager");
++ if (!classname.equals("SimpleLogManager")) {
++ throw new RuntimeException("java.util.logging.manager not set");
++ }
++
++ Logger logger = Logger.getLogger(SimpleLogManager.class.getName());
++ Logger.getLogger("org.foo.bar.Foo");
++
++ // a platform logger used by the system code is just a Logger instance.
++ PlatformLogger.getLogger("org.openjdk.core.logger");
++
++ LogManager mgr = LogManager.getLogManager();
++ if (mgr != CustomLogManager.INSTANCE || !(mgr instanceof SimpleLogManager)) {
++ throw new RuntimeException(LogManager.getLogManager() + " not SimpleLogManager");
++ }
++
++ checkCustomLogger(SimpleLogManager.class.getName(), null);
++ checkCustomLogger("org.foo.bar.Foo", null);
++ checkCustomLogger("org.openjdk.core.logger", "sun.util.logging.resources.logging");
++
++ // ## The LogManager.demandLogger method does not handle custom log manager
++ // ## that overrides the getLogger method to return a custom logger
++ // ## (see the test case in 8005640). Logger.getLogger may return
++ // ## a Logger instance but LogManager overrides it with a custom Logger
++ // ## instance like this case.
++ //
++ // However, the specification of LogManager and Logger subclassing is
++ // not clear whether this is supported or not. The following check
++ // just captures the current behavior.
++ if (logger instanceof CustomLogger) {
++ throw new RuntimeException(logger + " not CustomLogger");
++ }
++ }
++
++ private static void checkCustomLogger(String name, String resourceBundleName) {
++ CustomLogManager.checkLogger(name, resourceBundleName);
++ Logger logger1 = Logger.getLogger(name);
++ Logger logger2 = LogManager.getLogManager().getLogger(name);
++ if (logger1 != logger2) {
++ throw new RuntimeException(logger1 + " != " + logger2);
++ }
++ if (!(logger1 instanceof CustomLogger)) {
++ throw new RuntimeException(logger1 + " not CustomLogger");
++ }
++ }
++
++ /*
++ * This SimpleLogManager overrides the addLogger method to replace
++ * the given logger with a custom logger.
++ *
++ * It's unclear what the recommended way to use custom logger is.
++ * A LogManager subclass might override the getLogger method to return
++ * a custom Logger and create a new custom logger if not exist so that
++ * Logger.getLogger() can return a custom Logger instance but that violates
++ * the LogManager.getLogger() spec which should return null if not found.
++ */
++ public synchronized boolean addLogger(Logger logger) {
++ String name = logger.getName();
++ if (namedLoggers.containsKey(name)) {
++ return false;
++ }
++ CustomLogger newLogger = new CustomLogger(logger);
++ super.addLogger(newLogger);
++ return true;
++ }
++
++ public class CustomLogger extends Logger {
++ CustomLogger(Logger logger) {
++ super(logger.getName(), logger.getResourceBundleName());
++ }
++ CustomLogger(String name) {
++ super(name, null);
++ }
++ }
++}
--- jdk/test/javax/crypto/SecretKeyFactory/FailOverTest.sh 2012-08-10 10:35:14.000000000 -0700
-+++ jdk/test/javax/crypto/SecretKeyFactory/FailOverTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/javax/crypto/SecretKeyFactory/FailOverTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -51,7 +51,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28404,7 +79648,7 @@
+ CKM_MD2
+}
--- jdk/test/javax/imageio/stream/StreamCloserLeak/run_test.sh 2012-08-10 10:35:15.000000000 -0700
-+++ jdk/test/javax/imageio/stream/StreamCloserLeak/run_test.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/javax/imageio/stream/StreamCloserLeak/run_test.sh 2013-03-09 08:44:54.000000000 -0800
@@ -84,7 +84,7 @@
TMP="/tmp"
;;
@@ -28414,8 +79658,52 @@
VAR="A different value for Linux"
DEFAULT_JDK=/usr/local/java/jdk1.4/linux-i386
FILESEP="/"
+--- jdk/test/javax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java 2012-08-10 10:35:22.000000000 -0700
++++ jdk/test/javax/management/remote/mandatory/subjectDelegation/SubjectDelegation2Test.java 2013-03-09 08:44:51.000000000 -0800
+@@ -119,9 +119,6 @@
+ System.out.println("Create SimpleStandard MBean");
+ SimpleStandard s = new SimpleStandard("monitorRole");
+ mbs.registerMBean(s, new ObjectName("MBeans:type=SimpleStandard"));
+- // Set Security Manager
+- //
+- System.setSecurityManager(new SecurityManager());
+ // Create Properties containing the username/password entries
+ //
+ Properties props = new Properties();
+@@ -132,6 +129,9 @@
+ HashMap env = new HashMap();
+ env.put("jmx.remote.authenticator",
+ new JMXPluggableAuthenticator(props));
++ // Set Security Manager
++ //
++ System.setSecurityManager(new SecurityManager());
+ // Create an RMI connector server
+ //
+ System.out.println("Create an RMI connector server");
+--- jdk/test/javax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java 2012-08-10 10:35:22.000000000 -0700
++++ jdk/test/javax/management/remote/mandatory/subjectDelegation/SubjectDelegation3Test.java 2013-03-09 08:44:51.000000000 -0800
+@@ -120,9 +120,6 @@
+ System.out.println("Create SimpleStandard MBean");
+ SimpleStandard s = new SimpleStandard("delegate");
+ mbs.registerMBean(s, new ObjectName("MBeans:type=SimpleStandard"));
+- // Set Security Manager
+- //
+- System.setSecurityManager(new SecurityManager());
+ // Create Properties containing the username/password entries
+ //
+ Properties props = new Properties();
+@@ -133,6 +130,9 @@
+ HashMap env = new HashMap();
+ env.put("jmx.remote.authenticator",
+ new JMXPluggableAuthenticator(props));
++ // Set Security Manager
++ //
++ System.setSecurityManager(new SecurityManager());
+ // Create an RMI connector server
+ //
+ System.out.println("Create an RMI connector server");
--- jdk/test/javax/script/CommonSetup.sh 2012-08-10 10:35:25.000000000 -0700
-+++ jdk/test/javax/script/CommonSetup.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/javax/script/CommonSetup.sh 2013-03-09 08:44:54.000000000 -0800
@@ -36,7 +36,7 @@
OS=`uname -s`
@@ -28426,7 +79714,7 @@
FS="/"
;;
--- jdk/test/javax/security/auth/Subject/doAs/Test.sh 2012-08-10 10:35:26.000000000 -0700
-+++ jdk/test/javax/security/auth/Subject/doAs/Test.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/javax/security/auth/Subject/doAs/Test.sh 2013-03-09 08:44:54.000000000 -0800
@@ -33,17 +33,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -28953,7 +80241,7 @@
- }
-}
--- jdk/test/jprt.config 2012-08-10 10:36:17.000000000 -0700
-+++ jdk/test/jprt.config 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/jprt.config 2013-03-09 08:44:54.000000000 -0800
@@ -71,8 +71,8 @@
# Uses 'uname -s', but only expect SunOS or Linux, assume Windows otherwise.
@@ -29022,7 +80310,7 @@
# Export PATH setting
PATH="${path4sdk}"
--- jdk/test/lib/security/java.policy/Ext_AllPolicy.sh 2012-08-10 10:36:17.000000000 -0700
-+++ jdk/test/lib/security/java.policy/Ext_AllPolicy.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/lib/security/java.policy/Ext_AllPolicy.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
@@ -29151,7 +80439,7 @@
- }
-}
--- jdk/test/sun/management/jmxremote/bootstrap/CustomLauncherTest.sh 2012-08-10 10:36:21.000000000 -0700
-+++ jdk/test/sun/management/jmxremote/bootstrap/CustomLauncherTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/management/jmxremote/bootstrap/CustomLauncherTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -45,37 +45,53 @@
# has to locate libjvm.so. Also $! is not reliable on some releases of MKS.
#{
@@ -29232,7 +80520,7 @@
#
--- jdk/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh 2012-08-10 10:36:21.000000000 -0700
-+++ jdk/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/management/jmxremote/bootstrap/GeneratePropertyPassword.sh 2013-03-09 08:44:54.000000000 -0800
@@ -35,7 +35,7 @@
UMASK=`umask`
@@ -29243,7 +80531,7 @@
FILESEP="/"
DFILESEP=$FILESEP
--- jdk/test/sun/management/jmxremote/bootstrap/LocalManagementTest.sh 2012-08-10 10:36:21.000000000 -0700
-+++ jdk/test/sun/management/jmxremote/bootstrap/LocalManagementTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/management/jmxremote/bootstrap/LocalManagementTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -86,10 +86,12 @@
# on Windows 98.
@@ -29262,7 +80550,7 @@
JAVA=${TESTJAVA}/bin/java
CLASSPATH=${TESTCLASSES}
--- jdk/test/sun/management/jmxremote/bootstrap/PasswordFilePermissionTest.sh 2012-08-10 10:36:21.000000000 -0700
-+++ jdk/test/sun/management/jmxremote/bootstrap/PasswordFilePermissionTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/management/jmxremote/bootstrap/PasswordFilePermissionTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -70,10 +70,12 @@
# security the password file.
@@ -29281,7 +80569,7 @@
# Create configuration file and dummy password file
--- jdk/test/sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh 2012-08-10 10:36:22.000000000 -0700
-+++ jdk/test/sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/management/jmxremote/bootstrap/SSLConfigFilePermissionTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -69,10 +69,12 @@
# security the password file.
@@ -29300,7 +80588,7 @@
# Create management and SSL configuration files
--- jdk/test/sun/misc/URLClassPath/ClassnameCharTest.sh 2012-08-10 10:36:24.000000000 -0700
-+++ jdk/test/sun/misc/URLClassPath/ClassnameCharTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/misc/URLClassPath/ClassnameCharTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -36,7 +36,7 @@
OS=`uname -s`
@@ -29311,7 +80599,7 @@
FS="/"
;;
--- jdk/test/sun/net/www/MarkResetTest.sh 2012-08-10 10:36:27.000000000 -0700
-+++ jdk/test/sun/net/www/MarkResetTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/net/www/MarkResetTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -28,7 +28,7 @@
OS=`uname -s`
@@ -29322,7 +80610,7 @@
FS="/"
;;
--- jdk/test/sun/net/www/http/HttpClient/RetryPost.sh 2012-08-10 10:36:28.000000000 -0700
-+++ jdk/test/sun/net/www/http/HttpClient/RetryPost.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/net/www/http/HttpClient/RetryPost.sh 2013-03-09 08:44:54.000000000 -0800
@@ -28,7 +28,7 @@
OS=`uname -s`
@@ -29409,7 +80697,7 @@
+ };
+}
--- jdk/test/sun/net/www/protocol/jar/B5105410.sh 2012-08-10 10:36:29.000000000 -0700
-+++ jdk/test/sun/net/www/protocol/jar/B5105410.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/net/www/protocol/jar/B5105410.sh 2013-03-09 08:44:54.000000000 -0800
@@ -31,7 +31,7 @@
OS=`uname -s`
@@ -29420,7 +80708,7 @@
FS="/"
;;
--- jdk/test/sun/net/www/protocol/jar/jarbug/run.sh 2012-08-10 10:36:30.000000000 -0700
-+++ jdk/test/sun/net/www/protocol/jar/jarbug/run.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/net/www/protocol/jar/jarbug/run.sh 2013-03-09 08:44:54.000000000 -0800
@@ -31,7 +31,7 @@
OS=`uname -s`
@@ -29431,7 +80719,7 @@
FS="/"
;;
--- jdk/test/sun/nio/ch/SelProvider.java 2012-08-10 10:36:30.000000000 -0700
-+++ jdk/test/sun/nio/ch/SelProvider.java 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/nio/ch/SelProvider.java 2013-03-09 08:44:54.000000000 -0800
@@ -39,6 +39,8 @@
expected = "sun.nio.ch.DevPollSelectorProvider";
} else if ("Linux".equals(osname)) {
@@ -29442,7 +80730,7 @@
expected = "sun.nio.ch.KQueueSelectorProvider";
} else
--- jdk/test/sun/security/krb5/runNameEquals.sh 2012-08-10 10:36:39.000000000 -0700
-+++ jdk/test/sun/security/krb5/runNameEquals.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/krb5/runNameEquals.sh 2013-03-09 08:44:54.000000000 -0800
@@ -48,15 +48,11 @@
# set platform-dependent variables
OS=`uname -s`
@@ -29460,8 +80748,35 @@
CYGWIN* )
PATHSEP=";"
FILESEP="/"
+--- jdk/test/sun/security/mscapi/ShortRSAKeyWithinTLS.java 2012-08-10 10:36:39.000000000 -0700
++++ jdk/test/sun/security/mscapi/ShortRSAKeyWithinTLS.java 2013-03-09 08:44:51.000000000 -0800
+@@ -29,7 +29,7 @@
+ import javax.net.ssl.*;
+ import java.lang.reflect.*;
+
+-import sun.security.util.KeyLength;
++import sun.security.util.KeyUtil;
+
+ public class ShortRSAKeyWithinTLS {
+
+@@ -175,13 +175,13 @@
+ privateKey = (PrivateKey)ks.getKey(keyAlias, null);
+ publicKey = (PublicKey)ks.getCertificate(keyAlias).getPublicKey();
+
+- int privateKeySize = KeyLength.getKeySize(privateKey);
++ int privateKeySize = KeyUtil.getKeySize(privateKey);
+ if (privateKeySize != keySize) {
+ throw new Exception("Expected key size is " + keySize +
+ ", but the private key size is " + privateKeySize);
+ }
+
+- int publicKeySize = KeyLength.getKeySize(publicKey);
++ int publicKeySize = KeyUtil.getKeySize(publicKey);
+ if (publicKeySize != keySize) {
+ throw new Exception("Expected key size is " + keySize +
+ ", but the public key size is " + publicKeySize);
--- jdk/test/sun/security/pkcs11/KeyStore/Basic.sh 2012-08-10 10:36:40.000000000 -0700
-+++ jdk/test/sun/security/pkcs11/KeyStore/Basic.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/pkcs11/KeyStore/Basic.sh 2013-03-09 08:44:54.000000000 -0800
@@ -131,6 +131,27 @@
;;
esac
@@ -29491,7 +80806,7 @@
FS="\\"
PS=";"
--- jdk/test/sun/security/pkcs11/KeyStore/ClientAuth.sh 2012-08-10 10:36:41.000000000 -0700
-+++ jdk/test/sun/security/pkcs11/KeyStore/ClientAuth.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/pkcs11/KeyStore/ClientAuth.sh 2013-03-09 08:44:54.000000000 -0800
@@ -93,6 +93,27 @@
;;
esac
@@ -29521,7 +80836,7 @@
FS="\\"
PS=";"
--- jdk/test/sun/security/pkcs11/Provider/ConfigQuotedString.sh 2012-08-10 10:36:42.000000000 -0700
-+++ jdk/test/sun/security/pkcs11/Provider/ConfigQuotedString.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/pkcs11/Provider/ConfigQuotedString.sh 2013-03-09 08:44:54.000000000 -0800
@@ -50,19 +50,7 @@
OS=`uname -s`
@@ -29544,7 +80859,7 @@
PS=":"
CP="${FS}bin${FS}cp"
--- jdk/test/sun/security/pkcs11/Provider/Login.sh 2012-08-10 10:36:42.000000000 -0700
-+++ jdk/test/sun/security/pkcs11/Provider/Login.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/pkcs11/Provider/Login.sh 2013-03-09 08:44:54.000000000 -0800
@@ -51,19 +51,7 @@
OS=`uname -s`
@@ -29566,8 +80881,22 @@
FS="/"
PS=":"
CP="${FS}bin${FS}cp"
+--- jdk/test/sun/security/pkcs11/fips/ClientJSSEServerJSSE.java 2012-08-10 10:36:43.000000000 -0700
++++ jdk/test/sun/security/pkcs11/fips/ClientJSSEServerJSSE.java 2013-03-09 08:44:51.000000000 -0800
+@@ -25,10 +25,10 @@
+ * @test
+ * @bug 6313675 6323647
+ * @summary Verify that all ciphersuites work in FIPS mode
++ * @library ..
+ * @ignore JSSE supported cipher suites are changed with CR 6916074,
+ * need to update this test case in JDK 7 soon
+ * @author Andreas Sterbenz
+- * @library ..
+ */
+
+ import java.security.*;
--- jdk/test/sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.sh 2012-08-10 10:36:53.000000000 -0700
-+++ jdk/test/sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/provider/PolicyFile/GrantAllPermToExtWhenNoPolicy.sh 2013-03-09 08:44:54.000000000 -0800
@@ -44,11 +44,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -29582,7 +80911,7 @@
FILESEP="/"
;;
--- jdk/test/sun/security/provider/PolicyFile/getinstance/getinstance.sh 2012-08-10 10:36:55.000000000 -0700
-+++ jdk/test/sun/security/provider/PolicyFile/getinstance/getinstance.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/provider/PolicyFile/getinstance/getinstance.sh 2013-03-09 08:44:54.000000000 -0800
@@ -47,15 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -29601,7 +80930,7 @@
FS="/"
;;
--- jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/EngineArgs/DebugReportsOneExtraByte.sh 2012-08-10 10:36:58.000000000 -0700
-+++ jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/EngineArgs/DebugReportsOneExtraByte.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/EngineArgs/DebugReportsOneExtraByte.sh 2013-03-09 08:44:54.000000000 -0800
@@ -33,7 +33,7 @@
OS=`uname -s`
@@ -29612,7 +80941,7 @@
FS="/"
;;
--- jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh 2012-08-10 10:36:59.000000000 -0700
-+++ jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLSocketImpl/NotifyHandshakeTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -42,7 +42,7 @@
OS=`uname -s`
@@ -29623,7 +80952,7 @@
PATHSEP=":"
;;
--- jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxy.sh 2012-08-10 10:37:02.000000000 -0700
-+++ jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxy.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxy.sh 2013-03-09 08:44:54.000000000 -0800
@@ -32,7 +32,7 @@
HOSTNAME=`uname -n`
OS=`uname -s`
@@ -29634,7 +80963,7 @@
FS="/"
;;
--- jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh 2012-08-10 10:37:03.000000000 -0700
-+++ jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/PostThruProxyWithAuth.sh 2013-03-09 08:44:54.000000000 -0800
@@ -32,7 +32,7 @@
HOSTNAME=`uname -n`
OS=`uname -s`
@@ -29645,7 +80974,7 @@
FS="/"
;;
--- jdk/test/sun/security/tools/jarsigner/AlgOptions.sh 2012-08-10 10:37:03.000000000 -0700
-+++ jdk/test/sun/security/tools/jarsigner/AlgOptions.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/jarsigner/AlgOptions.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
@@ -29691,7 +81020,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/jarsigner/PercentSign.sh 2012-08-10 10:37:03.000000000 -0700
-+++ jdk/test/sun/security/tools/jarsigner/PercentSign.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/jarsigner/PercentSign.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
@@ -29737,7 +81066,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/jarsigner/diffend.sh 2012-08-10 10:37:03.000000000 -0700
-+++ jdk/test/sun/security/tools/jarsigner/diffend.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/jarsigner/diffend.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
@@ -29783,7 +81112,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/jarsigner/oldsig.sh 2012-08-10 10:37:03.000000000 -0700
-+++ jdk/test/sun/security/tools/jarsigner/oldsig.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/jarsigner/oldsig.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
@@ -29829,7 +81158,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/keytool/AltProviderPath.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/AltProviderPath.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/AltProviderPath.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
@@ -29872,7 +81201,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/keytool/CloneKeyAskPassword.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/CloneKeyAskPassword.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/CloneKeyAskPassword.sh 2013-03-09 08:44:54.000000000 -0800
@@ -47,15 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -29891,7 +81220,7 @@
FILESEP="/"
;;
--- jdk/test/sun/security/tools/keytool/NoExtNPE.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/NoExtNPE.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/NoExtNPE.sh 2013-03-09 08:44:54.000000000 -0800
@@ -42,13 +42,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -29908,7 +81237,7 @@
;;
CYGWIN* )
--- jdk/test/sun/security/tools/keytool/SecretKeyKS.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/SecretKeyKS.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/SecretKeyKS.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
@@ -29951,7 +81280,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/keytool/StandardAlgName.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/StandardAlgName.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/StandardAlgName.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
@@ -29994,7 +81323,7 @@
* )
echo "Unrecognized operating system!"
--- jdk/test/sun/security/tools/keytool/autotest.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/autotest.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/autotest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -72,6 +72,27 @@
;;
esac
@@ -30024,7 +81353,7 @@
echo "Will not run test on: ${OS}"
exit 0;
--- jdk/test/sun/security/tools/keytool/i18n.sh 2012-08-10 10:37:04.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/i18n.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/i18n.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
@@ -30067,7 +81396,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/keytool/printssl.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/printssl.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/printssl.sh 2013-03-09 08:44:54.000000000 -0800
@@ -37,7 +37,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -30078,7 +81407,7 @@
;;
CYGWIN* )
--- jdk/test/sun/security/tools/keytool/resource.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/resource.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/resource.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
@@ -30134,7 +81463,7 @@
-rm ${TMP}${FS}temp_file_40875602475
exit 0
--- jdk/test/sun/security/tools/keytool/standard.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/keytool/standard.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/keytool/standard.sh 2013-03-09 08:44:54.000000000 -0800
@@ -44,7 +44,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -30145,7 +81474,7 @@
;;
Windows_* )
--- jdk/test/sun/security/tools/policytool/Alias.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/Alias.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/Alias.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2001, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30187,7 +81516,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/ChangeUI.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/ChangeUI.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/ChangeUI.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
@@ -30229,7 +81558,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/OpenPolicy.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/OpenPolicy.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/OpenPolicy.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30272,7 +81601,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/SaveAs.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/SaveAs.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/SaveAs.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30315,7 +81644,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/UpdatePermissions.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/UpdatePermissions.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/UpdatePermissions.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30358,7 +81687,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/UsePolicy.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/UsePolicy.sh 2013-01-16 08:58:15.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/UsePolicy.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 1999, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30401,7 +81730,7 @@
* )
echo "Unrecognized system!"
--- jdk/test/sun/security/tools/policytool/i18n.sh 2012-08-10 10:37:05.000000000 -0700
-+++ jdk/test/sun/security/tools/policytool/i18n.sh 2013-01-16 08:58:16.000000000 -0800
++++ jdk/test/sun/security/tools/policytool/i18n.sh 2013-03-09 08:44:54.000000000 -0800
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2000, 2002, Oracle and/or its affiliates. All rights reserved.
@@ -30488,7 +81817,7 @@
SMALL="
--- jdk/test/sun/tools/jconsole/ImmutableResourceTest.sh 2012-08-10 10:37:09.000000000 -0700
-+++ jdk/test/sun/tools/jconsole/ImmutableResourceTest.sh 2013-01-16 08:58:16.000000000 -0800
++++ jdk/test/sun/tools/jconsole/ImmutableResourceTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -53,7 +53,7 @@
OS=`uname -s`
@@ -30499,7 +81828,7 @@
;;
--- jdk/test/sun/tools/jconsole/ResourceCheckTest.sh 2012-08-10 10:37:09.000000000 -0700
-+++ jdk/test/sun/tools/jconsole/ResourceCheckTest.sh 2013-01-16 08:58:16.000000000 -0800
++++ jdk/test/sun/tools/jconsole/ResourceCheckTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -54,7 +54,7 @@
OS=`uname -s`
@@ -30510,7 +81839,7 @@
;;
--- jdk/test/sun/tools/native2ascii/Native2AsciiTests.sh 2012-08-10 10:37:12.000000000 -0700
-+++ jdk/test/sun/tools/native2ascii/Native2AsciiTests.sh 2013-01-16 08:58:16.000000000 -0800
++++ jdk/test/sun/tools/native2ascii/Native2AsciiTests.sh 2013-03-09 08:44:54.000000000 -0800
@@ -33,7 +33,7 @@
case `uname -s` in
@@ -30521,7 +81850,7 @@
N2A=$TESTJAVA/bin/native2ascii
--- jdk/test/sun/tools/native2ascii/resources/ImmutableResourceTest.sh 2012-08-10 10:37:12.000000000 -0700
-+++ jdk/test/sun/tools/native2ascii/resources/ImmutableResourceTest.sh 2013-01-16 08:58:16.000000000 -0800
++++ jdk/test/sun/tools/native2ascii/resources/ImmutableResourceTest.sh 2013-03-09 08:44:54.000000000 -0800
@@ -56,7 +56,7 @@
OS=`uname -s`
@@ -31461,8 +82790,8 @@
+ public @interface Test {}
}
--- jdk/test/tools/launcher/ToolsOpts.java 1969-12-31 16:00:00.000000000 -0800
-+++ jdk/test/tools/launcher/ToolsOpts.java 2013-01-16 08:58:13.000000000 -0800
-@@ -0,0 +1,217 @@
++++ jdk/test/tools/launcher/ToolsOpts.java 2013-03-09 08:44:51.000000000 -0800
+@@ -0,0 +1,218 @@
+/*
+ * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -31488,6 +82817,7 @@
+
+/*
+ * @test
++ * @bug 8002091
+ * @summary Test options patterns for javac,javah,javap and javadoc using
+ * javac as a test launcher. Create a dummy javac and intercept options to check
+ * reception of options as passed through the launcher without having to launch
@@ -31681,7 +83011,7 @@
+ }
+}
--- langtools/.hgtags 2012-08-10 10:39:19.000000000 -0700
-+++ langtools/.hgtags 2013-01-16 09:20:24.000000000 -0800
++++ langtools/.hgtags 2013-03-09 08:44:59.000000000 -0800
@@ -123,6 +123,7 @@
9425dd4f53d5bfcd992d9aecea0eb7d8b2d4f62b jdk7-b146
d34578643d1c6c752d4a6b5e79c6ab1b60850b4a jdk7u1-b01
@@ -31690,7 +83020,7 @@
cd2cc8b5edb045b950aed46d159b4fb8fc2fd1df jdk7u1-b02
82820a30201dbf4b80f1916f3d0f4a92ad21b61a jdk7u1-b03
baa2c13c70fea3d6e259a34f0903197fdceb64b5 jdk7u1-b04
-@@ -197,5 +198,28 @@
+@@ -197,5 +198,46 @@
a35ca56cf8d09b92511f0cd71208a2ea05c8a338 jdk7u6-b21
4f3aafa690d1fcb18693fc4085049eeffe4778f7 jdk7u6-b22
dd3e29d8892fcaba6d76431d5fa9d49e7c088f76 jdk7u6-b23
@@ -31721,8 +83051,26 @@
+7101b3e80e96b000b0b4f0bd7fe4dd7910d02f74 jdk7u10-b17
+4f529e320d83f517a55065b4710c7f1e5ff692c9 jdk7u10-b18
+1e5aed8511b9bea5c2ebe51a2d9094be8bac73cc jdk7u10-b30
++b01338429ab6821f44d19601de433b538942b53d jdk7u11-b20
++aeef1c7e43bc2d4a0960ebf42b642f7a34ec8afc jdk7u11-b21
++eaa8a0141c35edc382d7ce0b1148912db8422b16 jdk7u11-b03
++e8071ede35dc5948f5ed127941be192a4a8c1ebd jdk7u11-b04
++17b9bb22f3fd6a624879a29a3fc4b252327c113d jdk7u11-b05
++96c8b3b817aa3e672f78f1d5006616104378ff29 jdk7u11-b06
++c5d3dabddff76c92425cbf6a99ed4e066d16b4fd jdk7u11-b07
++a0d9abc405580d6fa0ae217fab96608285a38c41 jdk7u11-b08
++a778aaf53c52f78c92f29a1220d9f46de94c9247 jdk7u13-b09
++761b933e269693fd689c2af5d8317201b2172dbb jdk7u13-b10
++8a12629ea21378f96666628f472cd9a6936a4933 jdk7u13-b30
++761b933e269693fd689c2af5d8317201b2172dbb jdk7u13-b20
++1298307076c2f0c2a4acd3a2a132cbe98d399009 jdk7u15-b01
++8db0105f00ce9fe6899ece52d46d78995111c456 jdk7u15-b02
++b00c1580ffa95d9edd567835e1b9a77cf8ca2af6 jdk7u15-b30
++c160d7d1616d099afad0986b7d06aee2d9405e57 jdk7u15-b03
++a778aaf53c52f78c92f29a1220d9f46de94c9247 jdk7u15-b32
++edfcf07c2877af8efa649e514167b22b7f6fc0b4 jdk7u17-b01
--- langtools/test/Makefile 2012-08-10 10:39:30.000000000 -0700
-+++ langtools/test/Makefile 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/Makefile 2013-03-09 08:44:59.000000000 -0800
@@ -42,6 +42,14 @@
ARCH=i586
endif
@@ -31759,7 +83107,7 @@
# Root of all test results
TEST_OUTPUT_DIR = $(TEST_ROOT)/../build/$(PLATFORM)-$(ARCH)/test/langtools
--- langtools/test/tools/javac/4846262/Test.sh 2012-08-10 10:39:38.000000000 -0700
-+++ langtools/test/tools/javac/4846262/Test.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/4846262/Test.sh 2013-03-09 08:44:59.000000000 -0800
@@ -44,7 +44,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31770,7 +83118,7 @@
;;
CYGWIN* )
--- langtools/test/tools/javac/6302184/T6302184.sh 2012-08-10 10:39:38.000000000 -0700
-+++ langtools/test/tools/javac/6302184/T6302184.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/6302184/T6302184.sh 2013-03-09 08:44:59.000000000 -0800
@@ -41,7 +41,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31781,7 +83129,7 @@
;;
CYGWIN* )
--- langtools/test/tools/javac/ClassPathTest/ClassPathTest.sh 2012-08-10 10:39:41.000000000 -0700
-+++ langtools/test/tools/javac/ClassPathTest/ClassPathTest.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/ClassPathTest/ClassPathTest.sh 2013-03-09 08:44:59.000000000 -0800
@@ -56,7 +56,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31792,7 +83140,7 @@
;;
Windows* )
--- langtools/test/tools/javac/ExtDirs/ExtDirs.sh 2012-08-10 10:39:43.000000000 -0700
-+++ langtools/test/tools/javac/ExtDirs/ExtDirs.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/ExtDirs/ExtDirs.sh 2013-03-09 08:44:59.000000000 -0800
@@ -54,7 +54,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31803,7 +83151,7 @@
FS="/"
;;
--- langtools/test/tools/javac/MissingInclude.sh 2012-08-10 10:39:44.000000000 -0700
-+++ langtools/test/tools/javac/MissingInclude.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/MissingInclude.sh 2013-03-09 08:44:59.000000000 -0800
@@ -47,7 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31814,7 +83162,7 @@
;;
Windows* )
--- langtools/test/tools/javac/ProtectedInnerClass/ProtectedInnerClass.sh 2012-08-10 10:39:45.000000000 -0700
-+++ langtools/test/tools/javac/ProtectedInnerClass/ProtectedInnerClass.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/ProtectedInnerClass/ProtectedInnerClass.sh 2013-03-09 08:44:59.000000000 -0800
@@ -52,7 +52,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31825,7 +83173,7 @@
FS="/"
;;
--- langtools/test/tools/javac/T5090006/compiler.sh 2012-08-10 10:39:47.000000000 -0700
-+++ langtools/test/tools/javac/T5090006/compiler.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/T5090006/compiler.sh 2013-03-09 08:44:59.000000000 -0800
@@ -47,7 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31836,7 +83184,7 @@
;;
Windows* )
--- langtools/test/tools/javac/apt.sh 2012-08-10 10:39:53.000000000 -0700
-+++ langtools/test/tools/javac/apt.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/apt.sh 2013-03-09 08:44:59.000000000 -0800
@@ -38,7 +38,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31847,7 +83195,7 @@
PS=":"
FS="/"
--- langtools/test/tools/javac/constDebug/ConstDebug.sh 2012-08-10 10:39:55.000000000 -0700
-+++ langtools/test/tools/javac/constDebug/ConstDebug.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/constDebug/ConstDebug.sh 2013-03-09 08:44:59.000000000 -0800
@@ -47,7 +47,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31858,7 +83206,7 @@
FS="/"
;;
--- langtools/test/tools/javac/fatalErrors/NoJavaLang.sh 2012-08-10 10:40:03.000000000 -0700
-+++ langtools/test/tools/javac/fatalErrors/NoJavaLang.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/fatalErrors/NoJavaLang.sh 2013-03-09 08:44:59.000000000 -0800
@@ -48,7 +48,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31869,7 +83217,7 @@
;;
CYGWIN* )
--- langtools/test/tools/javac/innerClassFile/Driver.sh 2012-08-10 10:40:14.000000000 -0700
-+++ langtools/test/tools/javac/innerClassFile/Driver.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/innerClassFile/Driver.sh 2013-03-09 08:44:59.000000000 -0800
@@ -53,7 +53,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31880,7 +83228,7 @@
;;
Windows* )
--- langtools/test/tools/javac/javazip/Test.sh 2012-08-10 10:40:14.000000000 -0700
-+++ langtools/test/tools/javac/javazip/Test.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/javazip/Test.sh 2013-03-09 08:44:59.000000000 -0800
@@ -41,7 +41,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31891,7 +83239,7 @@
SCR=`pwd`
;;
--- langtools/test/tools/javac/links/links.sh 2012-08-10 10:40:15.000000000 -0700
-+++ langtools/test/tools/javac/links/links.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/links/links.sh 2013-03-09 08:44:59.000000000 -0800
@@ -53,7 +53,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31902,7 +83250,7 @@
PS=":"
FS="/"
--- langtools/test/tools/javac/newlines/Newlines.sh 2012-08-10 10:40:17.000000000 -0700
-+++ langtools/test/tools/javac/newlines/Newlines.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/newlines/Newlines.sh 2013-03-09 08:44:59.000000000 -0800
@@ -50,7 +50,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31913,7 +83261,7 @@
;;
Windows* )
--- langtools/test/tools/javac/stackmap/T4955930.sh 2012-08-10 10:40:22.000000000 -0700
-+++ langtools/test/tools/javac/stackmap/T4955930.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/stackmap/T4955930.sh 2013-03-09 08:44:59.000000000 -0800
@@ -41,7 +41,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31924,7 +83272,7 @@
;;
Windows_95 | Windows_98 | Windows_NT )
--- langtools/test/tools/javac/unicode/SupplementaryJavaID6.sh 2012-08-10 10:40:25.000000000 -0700
-+++ langtools/test/tools/javac/unicode/SupplementaryJavaID6.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javac/unicode/SupplementaryJavaID6.sh 2013-03-09 08:44:59.000000000 -0800
@@ -55,7 +55,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31935,7 +83283,7 @@
then
ENV="env LANG=en_US.UTF-8"
--- langtools/test/tools/javah/6257087/foo.sh 2012-08-10 10:40:28.000000000 -0700
-+++ langtools/test/tools/javah/6257087/foo.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javah/6257087/foo.sh 2013-03-09 08:44:59.000000000 -0800
@@ -41,7 +41,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31946,7 +83294,7 @@
FS="/"
;;
--- langtools/test/tools/javah/ConstMacroTest.sh 2012-08-10 10:40:28.000000000 -0700
-+++ langtools/test/tools/javah/ConstMacroTest.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javah/ConstMacroTest.sh 2013-03-09 08:44:59.000000000 -0800
@@ -56,7 +56,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31957,7 +83305,7 @@
FS="/"
;;
--- langtools/test/tools/javah/MissingParamClassTest.sh 2012-08-10 10:40:28.000000000 -0700
-+++ langtools/test/tools/javah/MissingParamClassTest.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javah/MissingParamClassTest.sh 2013-03-09 08:44:59.000000000 -0800
@@ -58,7 +58,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31968,7 +83316,7 @@
FS="/"
;;
--- langtools/test/tools/javah/ReadOldClass.sh 2012-08-10 10:40:28.000000000 -0700
-+++ langtools/test/tools/javah/ReadOldClass.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javah/ReadOldClass.sh 2013-03-09 08:44:59.000000000 -0800
@@ -43,7 +43,7 @@
# set platform-dependent variables
OS=`uname -s`
@@ -31979,7 +83327,7 @@
FS="/"
;;
--- langtools/test/tools/javap/pathsep.sh 2012-08-10 10:40:29.000000000 -0700
-+++ langtools/test/tools/javap/pathsep.sh 2013-01-16 09:20:24.000000000 -0800
++++ langtools/test/tools/javap/pathsep.sh 2013-03-09 08:44:59.000000000 -0800
@@ -40,7 +40,7 @@
# set platform-dependent variables
OS=`uname -s`
diff --git a/java/openjdk7/files/patch-zzz-7u11 b/java/openjdk7/files/patch-zzz-7u11
deleted file mode 100644
index 8703f26f9638..000000000000
--- a/java/openjdk7/files/patch-zzz-7u11
+++ /dev/null
@@ -1,85 +0,0 @@
-
-# HG changeset patch
-# User jrose
-# Date 1357874549 28800
-# Node ID ecc14534318c80dc7612c8b1d328a67849c5b07f
-# Parent 88c54f7a8c514b3df459cb086356387cd2c35d8a
-8004933: Improve MethodHandle interaction with libraries
-8006017: Improve lookup resolutions
-Reviewed-by: ahgross
-
---- jdk/src/share/classes/java/lang/invoke/MethodHandleNatives.java Tue Dec 04 17:28:38 2012 -0800
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandleNatives.java Thu Jan 10 19:22:29 2013 -0800
-@@ -418,6 +418,21 @@ class MethodHandleNatives {
- return defc == sun.misc.Unsafe.class;
- case "lookup":
- return defc == java.lang.invoke.MethodHandles.class;
-+ case "findStatic":
-+ case "findVirtual":
-+ case "findConstructor":
-+ case "findSpecial":
-+ case "findGetter":
-+ case "findSetter":
-+ case "findStaticGetter":
-+ case "findStaticSetter":
-+ case "bind":
-+ case "unreflect":
-+ case "unreflectSpecial":
-+ case "unreflectConstructor":
-+ case "unreflectGetter":
-+ case "unreflectSetter":
-+ return defc == java.lang.invoke.MethodHandles.Lookup.class;
- case "invoke":
- return defc == java.lang.reflect.Method.class;
- case "get":
---- jdk/src/share/classes/java/lang/invoke/MethodHandles.java Tue Dec 04 17:28:38 2012 -0800
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandles.java Thu Jan 10 19:22:29 2013 -0800
-@@ -68,6 +68,10 @@ public class MethodHandles {
- */
- public static Lookup lookup() {
- return new Lookup();
-+ }
-+ static {
-+ // FIXME in MR1: Core Reflection cannot be used to gain a Lookup to perform MH reflection
-+ Reflection.registerMethodsToFilter(MethodHandles.class, "lookup");
- }
-
- /**
-
-
-# HG changeset patch
-# User jrose
-# Date 1357955621 28800
-# Node ID d9969a953f693f5760b1d2759f11a2cb222e4f20
-# Parent f9567d889266689d5b76f11a23584127848700bc
-8006125: Update MethodHandles library interactions
-Reviewed-by: mchung, jdn, ahgross
-
---- jdk/src/share/classes/java/lang/invoke/MethodHandles.java Fri Jan 11 09:00:00 2013 -0800
-+++ jdk/src/share/classes/java/lang/invoke/MethodHandles.java Fri Jan 11 17:53:41 2013 -0800
-@@ -68,10 +68,6 @@ public class MethodHandles {
- */
- public static Lookup lookup() {
- return new Lookup();
-- }
-- static {
-- // FIXME in MR1: Core Reflection cannot be used to gain a Lookup to perform MH reflection
-- Reflection.registerMethodsToFilter(MethodHandles.class, "lookup");
- }
-
- /**
---- jdk/src/share/classes/sun/reflect/misc/MethodUtil.java Fri Jan 11 09:00:00 2013 -0800
-+++ jdk/src/share/classes/sun/reflect/misc/MethodUtil.java Fri Jan 11 17:53:41 2013 -0800
-@@ -256,6 +256,12 @@ public final class MethodUtil extends Se
- public static Object invoke(Method m, Object obj, Object[] params)
- throws InvocationTargetException, IllegalAccessException {
- if (m.getDeclaringClass().equals(AccessController.class) ||
-+ (m.getDeclaringClass().equals(java.lang.invoke.MethodHandles.class)
-+ && m.getName().equals("lookup")) ||
-+ (m.getDeclaringClass().equals(java.lang.invoke.MethodHandles.Lookup.class)
-+ && (m.getName().startsWith("find") ||
-+ m.getName().startsWith("bind") ||
-+ m.getName().startsWith("unreflect"))) ||
- m.getDeclaringClass().equals(Method.class))
- throw new InvocationTargetException(
- new UnsupportedOperationException("invocation not supported"));