Removing DoubleDict DoubleList LongDict LongList from Reference

This commit is contained in:
REAS
2019-07-26 15:47:21 -07:00
parent 5d7d4cf9a0
commit 9ec706889f
215 changed files with 388 additions and 4 deletions
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.
+195
View File
@@ -0,0 +1,195 @@
<!--
Copyright 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.
-->
<html lang="en-us">
<head>
<meta http-equiv="Content-Language" content="en-us">
<link rel="stylesheet" type="text/css" href="http://ant.apache.org/manual/stylesheets/style.css">
<title>AppBundler Task</title>
</head>
<body>
<h2><a name="appbundler">AppBundler</a></h2>
<h3>Description</h3>
<p>Generates a native launcher for a Java application.</p>
<h3>Parameters</h3>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">outputdirectory</td>
<td valign="top">The output folder for the generated bundle.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">name</td>
<td valign="top">The name of the application.
Corresponds to the <code>CFBundleName</code> key in the <tt>Info.plist</tt> file.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">displayname</td>
<td valign="top">The display name of the application.
Corresponds to the <code>CFBundleDisplayName</code> key in the <tt>Info.plist</tt> file.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">identifier</td>
<td valign="top">An identifier string that specifies the application type.
Corresponds to the <code>CFBundleIdentifier</code> key in the <tt>Info.plist</tt> file.</td>
<td align="center" valign="top">Yes</td>
</tr>
<tr>
<td valign="top">icon</td>
<td valign="top">The icon file for the application.
Corresponds to the <code>CFBundleIconFile</code> key in the <tt>Info.plist</tt> file.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">shortversion</td>
<td valign="top">The release version number string for the application.
Corresponds to the <code>CFBundleShortVersionString</code> key in the <tt>Info.plist</tt>
file.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">signature</td>
<td valign="top">The four-letter code identifying the application creator.
Corresponds to the <code>CFBundleSignature</code> key in the <tt>Info.plist</tt> file.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">copyright</td>
<td valign="top">The copyright notice for the application.
Corresponds to the <code>NSHumanReadableCopyright</code> key in the <tt>Info.plist</tt>
file.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">applicationCategory</td>
<td valign="top">The application category.
Corresponds to the <code>LSApplicationCategoryType</code> key in the <tt>Info.plist</tt>
file.</td>
<td align="center" valign="top">No</td>
</tr>
<tr>
<td valign="top">mainclassname</td>
<td valign="top">The name of the bundled application's main class.</td>
<td align="center" valign="top">Yes</td>
</tr>
</table>
<h3>Parameters specified as nested elements</h3>
<h4>runtime</h4>
<p>A <a href="http://ant.apache.org/manual/Types/fileset.html">fileset</a> representing the Java
runtime environment to embed in the application.</p>
<p>This element is optional. If specified, the base directory of the fileset must point to the
root directory of a valid Java runtime environment. The contents of the runtime will be copied to
the <tt>Contents/PlugIns/</tt> folder of the generated application bundle.</p>
<p>By default, only the contents of the <tt>jre/</tt> directory will be included with the bundled
application. All executable content (i.e. <tt>bin/</tt>, <tt>jre/bin/</tt>) is excluded. Additional
content can be included or excluded using nested <code>&lt;include&gt;</code> and
<code>&lt;exclude&gt;</code> elements, respectively.</p>
<p>If this element is omitted, a Java runtime environment will not be copied into the generated
bundle, and target systems must have a shared JRE installed in
<tt>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/</tt> in order to run the application.</p>
<h4>classpath</h4>
<p>A <a href="http://ant.apache.org/manual/Types/fileset.html">fileset</a> representing the class
path of the bundled application. Corresponds to the <tt>java.class.path</tt> system property.
Entries will be copied to the <tt>Contents/Java/</tt> folder of the generated bundle.</p>
<h4>librarypath</h4>
<p>A <a href="http://ant.apache.org/manual/Types/fileset.html">fileset</a> representing the library
path of the bundled application. Corresponds to the <tt>java.library.path</tt> system property.
Entries will be copied to the <tt>Contents/MacOS/</tt> folder of the generated bundle.</p>
<h4>option</h4>
<p>Specifies a command-line option to be passed to the JVM at startup.</p>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">value</td>
<td valign="top">The option value.</td>
<td align="center" valign="top">Yes</td>
</tr>
</table>
<h4>argument</h4>
<p>Specifies a command-line argument to be passed to the bundled application at startup.</p>
<table border="1" cellpadding="2" cellspacing="0">
<tr>
<td valign="top"><b>Attribute</b></td>
<td valign="top"><b>Description</b></td>
<td align="center" valign="top"><b>Required</b></td>
</tr>
<tr>
<td valign="top">value</td>
<td valign="top">The argument value.</td>
<td align="center" valign="top">Yes</td>
</tr>
</table>
<h3>Examples</h3>
<p>Generate a launcher for the "Swing Set" demo, bundling the JRE defined by the <tt>JAVA_HOME</tt>
environment variable with the resulting executable.</p>
<pre>
&lt;-- Import environment variables --&gt;
&lt;property environment="env"/&gt;
&lt;-- Define the appbundler task --&gt;
&lt;taskdef name="bundleapp" classname="com.oracle.appbundler.AppBundlerTask"/&gt;
&lt;-- Create the app bundle --&gt;
&lt;target name="bundle-swingset" depends="package"&gt;
&lt;bundleapp outputdirectory="."
name="SwingSet2"
displayname="SwingSet 2"
identifier="com.oracle.javax.swing.SwingSet2"
shortversion="1.0"
applicationCategory="public.app-category.developer-tools"
mainclassname="SwingSet2"&gt;
&lt;runtime dir="${env.JAVA_HOME}"/&gt;
&lt;classpath file="/Library/Java/Demos/JFC/SwingSet2/SwingSet2.jar"/&gt;
&lt;option value="-Dapple.laf.useScreenMenuBar=true"/&gt;
&lt;/bundleapp&gt;
&lt;/target&gt;
</pre>
</body>
</html>
Binary file not shown.
Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 357 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 234 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 352 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 238 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 261 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 475 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 505 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 651 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 295 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 929 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 138 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 325 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 796 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 610 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 296 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 540 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 461 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 304 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 398 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 761 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 657 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 426 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 529 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 885 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 422 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 876 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 624 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 700 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 362 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 903 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 938 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 581 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 943 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 431 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 890 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 894 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 533 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 437 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 894 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 428 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 886 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 831 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 837 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 484 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 386 B

Some files were not shown because too many files have changed in this diff Show More