8200198: javah man pages were not removed by JDK-8191054
Reviewed-by: erikj, alanb
--- a/src/bsd/doc/man/ja/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-." 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 javah 1 "07 May 2011"
-
-.LP
--- a/src/bsd/doc/man/java.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/bsd/doc/man/java.1 Mon Mar 26 16:09:22 2018 -0700
@@ -3772,17 +3772,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jar(1)
.RE
.sp
--- a/src/bsd/doc/man/javac.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/bsd/doc/man/javac.1 Mon Mar 26 16:09:22 2018 -0700
@@ -1353,9 +1353,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javadoc(1)
.TP 0.2i
\(bu
--- a/src/bsd/doc/man/javadoc.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/bsd/doc/man/javadoc.1 Mon Mar 26 16:09:22 2018 -0700
@@ -2978,9 +2978,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.SH RELATED\ DOCUMENTS
.TP 0.2i
--- a/src/bsd/doc/man/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,158 +0,0 @@
-'\" t
-.\" Copyright (c) 1994, 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.
-.\"
-.\" Arch: generic
-.\" Software: JDK 8
-.\" Date: 21 November 2013
-.\" SectDesc: Basic Tools
-.\" Title: javah.1
-.\"
-.if n .pl 99999
-.TH javah 1 "21 November 2013" "JDK 8" "Basic Tools"
-.\" -----------------------------------------------------------------
-.\" * Define some portability stuff
-.\" -----------------------------------------------------------------
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.ie \n(.g .ds Aq \(aq
-.el .ds Aq '
-.\" -----------------------------------------------------------------
-.\" * set default formatting
-.\" -----------------------------------------------------------------
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -----------------------------------------------------------------
-.\" * MAIN CONTENT STARTS HERE *
-.\" -----------------------------------------------------------------
-
-.SH NAME
-javah \- Generates C header and source files from a Java class\&.
-.SH SYNOPSIS
-.sp
-.nf
-
-\fBjavah\fR [ \fIoptions\fR ] f\fIully\-qualified\-class\-name \&.\&.\&.\fR
-.fi
-.sp
-.TP
-\fIoptions\fR
-The command-line options\&. See Options\&.
-.TP
-\fIfully-qualified-class-name\fR
-The fully qualified location of the classes to be converted to C header and source files\&.
-.SH DESCRIPTION
-The \f3javah\fR command generates C header and source files that are needed to implement native methods\&. The generated header and source files are used by C programs to reference an object\&'s instance variables from native source code\&. The \f3\&.h\fR file contains a \f3struct\fR definition with a layout that parallels the layout of the corresponding class\&. The fields in the \f3struct\fR correspond to instance variables in the class\&.
-.PP
-The name of the header file and the structure declared within it are derived from the name of the class\&. When the class passed to the \f3javah\fR command is inside a package, the package name is added to the beginning of both the header file name and the structure name\&. Underscores (_) are used as name delimiters\&.
-.PP
-By default the \f3javah\fR command creates a header file for each class listed on the command line and puts the files in the current directory\&. Use the \f3-stubs\fR option to create source files\&. Use the \f3-o\fR option to concatenate the results for all listed classes into a single file\&.
-.PP
-The Java Native Interface (JNI) does not require header information or stub files\&. The \f3javah\fR command can still be used to generate native method function prototypes needed for JNI-style native methods\&. The \f3javah\fR command produces JNI-style output by default and places the result in the \f3\&.h\fR file\&.
-.SH OPTIONS
-.TP
--o \fIoutputfile\fR
-.br
-Concatenates the resulting header or source files for all the classes listed on the command line into an output file\&. Only one of \f3-o\fR or \f3-d\fR can be used\&.
-.TP
--d \fIdirectory\fR
-.br
-Sets the directory where the \f3javah\fR command saves the header files or the stub files\&. Only one of \f3-d\fR or \f3-o\fR can be used\&.
-.TP
--stubs
-.br
-Causes the \f3javah\fR command to generate C declarations from the Java object file\&.
-.TP
--verbose
-.br
-Indicates verbose output and causes the \f3javah\fR command to print a message to \f3stdout\fR about the status of the generated files\&.
-.TP
--help
-.br
-Prints a help message for \f3javah\fR usage\&.
-.TP
--version
-.br
-Prints \f3javah\fR command release information\&.
-.TP
--jni
-.br
-Causes the \f3javah\fR command to create an output file containing JNI-style native method function prototypes\&. This is the default output; use of \f3-jni\fR is optional\&.
-.TP
--classpath \fIpath\fR
-.br
-Specifies the path the \f3javah\fR command uses to look up classes\&. Overrides the default or the \f3CLASSPATH\fR environment variable when it is set\&. Directories are separated by colons on Oracle Solaris and semicolons on Windows\&. The general format for path is:
-
-\fIOracle Solaris\fR:
-
-\&.:\fIyour-path\fR
-
-Example: \f3\&.:/home/avh/classes:/usr/local/java/classes\fR
-
-\fIWindows\fR:
-
-\&.;\fIyour-path\fR
-
-Example: \f3\&.;C:\eusers\edac\eclasses;C:\etools\ejava\eclasses\fR
-
-As a special convenience, a class path element that contains a base name of * is considered equivalent to specifying a list of all the files in the directory with the extension \f3\&.jar\fR or \f3\&.JAR\fR\&.
-
-For example, if directory \f3mydir\fR contains \f3a\&.jar\fR and \f3b\&.JAR\fR, then the class path element \f3mydir/*\fR is expanded to a \f3A\fR\f3\&.jar:b\&.JAR\fR, except that the order of jar files is unspecified\&. All JAR files in the specified directory, including hidden ones, are included in the list\&. A class path entry that consists of * expands to a list of all the JAR files in the current directory\&. The \f3CLASSPATH\fR environment variable, where defined, is similarly expanded\&. Any class path wild card expansion occurs before the Java Virtual Machine (JVM) is started\&. A Java program will never see unexpanded wild cards except by querying the environment\&. For example, by calling \f3System\&.getenv("CLASSPATH")\fR\&.
-.TP
--bootclasspath \fIpath\fR
-.br
-Specifies the path from which to load bootstrap classes\&. By default, the bootstrap classes are the classes that implement the core Java platform located in \f3jre\elib\ert\&.jar\fR and several other JAR files\&.
-.TP
--old
-.br
-Specifies that old JDK 1\&.0-style header files should be generated\&.
-.TP
--force
-.br
-Specifies that output files should always be written\&.
-.TP
--J\fIoption\fR
-.br
-Passes \f3option\fR to the Java Virtual Machine, where \f3option\fR is one of the options described on the reference page for the Java application launcher\&. For example, \f3-J-Xms48m\fR sets the startup memory to 48 MB\&. See java(1)\&.
-.SH SEE\ ALSO
-.TP 0.2i
-\(bu
-javah(1)
-.TP 0.2i
-\(bu
-java(1)
-.TP 0.2i
-\(bu
-jdb(1)
-.TP 0.2i
-\(bu
-javap(1)
-.TP 0.2i
-\(bu
-javadoc(1)
-.RE
-.br
-'pl 8.5i
-'bp
--- a/src/bsd/doc/man/javap.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/bsd/doc/man/javap.1 Mon Mar 26 16:09:22 2018 -0700
@@ -362,17 +362,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jdb(1)
.RE
.sp
--- a/src/bsd/doc/man/jdb.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/bsd/doc/man/jdb.1 Mon Mar 26 16:09:22 2018 -0700
@@ -260,9 +260,6 @@
java(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.RE
.br
--- a/src/linux/doc/man/ja/java.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/ja/java.1 Mon Mar 26 16:09:22 2018 -0700
@@ -2902,17 +2902,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jar(1)
.RE
.sp
--- a/src/linux/doc/man/ja/javac.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/ja/javac.1 Mon Mar 26 16:09:22 2018 -0700
@@ -1536,17 +1536,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javadoc(1)
.RE
.sp
--- a/src/linux/doc/man/ja/javadoc.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/ja/javadoc.1 Mon Mar 26 16:09:22 2018 -0700
@@ -4597,17 +4597,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javap(1)
.RE
.SH "��Ϣ�ɥ������"
--- a/src/linux/doc/man/ja/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,222 +0,0 @@
-'\" t
-.\" Copyright (c) 1994, 2014, 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.
-.\"
-.\" Title: javah
-.\" Language: Japanese
-.\" Date: 2013ǯ11��21��
-.\" SectDesc: ���ܥġ���
-.\" Software: JDK 8
-.\" Arch: ����
-.\" Part Number: E58103-01
-.\" Doc ID: JSSON
-.\"
-.if n .pl 99999
-.TH "javah" "1" "2013ǯ11��21��" "JDK 8" "���ܥġ���"
-.\" -----------------------------------------------------------------
-.\" * Define some portability stuff
-.\" -----------------------------------------------------------------
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.ie \n(.g .ds Aq \(aq
-.el .ds Aq '
-.\" -----------------------------------------------------------------
-.\" * set default formatting
-.\" -----------------------------------------------------------------
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -----------------------------------------------------------------
-.\" * MAIN CONTENT STARTS HERE *
-.\" -----------------------------------------------------------------
-.SH "̾��"
-javah \- Java���饹����C�إå����ȥ��������ե�������������ޤ���
-.SH "����"
-.sp
-.if n \{\
-.RS 4
-.\}
-.nf
-\fBjavah\fR [ \fIoptions\fR ] f\fIully\-qualified\-class\-name \&.\&.\&.\fR
-.fi
-.if n \{\
-.RE
-.\}
-.PP
-\fIoptions\fR
-.RS 4
-���ޥ�ɹԥ��ץ�����ץ����Ȥ��Ƥ���������
-.RE
-.PP
-\fIfully\-qualified\-class\-name\fR
-.RS 4
-C�إå����ȥ��������ե�������Ѵ�����륯�饹�δ����������줿��ꡣ
-.RE
-.SH "����"
-.PP
-\fBjavah\fR���ޥ�ɤϡ��ͥ��ƥ��֡���åɤ�������뤿���ɬ�פ�C�إå����ȥ��������ե�������������ޤ����������줿�إå����ȥ��������ե�����ϡ��ͥ��ƥ��֡��������������ɤ��饪�֥������ȤΥ������ѿ��Ȥ��뤿���C�ץ������ˤ�äƻ��Ѥ���ޤ���\fB\&.h\fR�ե�����ϡ��б����륯�饹�Ȱ��פ������֤����\fBstruct\fR�����ޤߤޤ���\fBstruct\fR�Υե�����ɤϡ����饹�Υ������ѿ����б����ޤ���
-.PP
-�إå������ե�����Ȥ�������������빽¤�Τ�̾���ϥ��饹��̾�������������ޤ���\fBjavah\fR���ޥ�ɤ��Ϥ���륯�饹���ѥå���������ˤ����硢�ѥå�����̾�ϥإå������ե�����̾�ȹ�¤��̾��ξ������Ƭ���ղä���ޤ����������������(_)��̾���ζ��ڤ�ʸ���Ȥ��ƻ��Ѥ���ޤ���
-.PP
-�ǥե���ȤǤ�\fBjavah\fR���ޥ�ɤϡ����ޥ�ɹԤ˥ꥹ�Ȥ����ƥ��饹�Υإå������ե����������������ߤΥǥ��쥯�ȥ�˥ե�������֤��ޤ������������ե�������������ˤϡ�\fB\-stubs\fR���ץ�������Ѥ��Ƥ���������1�ĤΥե��������ˡ��ꥹ�Ȥ��줿���٤ƤΥ��饹�η�̤�Ϣ�뤹��ˤϡ�\fB\-o\fR���ץ�������Ѥ��Ƥ���������
-.PP
-Java Native Interface (JNI)�ϥإå�������ޤ��ϥ����֡��ե������ɬ�פȤ��ޤ���\fBjavah\fR���ޥ�ɤϰ���³��JNI�����Υͥ��ƥ��֡���åɤ�ɬ�פʥͥ��ƥ��֡���åɴؿ��ץ��ȥ����פ������˻��ѤǤ��ޤ���\fBjavah\fR���ޥ�ɤϥǥե���Ȥ�JNI�����ν��Ϥ������������η�̤�\fB\&.h\fR�ե�����˳�Ǽ���ޤ���
-.SH "���ץ����"
-.PP
-\-o \fIoutputfile\fR
-.RS 4
-���ޥ�ɹԤ˥ꥹ�Ȥ��줿���٤ƤΥ��饹���Ф��ơ���̤Υإå����ޤ��ϥ��������ե������Ϣ�뤷�ƽ��ϥե�����˳�Ǽ���ޤ���\fB\-o\fR�ޤ���\fB\-d\fR�Τɤ��餫�Τ��ѤǤ��ޤ���
-.RE
-.PP
-\-d \fIdirectory\fR
-.RS 4
-\fBjavah\fR���إå������ե�����ޤ��ϥ����֡��ե��������¸���롢�ǥ��쥯�ȥ�����ꤷ�ޤ���\fB\-d\fR�ޤ���\fB\-o\fR�Τɤ��餫�Τ��ѤǤ��ޤ���
-.RE
-.PP
-\-stubs
-.RS 4
-\fBjavah\fR���ޥ�ɤ���Java���֥������ȡ��ե����뤫��C������������ޤ���
-.RE
-.PP
-\-verbose
-.RS 4
-�ܺٽ��Ϥ���ꤷ�������ե�����ξ��֤˴ؤ����å�������\fBjavah\fR���ޥ�ɤ�\fBɸ�����\fR�˽��Ϥ��ޤ���
-.RE
-.PP
-\-help
-.RS 4
-\fBjavah\fR�λ�����ˡ�ˤĤ��ƤΥإ�ס���å���������Ϥ��ޤ���
-.RE
-.PP
-\-version
-.RS 4
-\fBjavah\fR���ޥ�ɤΥ����������Ϥ��ޤ���
-.RE
-.PP
-\-jni
-.RS 4
-JNI�����Υͥ��ƥ��֡���åɵ�ǽ�ץ��ȥ����פ�ޤ���ϥե������\fBjavah\fR���ޥ�ɤ��������ޤ��������ɸ����ϤǤ��뤿�ᡢ\fB\-jni\fR�λ��Ѥϥ��ץ����Ǥ���
-.RE
-.PP
-\-classpath \fIpath\fR
-.RS 4
-���饹��õ�������\fBjavah\fR���ޥ�ɤ����Ѥ���ѥ�����ꤷ�ޤ����ǥե���Ȥޤ���\fBCLASSPATH\fR�Ķ��ѿ���������С��饤�ɤ��ޤ����ǥ��쥯�ȥ��Oracle Solaris�ξ��ϥ�����ǡ�Windows�ξ��ϥ��ߥ�����Ƕ��ڤ��ޤ����ѥ��ΰ���Ū�ʷ����ϼ��Τ褦�ˤʤ�ޤ���
-.sp
-\fBOracle Solaris\fR��:
-.sp
-\&.:\fIyour\-path\fR
-.sp
-��:
-\fB\&.:/home/avh/classes:/usr/local/java/classes\fR
-.sp
-\fBWindows\fR��:
-.sp
-\&.;\fIyour\-path\fR
-.sp
-��:
-\fB\&.;C:\eusers\edac\eclasses;C:\etools\ejava\eclasses\fR
-.sp
-�ص��塢*�Υ١���̾��ޤ९�饹���ѥ����Ǥϡ�\fB\&.jar\fR�ޤ���\fB\&.JAR\fR���ĥ�Ҥ˻��ĥǥ��쥯�ȥ���Τ��٤ƤΥե�����Υꥹ�Ȥ���ꤹ��Τ�Ʊ���Ȥߤʤ���ޤ���
-.sp
-���Ȥ��С��ǥ��쥯�ȥ�\fBmydir\fR��\fBa\&.jar\fR��\fBb\&.JAR\fR���ޤޤ�Ƥ����硢���饹���ѥ�����\fBmydir/*\fR��\fBA\fR\fB\&.jar:b\&.JAR\fR��Ÿ������ޤ�����JAR�ե�����ν��֤�̤����Ȥʤ�ޤ������Υꥹ�Ȥˤϡ������ե������ޤᡢ���ꤵ�줿�ǥ��쥯�ȥ���Τ��٤Ƥ�JAR�ե����뤬�ޤޤ�ޤ���*����ʤ륯�饹���ѥ�������ȥ�ϡ����ߤΥǥ��쥯�ȥ���Τ��٤Ƥ�JAR�ե�����Υꥹ�Ȥ�Ÿ������ޤ���\fBCLASSPATH\fR�Ķ��ѿ��⡢������ˤ�Ʊ�ͤ�Ÿ������ޤ������饹���ѥ��Υ磻��ɥ����ɤ�Ÿ���ϡ�Java Virtual Machine (JVM)�γ������˹Ԥ��ޤ���Java�ץ������ϡ��Ķ����䤤�礻����������Ÿ������Ƥ��ʤ��磻��ɥ����ɤȤ��ޤ����Ȥ��С�\fBSystem\&.getenv("CLASSPATH")\fR���뤷���䤤�礻����Ǥ���
-.RE
-.PP
-\-bootclasspath \fIpath\fR
-.RS 4
-�֡��ȥ��ȥ�åס����饹������ɤ���ѥ�����ꤷ�ޤ����֡��ȥ��ȥ�åס����饹�ϡ��ǥե���ȤǤ�\fBjre\elib\ert\&.jar\fR�����¾�Τ����Ĥ���JAR�ե�����ˤ��롢����Java�ץ�åȥե������������륯�饹�Ǥ���
-.RE
-.PP
-\-old
-.RS 4
-�Ť�JDK 1\&.0�����Υإå������ե��������������褦�˻��ꤷ�ޤ���
-.RE
-.PP
-\-force
-.RS 4
-���ϥե����뤬��˽��ޤ��褦�˻��ꤷ�ޤ���
-.RE
-.PP
-\-J\fIoption\fR
-.RS 4
-Java Virtual Machine��\fBoption\fR���Ϥ��ޤ���\fBoption\fR�ˤϡ�Java���ץꥱ�������ư�ġ���Υ�ե�����ڡ����˵��ܤ���Ƥ��륪�ץ�����1�Ļ��ꤷ�ޤ������Ȥ��С�\fB\-J\-Xms48m\fR�Ȼ��ꤹ��ȡ��������ȥ��åס������48MB�����ꤵ��ޤ���java(1)�Ȥ��Ƥ���������
-.RE
-.SH "��Ϣ����"
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-java(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-jdb(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javap(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javadoc(1)
-.RE
-.br
-'pl 8.5i
-'bp
--- a/src/linux/doc/man/ja/javap.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/ja/javap.1 Mon Mar 26 16:09:22 2018 -0700
@@ -338,17 +338,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jdb(1)
.RE
.sp
--- a/src/linux/doc/man/ja/jdb.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/ja/jdb.1 Mon Mar 26 16:09:22 2018 -0700
@@ -371,17 +371,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javap(1)
.RE
.br
--- a/src/linux/doc/man/java.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/java.1 Mon Mar 26 16:09:22 2018 -0700
@@ -3767,17 +3767,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jar(1)
.RE
.sp
--- a/src/linux/doc/man/javac.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/javac.1 Mon Mar 26 16:09:22 2018 -0700
@@ -1353,9 +1353,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javadoc(1)
.TP 0.2i
\(bu
--- a/src/linux/doc/man/javadoc.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/javadoc.1 Mon Mar 26 16:09:22 2018 -0700
@@ -2978,9 +2978,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.SH RELATED\ DOCUMENTS
.TP 0.2i
--- a/src/linux/doc/man/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,158 +0,0 @@
-'\" t
-.\" Copyright (c) 1994, 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.
-.\"
-.\" Arch: generic
-.\" Software: JDK 8
-.\" Date: 21 November 2013
-.\" SectDesc: Basic Tools
-.\" Title: javah.1
-.\"
-.if n .pl 99999
-.TH javah 1 "21 November 2013" "JDK 8" "Basic Tools"
-.\" -----------------------------------------------------------------
-.\" * Define some portability stuff
-.\" -----------------------------------------------------------------
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.ie \n(.g .ds Aq \(aq
-.el .ds Aq '
-.\" -----------------------------------------------------------------
-.\" * set default formatting
-.\" -----------------------------------------------------------------
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -----------------------------------------------------------------
-.\" * MAIN CONTENT STARTS HERE *
-.\" -----------------------------------------------------------------
-
-.SH NAME
-javah \- Generates C header and source files from a Java class\&.
-.SH SYNOPSIS
-.sp
-.nf
-
-\fBjavah\fR [ \fIoptions\fR ] f\fIully\-qualified\-class\-name \&.\&.\&.\fR
-.fi
-.sp
-.TP
-\fIoptions\fR
-The command-line options\&. See Options\&.
-.TP
-\fIfully-qualified-class-name\fR
-The fully qualified location of the classes to be converted to C header and source files\&.
-.SH DESCRIPTION
-The \f3javah\fR command generates C header and source files that are needed to implement native methods\&. The generated header and source files are used by C programs to reference an object\&'s instance variables from native source code\&. The \f3\&.h\fR file contains a \f3struct\fR definition with a layout that parallels the layout of the corresponding class\&. The fields in the \f3struct\fR correspond to instance variables in the class\&.
-.PP
-The name of the header file and the structure declared within it are derived from the name of the class\&. When the class passed to the \f3javah\fR command is inside a package, the package name is added to the beginning of both the header file name and the structure name\&. Underscores (_) are used as name delimiters\&.
-.PP
-By default the \f3javah\fR command creates a header file for each class listed on the command line and puts the files in the current directory\&. Use the \f3-stubs\fR option to create source files\&. Use the \f3-o\fR option to concatenate the results for all listed classes into a single file\&.
-.PP
-The Java Native Interface (JNI) does not require header information or stub files\&. The \f3javah\fR command can still be used to generate native method function prototypes needed for JNI-style native methods\&. The \f3javah\fR command produces JNI-style output by default and places the result in the \f3\&.h\fR file\&.
-.SH OPTIONS
-.TP
--o \fIoutputfile\fR
-.br
-Concatenates the resulting header or source files for all the classes listed on the command line into an output file\&. Only one of \f3-o\fR or \f3-d\fR can be used\&.
-.TP
--d \fIdirectory\fR
-.br
-Sets the directory where the \f3javah\fR command saves the header files or the stub files\&. Only one of \f3-d\fR or \f3-o\fR can be used\&.
-.TP
--stubs
-.br
-Causes the \f3javah\fR command to generate C declarations from the Java object file\&.
-.TP
--verbose
-.br
-Indicates verbose output and causes the \f3javah\fR command to print a message to \f3stdout\fR about the status of the generated files\&.
-.TP
--help
-.br
-Prints a help message for \f3javah\fR usage\&.
-.TP
--version
-.br
-Prints \f3javah\fR command release information\&.
-.TP
--jni
-.br
-Causes the \f3javah\fR command to create an output file containing JNI-style native method function prototypes\&. This is the default output; use of \f3-jni\fR is optional\&.
-.TP
--classpath \fIpath\fR
-.br
-Specifies the path the \f3javah\fR command uses to look up classes\&. Overrides the default or the \f3CLASSPATH\fR environment variable when it is set\&. Directories are separated by colons on Oracle Solaris and semicolons on Windows\&. The general format for path is:
-
-\fIOracle Solaris\fR:
-
-\&.:\fIyour-path\fR
-
-Example: \f3\&.:/home/avh/classes:/usr/local/java/classes\fR
-
-\fIWindows\fR:
-
-\&.;\fIyour-path\fR
-
-Example: \f3\&.;C:\eusers\edac\eclasses;C:\etools\ejava\eclasses\fR
-
-As a special convenience, a class path element that contains a base name of * is considered equivalent to specifying a list of all the files in the directory with the extension \f3\&.jar\fR or \f3\&.JAR\fR\&.
-
-For example, if directory \f3mydir\fR contains \f3a\&.jar\fR and \f3b\&.JAR\fR, then the class path element \f3mydir/*\fR is expanded to a \f3A\fR\f3\&.jar:b\&.JAR\fR, except that the order of jar files is unspecified\&. All JAR files in the specified directory, including hidden ones, are included in the list\&. A class path entry that consists of * expands to a list of all the JAR files in the current directory\&. The \f3CLASSPATH\fR environment variable, where defined, is similarly expanded\&. Any class path wild card expansion occurs before the Java Virtual Machine (JVM) is started\&. A Java program will never see unexpanded wild cards except by querying the environment\&. For example, by calling \f3System\&.getenv("CLASSPATH")\fR\&.
-.TP
--bootclasspath \fIpath\fR
-.br
-Specifies the path from which to load bootstrap classes\&. By default, the bootstrap classes are the classes that implement the core Java platform located in \f3jre\elib\ert\&.jar\fR and several other JAR files\&.
-.TP
--old
-.br
-Specifies that old JDK 1\&.0-style header files should be generated\&.
-.TP
--force
-.br
-Specifies that output files should always be written\&.
-.TP
--J\fIoption\fR
-.br
-Passes \f3option\fR to the Java Virtual Machine, where \f3option\fR is one of the options described on the reference page for the Java application launcher\&. For example, \f3-J-Xms48m\fR sets the startup memory to 48 MB\&. See java(1)\&.
-.SH SEE\ ALSO
-.TP 0.2i
-\(bu
-javah(1)
-.TP 0.2i
-\(bu
-java(1)
-.TP 0.2i
-\(bu
-jdb(1)
-.TP 0.2i
-\(bu
-javap(1)
-.TP 0.2i
-\(bu
-javadoc(1)
-.RE
-.br
-'pl 8.5i
-'bp
--- a/src/linux/doc/man/javap.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/javap.1 Mon Mar 26 16:09:22 2018 -0700
@@ -362,17 +362,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jdb(1)
.RE
.sp
--- a/src/linux/doc/man/jdb.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/linux/doc/man/jdb.1 Mon Mar 26 16:09:22 2018 -0700
@@ -260,9 +260,6 @@
java(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.RE
.br
--- a/src/solaris/doc/sun/man/man1/ja/java.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/ja/java.1 Mon Mar 26 16:09:22 2018 -0700
@@ -2902,17 +2902,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jar(1)
.RE
.sp
--- a/src/solaris/doc/sun/man/man1/ja/javac.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/ja/javac.1 Mon Mar 26 16:09:22 2018 -0700
@@ -1536,17 +1536,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javadoc(1)
.RE
.sp
--- a/src/solaris/doc/sun/man/man1/ja/javadoc.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/ja/javadoc.1 Mon Mar 26 16:09:22 2018 -0700
@@ -4597,17 +4597,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javap(1)
.RE
.SH "��Ϣ�ɥ������"
--- a/src/solaris/doc/sun/man/man1/ja/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,222 +0,0 @@
-'\" t
-.\" Copyright (c) 1994, 2014, 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.
-.\"
-.\" Title: javah
-.\" Language: Japanese
-.\" Date: 2013ǯ11��21��
-.\" SectDesc: ���ܥġ���
-.\" Software: JDK 8
-.\" Arch: ����
-.\" Part Number: E58103-01
-.\" Doc ID: JSSON
-.\"
-.if n .pl 99999
-.TH "javah" "1" "2013ǯ11��21��" "JDK 8" "���ܥġ���"
-.\" -----------------------------------------------------------------
-.\" * Define some portability stuff
-.\" -----------------------------------------------------------------
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.ie \n(.g .ds Aq \(aq
-.el .ds Aq '
-.\" -----------------------------------------------------------------
-.\" * set default formatting
-.\" -----------------------------------------------------------------
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -----------------------------------------------------------------
-.\" * MAIN CONTENT STARTS HERE *
-.\" -----------------------------------------------------------------
-.SH "̾��"
-javah \- Java���饹����C�إå����ȥ��������ե�������������ޤ���
-.SH "����"
-.sp
-.if n \{\
-.RS 4
-.\}
-.nf
-\fBjavah\fR [ \fIoptions\fR ] f\fIully\-qualified\-class\-name \&.\&.\&.\fR
-.fi
-.if n \{\
-.RE
-.\}
-.PP
-\fIoptions\fR
-.RS 4
-���ޥ�ɹԥ��ץ�����ץ����Ȥ��Ƥ���������
-.RE
-.PP
-\fIfully\-qualified\-class\-name\fR
-.RS 4
-C�إå����ȥ��������ե�������Ѵ�����륯�饹�δ����������줿��ꡣ
-.RE
-.SH "����"
-.PP
-\fBjavah\fR���ޥ�ɤϡ��ͥ��ƥ��֡���åɤ�������뤿���ɬ�פ�C�إå����ȥ��������ե�������������ޤ����������줿�إå����ȥ��������ե�����ϡ��ͥ��ƥ��֡��������������ɤ��饪�֥������ȤΥ������ѿ��Ȥ��뤿���C�ץ������ˤ�äƻ��Ѥ���ޤ���\fB\&.h\fR�ե�����ϡ��б����륯�饹�Ȱ��פ������֤����\fBstruct\fR�����ޤߤޤ���\fBstruct\fR�Υե�����ɤϡ����饹�Υ������ѿ����б����ޤ���
-.PP
-�إå������ե�����Ȥ�������������빽¤�Τ�̾���ϥ��饹��̾�������������ޤ���\fBjavah\fR���ޥ�ɤ��Ϥ���륯�饹���ѥå���������ˤ����硢�ѥå�����̾�ϥإå������ե�����̾�ȹ�¤��̾��ξ������Ƭ���ղä���ޤ����������������(_)��̾���ζ��ڤ�ʸ���Ȥ��ƻ��Ѥ���ޤ���
-.PP
-�ǥե���ȤǤ�\fBjavah\fR���ޥ�ɤϡ����ޥ�ɹԤ˥ꥹ�Ȥ����ƥ��饹�Υإå������ե����������������ߤΥǥ��쥯�ȥ�˥ե�������֤��ޤ������������ե�������������ˤϡ�\fB\-stubs\fR���ץ�������Ѥ��Ƥ���������1�ĤΥե��������ˡ��ꥹ�Ȥ��줿���٤ƤΥ��饹�η�̤�Ϣ�뤹��ˤϡ�\fB\-o\fR���ץ�������Ѥ��Ƥ���������
-.PP
-Java Native Interface (JNI)�ϥإå�������ޤ��ϥ����֡��ե������ɬ�פȤ��ޤ���\fBjavah\fR���ޥ�ɤϰ���³��JNI�����Υͥ��ƥ��֡���åɤ�ɬ�פʥͥ��ƥ��֡���åɴؿ��ץ��ȥ����פ������˻��ѤǤ��ޤ���\fBjavah\fR���ޥ�ɤϥǥե���Ȥ�JNI�����ν��Ϥ������������η�̤�\fB\&.h\fR�ե�����˳�Ǽ���ޤ���
-.SH "���ץ����"
-.PP
-\-o \fIoutputfile\fR
-.RS 4
-���ޥ�ɹԤ˥ꥹ�Ȥ��줿���٤ƤΥ��饹���Ф��ơ���̤Υإå����ޤ��ϥ��������ե������Ϣ�뤷�ƽ��ϥե�����˳�Ǽ���ޤ���\fB\-o\fR�ޤ���\fB\-d\fR�Τɤ��餫�Τ��ѤǤ��ޤ���
-.RE
-.PP
-\-d \fIdirectory\fR
-.RS 4
-\fBjavah\fR���إå������ե�����ޤ��ϥ����֡��ե��������¸���롢�ǥ��쥯�ȥ�����ꤷ�ޤ���\fB\-d\fR�ޤ���\fB\-o\fR�Τɤ��餫�Τ��ѤǤ��ޤ���
-.RE
-.PP
-\-stubs
-.RS 4
-\fBjavah\fR���ޥ�ɤ���Java���֥������ȡ��ե����뤫��C������������ޤ���
-.RE
-.PP
-\-verbose
-.RS 4
-�ܺٽ��Ϥ���ꤷ�������ե�����ξ��֤˴ؤ����å�������\fBjavah\fR���ޥ�ɤ�\fBɸ�����\fR�˽��Ϥ��ޤ���
-.RE
-.PP
-\-help
-.RS 4
-\fBjavah\fR�λ�����ˡ�ˤĤ��ƤΥإ�ס���å���������Ϥ��ޤ���
-.RE
-.PP
-\-version
-.RS 4
-\fBjavah\fR���ޥ�ɤΥ����������Ϥ��ޤ���
-.RE
-.PP
-\-jni
-.RS 4
-JNI�����Υͥ��ƥ��֡���åɵ�ǽ�ץ��ȥ����פ�ޤ���ϥե������\fBjavah\fR���ޥ�ɤ��������ޤ��������ɸ����ϤǤ��뤿�ᡢ\fB\-jni\fR�λ��Ѥϥ��ץ����Ǥ���
-.RE
-.PP
-\-classpath \fIpath\fR
-.RS 4
-���饹��õ�������\fBjavah\fR���ޥ�ɤ����Ѥ���ѥ�����ꤷ�ޤ����ǥե���Ȥޤ���\fBCLASSPATH\fR�Ķ��ѿ���������С��饤�ɤ��ޤ����ǥ��쥯�ȥ��Oracle Solaris�ξ��ϥ�����ǡ�Windows�ξ��ϥ��ߥ�����Ƕ��ڤ��ޤ����ѥ��ΰ���Ū�ʷ����ϼ��Τ褦�ˤʤ�ޤ���
-.sp
-\fBOracle Solaris\fR��:
-.sp
-\&.:\fIyour\-path\fR
-.sp
-��:
-\fB\&.:/home/avh/classes:/usr/local/java/classes\fR
-.sp
-\fBWindows\fR��:
-.sp
-\&.;\fIyour\-path\fR
-.sp
-��:
-\fB\&.;C:\eusers\edac\eclasses;C:\etools\ejava\eclasses\fR
-.sp
-�ص��塢*�Υ١���̾��ޤ९�饹���ѥ����Ǥϡ�\fB\&.jar\fR�ޤ���\fB\&.JAR\fR���ĥ�Ҥ˻��ĥǥ��쥯�ȥ���Τ��٤ƤΥե�����Υꥹ�Ȥ���ꤹ��Τ�Ʊ���Ȥߤʤ���ޤ���
-.sp
-���Ȥ��С��ǥ��쥯�ȥ�\fBmydir\fR��\fBa\&.jar\fR��\fBb\&.JAR\fR���ޤޤ�Ƥ����硢���饹���ѥ�����\fBmydir/*\fR��\fBA\fR\fB\&.jar:b\&.JAR\fR��Ÿ������ޤ�����JAR�ե�����ν��֤�̤����Ȥʤ�ޤ������Υꥹ�Ȥˤϡ������ե������ޤᡢ���ꤵ�줿�ǥ��쥯�ȥ���Τ��٤Ƥ�JAR�ե����뤬�ޤޤ�ޤ���*����ʤ륯�饹���ѥ�������ȥ�ϡ����ߤΥǥ��쥯�ȥ���Τ��٤Ƥ�JAR�ե�����Υꥹ�Ȥ�Ÿ������ޤ���\fBCLASSPATH\fR�Ķ��ѿ��⡢������ˤ�Ʊ�ͤ�Ÿ������ޤ������饹���ѥ��Υ磻��ɥ����ɤ�Ÿ���ϡ�Java Virtual Machine (JVM)�γ������˹Ԥ��ޤ���Java�ץ������ϡ��Ķ����䤤�礻����������Ÿ������Ƥ��ʤ��磻��ɥ����ɤȤ��ޤ����Ȥ��С�\fBSystem\&.getenv("CLASSPATH")\fR���뤷���䤤�礻����Ǥ���
-.RE
-.PP
-\-bootclasspath \fIpath\fR
-.RS 4
-�֡��ȥ��ȥ�åס����饹������ɤ���ѥ�����ꤷ�ޤ����֡��ȥ��ȥ�åס����饹�ϡ��ǥե���ȤǤ�\fBjre\elib\ert\&.jar\fR�����¾�Τ����Ĥ���JAR�ե�����ˤ��롢����Java�ץ�åȥե������������륯�饹�Ǥ���
-.RE
-.PP
-\-old
-.RS 4
-�Ť�JDK 1\&.0�����Υإå������ե��������������褦�˻��ꤷ�ޤ���
-.RE
-.PP
-\-force
-.RS 4
-���ϥե����뤬��˽��ޤ��褦�˻��ꤷ�ޤ���
-.RE
-.PP
-\-J\fIoption\fR
-.RS 4
-Java Virtual Machine��\fBoption\fR���Ϥ��ޤ���\fBoption\fR�ˤϡ�Java���ץꥱ�������ư�ġ���Υ�ե�����ڡ����˵��ܤ���Ƥ��륪�ץ�����1�Ļ��ꤷ�ޤ������Ȥ��С�\fB\-J\-Xms48m\fR�Ȼ��ꤹ��ȡ��������ȥ��åס������48MB�����ꤵ��ޤ���java(1)�Ȥ��Ƥ���������
-.RE
-.SH "��Ϣ����"
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-java(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-jdb(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javap(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
-javadoc(1)
-.RE
-.br
-'pl 8.5i
-'bp
--- a/src/solaris/doc/sun/man/man1/ja/javap.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/ja/javap.1 Mon Mar 26 16:09:22 2018 -0700
@@ -338,17 +338,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jdb(1)
.RE
.sp
--- a/src/solaris/doc/sun/man/man1/ja/jdb.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/ja/jdb.1 Mon Mar 26 16:09:22 2018 -0700
@@ -371,17 +371,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
javap(1)
.RE
.br
--- a/src/solaris/doc/sun/man/man1/java.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/java.1 Mon Mar 26 16:09:22 2018 -0700
@@ -3767,17 +3767,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jar(1)
.RE
.sp
--- a/src/solaris/doc/sun/man/man1/javac.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/javac.1 Mon Mar 26 16:09:22 2018 -0700
@@ -1353,9 +1353,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javadoc(1)
.TP 0.2i
\(bu
--- a/src/solaris/doc/sun/man/man1/javadoc.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/javadoc.1 Mon Mar 26 16:09:22 2018 -0700
@@ -2978,9 +2978,6 @@
jdb(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.SH RELATED\ DOCUMENTS
.TP 0.2i
--- a/src/solaris/doc/sun/man/man1/javah.1 Mon Mar 26 20:44:32 2018 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,158 +0,0 @@
-'\" t
-.\" Copyright (c) 1994, 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.
-.\"
-.\" Arch: generic
-.\" Software: JDK 8
-.\" Date: 21 November 2013
-.\" SectDesc: Basic Tools
-.\" Title: javah.1
-.\"
-.if n .pl 99999
-.TH javah 1 "21 November 2013" "JDK 8" "Basic Tools"
-.\" -----------------------------------------------------------------
-.\" * Define some portability stuff
-.\" -----------------------------------------------------------------
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.\" http://bugs.debian.org/507673
-.\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
-.\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-.ie \n(.g .ds Aq \(aq
-.el .ds Aq '
-.\" -----------------------------------------------------------------
-.\" * set default formatting
-.\" -----------------------------------------------------------------
-.\" disable hyphenation
-.nh
-.\" disable justification (adjust text to left margin only)
-.ad l
-.\" -----------------------------------------------------------------
-.\" * MAIN CONTENT STARTS HERE *
-.\" -----------------------------------------------------------------
-
-.SH NAME
-javah \- Generates C header and source files from a Java class\&.
-.SH SYNOPSIS
-.sp
-.nf
-
-\fBjavah\fR [ \fIoptions\fR ] f\fIully\-qualified\-class\-name \&.\&.\&.\fR
-.fi
-.sp
-.TP
-\fIoptions\fR
-The command-line options\&. See Options\&.
-.TP
-\fIfully-qualified-class-name\fR
-The fully qualified location of the classes to be converted to C header and source files\&.
-.SH DESCRIPTION
-The \f3javah\fR command generates C header and source files that are needed to implement native methods\&. The generated header and source files are used by C programs to reference an object\&'s instance variables from native source code\&. The \f3\&.h\fR file contains a \f3struct\fR definition with a layout that parallels the layout of the corresponding class\&. The fields in the \f3struct\fR correspond to instance variables in the class\&.
-.PP
-The name of the header file and the structure declared within it are derived from the name of the class\&. When the class passed to the \f3javah\fR command is inside a package, the package name is added to the beginning of both the header file name and the structure name\&. Underscores (_) are used as name delimiters\&.
-.PP
-By default the \f3javah\fR command creates a header file for each class listed on the command line and puts the files in the current directory\&. Use the \f3-stubs\fR option to create source files\&. Use the \f3-o\fR option to concatenate the results for all listed classes into a single file\&.
-.PP
-The Java Native Interface (JNI) does not require header information or stub files\&. The \f3javah\fR command can still be used to generate native method function prototypes needed for JNI-style native methods\&. The \f3javah\fR command produces JNI-style output by default and places the result in the \f3\&.h\fR file\&.
-.SH OPTIONS
-.TP
--o \fIoutputfile\fR
-.br
-Concatenates the resulting header or source files for all the classes listed on the command line into an output file\&. Only one of \f3-o\fR or \f3-d\fR can be used\&.
-.TP
--d \fIdirectory\fR
-.br
-Sets the directory where the \f3javah\fR command saves the header files or the stub files\&. Only one of \f3-d\fR or \f3-o\fR can be used\&.
-.TP
--stubs
-.br
-Causes the \f3javah\fR command to generate C declarations from the Java object file\&.
-.TP
--verbose
-.br
-Indicates verbose output and causes the \f3javah\fR command to print a message to \f3stdout\fR about the status of the generated files\&.
-.TP
--help
-.br
-Prints a help message for \f3javah\fR usage\&.
-.TP
--version
-.br
-Prints \f3javah\fR command release information\&.
-.TP
--jni
-.br
-Causes the \f3javah\fR command to create an output file containing JNI-style native method function prototypes\&. This is the default output; use of \f3-jni\fR is optional\&.
-.TP
--classpath \fIpath\fR
-.br
-Specifies the path the \f3javah\fR command uses to look up classes\&. Overrides the default or the \f3CLASSPATH\fR environment variable when it is set\&. Directories are separated by colons on Oracle Solaris and semicolons on Windows\&. The general format for path is:
-
-\fIOracle Solaris\fR:
-
-\&.:\fIyour-path\fR
-
-Example: \f3\&.:/home/avh/classes:/usr/local/java/classes\fR
-
-\fIWindows\fR:
-
-\&.;\fIyour-path\fR
-
-Example: \f3\&.;C:\eusers\edac\eclasses;C:\etools\ejava\eclasses\fR
-
-As a special convenience, a class path element that contains a base name of * is considered equivalent to specifying a list of all the files in the directory with the extension \f3\&.jar\fR or \f3\&.JAR\fR\&.
-
-For example, if directory \f3mydir\fR contains \f3a\&.jar\fR and \f3b\&.JAR\fR, then the class path element \f3mydir/*\fR is expanded to a \f3A\fR\f3\&.jar:b\&.JAR\fR, except that the order of jar files is unspecified\&. All JAR files in the specified directory, including hidden ones, are included in the list\&. A class path entry that consists of * expands to a list of all the JAR files in the current directory\&. The \f3CLASSPATH\fR environment variable, where defined, is similarly expanded\&. Any class path wild card expansion occurs before the Java Virtual Machine (JVM) is started\&. A Java program will never see unexpanded wild cards except by querying the environment\&. For example, by calling \f3System\&.getenv("CLASSPATH")\fR\&.
-.TP
--bootclasspath \fIpath\fR
-.br
-Specifies the path from which to load bootstrap classes\&. By default, the bootstrap classes are the classes that implement the core Java platform located in \f3jre\elib\ert\&.jar\fR and several other JAR files\&.
-.TP
--old
-.br
-Specifies that old JDK 1\&.0-style header files should be generated\&.
-.TP
--force
-.br
-Specifies that output files should always be written\&.
-.TP
--J\fIoption\fR
-.br
-Passes \f3option\fR to the Java Virtual Machine, where \f3option\fR is one of the options described on the reference page for the Java application launcher\&. For example, \f3-J-Xms48m\fR sets the startup memory to 48 MB\&. See java(1)\&.
-.SH SEE\ ALSO
-.TP 0.2i
-\(bu
-javah(1)
-.TP 0.2i
-\(bu
-java(1)
-.TP 0.2i
-\(bu
-jdb(1)
-.TP 0.2i
-\(bu
-javap(1)
-.TP 0.2i
-\(bu
-javadoc(1)
-.RE
-.br
-'pl 8.5i
-'bp
--- a/src/solaris/doc/sun/man/man1/javap.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/javap.1 Mon Mar 26 16:09:22 2018 -0700
@@ -362,17 +362,6 @@
.sp -1
.IP \(bu 2.3
.\}
-javah(1)
-.RE
-.sp
-.RS 4
-.ie n \{\
-\h'-04'\(bu\h'+03'\c
-.\}
-.el \{\
-.sp -1
-.IP \(bu 2.3
-.\}
jdb(1)
.RE
.sp
--- a/src/solaris/doc/sun/man/man1/jdb.1 Mon Mar 26 20:44:32 2018 +0200
+++ b/src/solaris/doc/sun/man/man1/jdb.1 Mon Mar 26 16:09:22 2018 -0700
@@ -260,9 +260,6 @@
java(1)
.TP 0.2i
\(bu
-javah(1)
-.TP 0.2i
-\(bu
javap(1)
.RE
.br