Ignore:
Timestamp:
09/26/2003 03:51:46 PM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2082ebf6
Parents:
df5b04d
Message:

chapter 12

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1204 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/jdk/j2sdk-desc.xml

    rdf5b04d r06aea651  
    22<title>Contents</title>
    33
    4 <para>The j2sdk package contains <userinput>appletviewer</userinput>,
    5 <userinput>extcheck</userinput>, <userinput>idlj</userinput>,
    6 <userinput>jar</userinput>, <userinput>jarsigner</userinput>,
    7 <userinput>java</userinput>, <userinput>javac</userinput>,
    8 <userinput>javadoc</userinput>, <userinput>javah</userinput>,
    9 <userinput>javap</userinput>, <userinput>jdb</userinput>,
    10 <userinput>keytool</userinput>, <userinput>native2ascii</userinput>,
    11 <userinput>orbd</userinput>, <userinput>policytool</userinput>,
    12 <userinput>rmic</userinput>, <userinput>rmid</userinput>,
    13 <userinput>rmiregistry</userinput>, <userinput>rmiregistry</userinput>,
    14 <userinput>serialver</userinput>, <userinput>servertool</userinput> and
    15 <userinput>tnameserv</userinput>.</para>
     4<para>The <application>J2SDK</application> package contains
     5<command>appletviewer</command>,
     6<command>extcheck</command>, <command>idlj</command>,
     7<command>jar</command>, <command>jarsigner</command>,
     8<command>java</command>, <command>javac</command>,
     9<command>javadoc</command>, <command>javah</command>,
     10<command>javap</command>, <command>jdb</command>,
     11<command>keytool</command>, <command>native2ascii</command>,
     12<command>orbd</command>, <command>policytool</command>,
     13<command>rmic</command>, <command>rmid</command>,
     14<command>rmiregistry</command>, <command>rmiregistry</command>,
     15<command>serialver</command>, <command>servertool</command> and
     16<command>tnameserv</command>.</para>
    1617
    1718</sect2>
     
    2021
    2122<sect3><title>appletviewer</title>
    22 <para>appletviewer runs Java applets outside of the context of a
     23<para><command>appletviewer</command> runs
     24<application>Java</application> applets outside of the context of a
    2325browser.</para></sect3>
    2426
    2527<sect3><title>extcheck</title>
    26 <para>extcheck checks a specified jar file for title and version
    27 conflicts with any extensions installed in the JDK software.</para></sect3>
     28<para><command>extcheck</command> checks a specified <filename>JAR</filename>
     29file for title and version conflicts with any extensions installed in the
     30<acronym>JDK</acronym> software.</para></sect3>
    2831
    2932<sect3><title>idlj</title>
    30 <para>idlj generates Java bindings from a given IDL file.</para></sect3>
     33<para><command>idlj</command> generates <application>Java</application>
     34bindings from a given <acronym>IDL</acronym> file.</para></sect3>
    3135
    3236<sect3><title>jar</title>
    33 <para>jar combines multiple files into a single JAR archive file.</para></sect3>
     37<para><command>jar</command> combines multiple files into a single
     38<acronym>JAR</acronym> archive file.</para></sect3>
    3439
    3540<sect3><title>jarsigner</title>
    36 <para>jarsigner signs JAR (Java ARchive) files and verifies the
    37 signatures and integrity of a signed JAR.</para></sect3>
     41<para><command>jarsigner</command> signs <filename>JAR</filename>
     42(Java ARchive) files and verifies the signatures and integrity of a signed
     43<filename>JAR</filename>.</para></sect3>
    3844
    3945<sect3><title>java</title>
    40 <para>java launches a Java application by starting a Java runtime
     46<para><command>java</command> launches a <application>Java</application>
     47application by starting a <application>Java</application> runtime
    4148environment, loading a specified class and invoking that class's main
    4249method.</para></sect3>
    4350
    4451<sect3><title>javac</title>
    45 <para>javac reads class and interface definitions, written in the Java
    46 programming language, and compiles them into bytecode class files.</para></sect3>
     52<para><command>javac</command> reads class and interface definitions, written
     53in the <application>Java</application> programming language, and compiles them
     54into bytecode class files.</para></sect3>
    4755
    4856<sect3><title>javadoc</title>
    49 <para>javadoc parses the declarations and documentation comments in a set
    50 of Java source files and produces a corresponding set of HTML pages
    51 describing the classes, interfaces, constructors, methods, and fields.</para></sect3>
     57<para><command>javadoc</command> parses the declarations and documentation
     58comments in a set of <application>Java</application> source files and produces
     59a corresponding set of <acronym>HTML</acronym> pages describing the classes,
     60interfaces, constructors, methods, and fields.</para></sect3>
    5261
    5362<sect3><title>javah</title>
    54 <para>javah generates C header and source files that are needed to
    55 implement native methods.</para></sect3>
     63<para><command>javah</command> generates <application>C</application> header
     64and source files that are needed to implement native methods.</para></sect3>
    5665
    5766<sect3><title>javap</title>
    58 <para>javap disassembles a Java class file.</para></sect3>
     67<para><command>javap</command> disassembles a
     68<application>Java</application> class file.</para></sect3>
    5969
    6070<sect3><title>jdb</title>
    61 <para>jdb is a simple command-line debugger for Java classes.</para></sect3>
     71<para><command>jdb</command> is a simple command-line debugger for
     72<application>Java</application> classes.</para></sect3>
    6273
    6374<sect3><title>keytool</title>
    64 <para>keytool is a key and certificate management utility.</para></sect3>
     75<para><command>keytool</command> is a key and certificate management utility.</para></sect3>
    6576
    6677<sect3><title>native2ascii</title>
    67 <para>native2ascii converts files that contain non-supported character encoding
    68 into files containing Latin-1 or Unicode-encoded characters.</para></sect3>
     78<para><command>native2ascii</command> converts files that contain non-supported
     79character encoding into files containing Latin-1 or Unicode-encoded characters.
     80</para></sect3>
    6981
    7082<sect3><title>orbd</title>
    71 <para>orbd is used to enable clients to transparently locate and invoke
    72 persistent objects on servers in the CORBA environment.</para></sect3>
     83<para><command>orbd</command> is used to enable clients to transparently locate
     84and invoke persistent objects on servers in the <acronym>CORBA</acronym>
     85environment.</para></sect3>
    7386
    7487<sect3><title>policytool</title>
    75 <para>policytool creates and manages a policy file graphically.</para></sect3>
     88<para><command>policytool</command> creates and manages a policy file
     89graphically.</para></sect3>
    7690
    7791<sect3><title>rmic</title>
    78 <para>rmic generates stub and skeleton class files for remote objects
    79 from the names of compiled Java classes that contain remote object
    80 implementations.</para></sect3>
     92<para><command>rmic</command> generates stub and skeleton class files for
     93remote objects from the names of compiled <application>Java</application>
     94classes that contain remote object implementations.</para></sect3>
    8195
    8296<sect3><title>rmid</title>
    83 <para>rmid starts the activation system daemon.</para></sect3>
     97<para><command>rmid</command> starts the activation system daemon.</para>
     98</sect3>
    8499
    85100<sect3><title>rmiregistry</title>
    86 <para>rmiregistry creates and starts a remote object registry on the
    87 specified port on the current host.</para></sect3>
     101<para><command>rmiregistry</command> creates and starts a remote object
     102registry on the specified port on the current host.</para></sect3>
    88103
    89104<sect3><title>serialver</title>
    90 <para>serialver returns the serialVersionUID for one or more classes in
    91 a form suitable for copying into an evolving class.</para></sect3>
     105<para><command>serialver</command> returns the serialVersionUID for one or
     106more classes in a form suitable for copying into an evolving class.</para>
     107</sect3>
    92108
    93109<sect3><title>servertool</title>
    94 <para>servertool provides an ease-of-use interface for application
    95 programmers to register, unregister, startup and shutdown a server.</para></sect3>
     110<para><command>servertool</command> provides an ease-of-use interface for
     111application programmers to register, unregister, startup and shutdown a server.
     112</para></sect3>
    96113
    97114<sect3><title>tnameserv</title>
    98 <para>tnameserv starts the Java IDL name server.</para></sect3>
     115<para><command>tnameserv</command> starts the <application>Java</application>
     116<acronym>IDL</acronym> name server.</para></sect3>
    99117
    100118
Note: See TracChangeset for help on using the changeset viewer.