/hg/release/icedtea-web-1.0: 2 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Tue Dec 14 03:26:12 PST 2010


changeset 1211f7e5eaa0 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=1211f7e5eaa0
author: Andrew John Hughes <ahughes at redhat.com>
date: Wed Dec 08 16:37:41 2010 +0000

	Fix Javadoc warnings.

	2010-12-07 Andrew John Hughes <ahughes at redhat.com>

	 * netx/net/sourceforge/jnlp/InformationDesc.java,
	(InformationDesc(JNLPFile,Locale)): Correct @param tag.
		* netx/net/sourceforge/jnlp/JARDesc.java:
	(JARDesc(URL,Version,String,boolean,boolean,boolean,boolean)):
	Correct typo and add missing @param tag for cacheable.
		* netx/net/sourceforge/jnlp/JREDesc.java:
	(JREDesc(Version,URL,String,String,String,List)): Correct typo
	in @param tag.
		* netx/net/sourceforge/jnlp/Launcher.java:
	(Launcher(boolean)): Correct broken @param tag.
		* netx/net/sourceforge/jnlp/cache/ResourceTracker.java:
	(addDownloadListener(DownloadListener)): Remove broken @param tags.
	Add correct one. (removeDownloadListener(DownloadListener)):
	Add missing @param tag.
		* netx/net/sourceforge/jnlp/security/KeyStores.java:
	(getKeyStoreLocation(Level,Type)): Add content to @param and @return
	tags. (toTranslatableString(Level,Type)): Likewise.
		* netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java
	: (askUser(String,int,String,String)): Correct typo in
	@param tag.
		* netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java:
	(createSetValueListener(SecurityWarningDialog,int)): Add content to
	@return tag.
		* netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java:
	(showCertInfoDialog(CertVerifier,SecurityWarningDialog)): Remove
	broken @param tag and add correct ones.
	(showSingleCertInfoDialog(X509Certificate,JDialog)): Add content to
	@param tags.
		* netx/net/sourceforge/jnlp/tools/CharacterEncoder.java:
	Remove broken @see tags from import from OpenJDK.
		* netx/net/sourceforge/jnlp/util/FileUtils.java: Fix bad
	whitespace. (sanitizeFileName(String)): Fix @param tag.
		* netx/net/sourceforge/nanoxml/XMLElement.java: Fix example in
	class documentation.
		* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java,
	(waitForAppletInit(NetxPanel)): Fix @param tag.


changeset e09dd7691f27 in /hg/release/icedtea-web-1.0
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.0?cmd=changeset;node=e09dd7691f27
author: Andrew John Hughes <ahughes at redhat.com>
date: Tue Dec 14 11:25:56 2010 +0000

	Fix remaining javadoc warning from KeyTool.java (removed post-1.0).

	2010-12-07 Andrew John Hughes <ahughes at redhat.com>

	 * netx/net/sourceforge/jnlp/tools/KeyTool.java:
	(checkCacertsForCertificate(Certificate c)): Fix typo
	(@returns->@return).


diffstat:

15 files changed, 72 insertions(+), 28 deletions(-)
ChangeLog                                                            |   43 ++++++++++
netx/net/sourceforge/jnlp/InformationDesc.java                       |    2 
netx/net/sourceforge/jnlp/JARDesc.java                               |    3 
netx/net/sourceforge/jnlp/JREDesc.java                               |    2 
netx/net/sourceforge/jnlp/Launcher.java                              |    2 
netx/net/sourceforge/jnlp/cache/ResourceTracker.java                 |    5 -
netx/net/sourceforge/jnlp/security/KeyStores.java                    |   13 +--
netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java |    2 
netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java          |    2 
netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java        |    7 -
netx/net/sourceforge/jnlp/tools/CharacterEncoder.java                |    5 -
netx/net/sourceforge/jnlp/tools/KeyTool.java                         |    2 
netx/net/sourceforge/jnlp/util/FileUtils.java                        |    4 
netx/net/sourceforge/nanoxml/XMLElement.java                         |    6 -
plugin/icedteanp/java/sun/applet/PluginAppletViewer.java             |    2 

diffs (280 lines):

diff -r b9c4227f13b3 -r e09dd7691f27 ChangeLog
--- a/ChangeLog	Wed Dec 08 16:08:35 2010 -0500
+++ b/ChangeLog	Tue Dec 14 11:25:56 2010 +0000
@@ -1,3 +1,46 @@ 2010-12-08  Deepak Bhole <dbhole at redhat.
+2010-12-07  Andrew John Hughes  <ahughes at redhat.com>
+
+	* netx/net/sourceforge/jnlp/tools/KeyTool.java:
+	(checkCacertsForCertificate(Certificate c)):
+	Fix typo (@returns->@return).
+
+2010-12-07  Andrew John Hughes  <ahughes at redhat.com>
+
+	* netx/net/sourceforge/jnlp/InformationDesc.java,
+	(InformationDesc(JNLPFile,Locale)): Correct @param tag.
+	* netx/net/sourceforge/jnlp/JARDesc.java:
+	(JARDesc(URL,Version,String,boolean,boolean,boolean,boolean)):
+	Correct typo and add missing @param tag for cacheable.
+	* netx/net/sourceforge/jnlp/JREDesc.java:
+	(JREDesc(Version,URL,String,String,String,List)): Correct typo
+	in @param tag.
+	* netx/net/sourceforge/jnlp/Launcher.java:
+	(Launcher(boolean)): Correct broken @param tag.
+	* netx/net/sourceforge/jnlp/cache/ResourceTracker.java:
+	(addDownloadListener(DownloadListener)): Remove broken @param tags.
+	Add correct one.
+	(removeDownloadListener(DownloadListener)): Add missing @param tag.
+	* netx/net/sourceforge/jnlp/security/KeyStores.java:
+	(getKeyStoreLocation(Level,Type)): Add content to @param and @return tags.
+	(toTranslatableString(Level,Type)): Likewise.
+	* netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java:
+	(askUser(String,int,String,String)): Correct typo in @param tag.
+	* netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java:
+	(createSetValueListener(SecurityWarningDialog,int)): Add content to @return tag.
+	* netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java:
+	(showCertInfoDialog(CertVerifier,SecurityWarningDialog)): Remove broken
+	@param tag and add correct ones.
+	(showSingleCertInfoDialog(X509Certificate,JDialog)): Add content to @param tags.
+	* netx/net/sourceforge/jnlp/tools/CharacterEncoder.java:
+	Remove broken @see tags from import from OpenJDK.
+	* netx/net/sourceforge/jnlp/util/FileUtils.java:
+	Fix bad whitespace.
+	(sanitizeFileName(String)): Fix @param tag.
+	* netx/net/sourceforge/nanoxml/XMLElement.java:
+	Fix example in class documentation.
+	* plugin/icedteanp/java/sun/applet/PluginAppletViewer.java,
+	(waitForAppletInit(NetxPanel)): Fix @param tag.
+
 2010-12-08  Deepak Bhole <dbhole at redhat.com>
 
 	PR597: Entities are parsed incorrectly in PARAM tag in applet plugin
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/InformationDesc.java
--- a/netx/net/sourceforge/jnlp/InformationDesc.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/InformationDesc.java	Tue Dec 14 11:25:56 2010 +0000
@@ -60,7 +60,7 @@ public class InformationDesc {
      * Create an information element object.
      *
      * @param jnlpFile file that the information is for
-     * @param locale the the information is for
+     * @param locales the locales the information is for
      */
     public InformationDesc(JNLPFile jnlpFile, Locale locales[]) {
         this.jnlpFile = jnlpFile;
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/JARDesc.java
--- a/netx/net/sourceforge/jnlp/JARDesc.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/JARDesc.java	Tue Dec 14 11:25:56 2010 +0000
@@ -57,7 +57,8 @@ public class JARDesc {
      * @param part the part name, or null
      * @param lazy whether to load the JAR on demand
      * @param main whether the JAR contains the main class
-     * @param nativeJam whether the JAR contains native libraries
+     * @param nativeJar whether the JAR contains native libraries
+     * @param cacheable whether the JAR can be cached or not
      */
     public JARDesc(URL location, Version version, String part, boolean lazy, boolean main, boolean nativeJar, boolean cacheable) {
         this.location = location;
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/JREDesc.java
--- a/netx/net/sourceforge/jnlp/JREDesc.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/JREDesc.java	Tue Dec 14 11:25:56 2010 +0000
@@ -55,7 +55,7 @@ public class JREDesc {
      * if location is not null
      * @param location the location of a JRE product or null
      * @param initialHeapSize inital heap size
-     * @param maximumHeadSize maximum head size
+     * @param maximumHeapSize maximum head size
      * @param resources list of ResourceDesc objects
      */
     public JREDesc(Version version, URL location,
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/Launcher.java
--- a/netx/net/sourceforge/jnlp/Launcher.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/Launcher.java	Tue Dec 14 11:25:56 2010 +0000
@@ -104,7 +104,7 @@ public class Launcher {
      * Create a launcher with the runtime's default update policy
      * and launch handler.
      *
-     * @param exitOnError Exit if there is an error (usually default, but false when being used from the plugin)
+     * @param exitOnFailure Exit if there is an error (usually default, but false when being used from the plugin)
      */
     public Launcher(boolean exitOnFailure) {
         this(null, null);
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/cache/ResourceTracker.java
--- a/netx/net/sourceforge/jnlp/cache/ResourceTracker.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/cache/ResourceTracker.java	Tue Dec 14 11:25:56 2010 +0000
@@ -263,8 +263,7 @@ public class ResourceTracker {
      * Adds the listener to the list of objects interested in
      * receivind DownloadEvents.<p>
      *
-     * @param location the resource to add a callback for
-     * @param runnable the runnable to call when resource is completed
+     * @param listener the listener to add.
      */
     public void addDownloadListener(DownloadListener listener) {
         synchronized (listeners) {
@@ -275,6 +274,8 @@ public class ResourceTracker {
 
     /**
      * Removes a download listener.
+     *
+     * @param listener the listener to remove.
      */
     public void removeDownloadListener(DownloadListener listener) {
         synchronized (listeners) {
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/security/KeyStores.java
--- a/netx/net/sourceforge/jnlp/security/KeyStores.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/security/KeyStores.java	Tue Dec 14 11:25:56 2010 +0000
@@ -220,9 +220,10 @@ public final class KeyStores {
 
     /**
      * Returns the location of a KeyStore corresponding to the given level and type.
-     * @param level
-     * @param type
-     * @return
+     *
+     * @param level the specified level of the key store to be returned.
+     * @param type the specified type of the key store to be returned.
+     * @return the location of the key store.
      */
     public static final String getKeyStoreLocation(Level level, Type type) {
         String configKey = null;
@@ -280,9 +281,9 @@ public final class KeyStores {
      * concatenating a level and type, converting everything to Title Case and
      * removing the _'s. (USER,CA_CERTS) becomes UserCaCerts.
      *
-     * @param level
-     * @param type
-     * @return
+     * @param level the level of the key store.
+     * @param type the type of the key store.
+     * @return the translation key.
      */
     public static final String toTranslatableString(Level level, Type type) {
         StringBuilder response = new StringBuilder();
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java
--- a/netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/security/PasswordAuthenticationDialog.java	Tue Dec 14 11:25:56 2010 +0000
@@ -184,7 +184,7 @@ public class PasswordAuthenticationDialo
     /**
      * Present a dialog to the user asking them for authentication information
      *
-     * @param hostThe host for with authentication is needed
+     * @param host The host for with authentication is needed
      * @param port The port being accessed
      * @param prompt The prompt (realm) as presented by the server
      * @param type The type of server (proxy/web)
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java
--- a/netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/security/SecurityDialogPanel.java	Tue Dec 14 11:25:56 2010 +0000
@@ -78,7 +78,7 @@ public abstract class SecurityDialogPane
      * is invoked, it will set the value of the {@link SecurityWarningDialog} and then dispossed.
      *
      * @param buttonIndex the index of the button. By convention 0 = Yes. 1 = No, 2 = Cancel
-     * @return
+     * @return the ActionListener instance.
      */
     protected ActionListener createSetValueListener(SecurityWarningDialog dialog, int buttonIndex) {
         return new SetValueHandler(dialog, buttonIndex);
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java
--- a/netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/security/SecurityWarningDialog.java	Tue Dec 14 11:25:56 2010 +0000
@@ -175,7 +175,8 @@ public class SecurityWarningDialog exten
     /**
      * Displays CertPath information in a readable table format.
      *
-     * @param certs the certificates used in signing.
+     * @param jarSigner the JarSigner used to verify this application
+     * @param parent the parent option pane
      */
     public static void showCertInfoDialog(CertVerifier jarSigner,
                 SecurityWarningDialog parent) {
@@ -190,8 +191,8 @@ public class SecurityWarningDialog exten
     /**
      * Displays a single certificate's information.
      *
-     * @param c
-     * @param optionPane
+     * @param c the X509 certificate.
+     * @param parent the parent pane.
      */
     public static void showSingleCertInfoDialog(X509Certificate c,
                         JDialog parent) {
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/tools/CharacterEncoder.java
--- a/netx/net/sourceforge/jnlp/tools/CharacterEncoder.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/tools/CharacterEncoder.java	Tue Dec 14 11:25:56 2010 +0000
@@ -67,10 +67,7 @@ import java.nio.ByteBuffer;
  * referenced in the See Also list below.
  *
  * @author      Chuck McManis
- * @see         CharacterDecoder;
- * @see         UCEncoder
- * @see         UUEncoder
- * @see         BASE64Encoder
+ * @see         HexDumpEncoder
  */
 public abstract class CharacterEncoder {
 
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/tools/KeyTool.java
--- a/netx/net/sourceforge/jnlp/tools/KeyTool.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/tools/KeyTool.java	Tue Dec 14 11:25:56 2010 +0000
@@ -259,7 +259,7 @@ public class KeyTool {
      * Checks if a given certificate is part of the user's cacerts
      * keystore.
      * @param c the certificate to check
-     * @returns true if the certificate is in the user's cacerts and
+     * @return true if the certificate is in the user's cacerts and
      * false otherwise
      */
     public boolean checkCacertsForCertificate(Certificate c) throws Exception {
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/jnlp/util/FileUtils.java
--- a/netx/net/sourceforge/jnlp/util/FileUtils.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/jnlp/util/FileUtils.java	Tue Dec 14 11:25:56 2010 +0000
@@ -61,7 +61,7 @@ public final class FileUtils {
      * Given an input, return a sanitized form of the input suitable for use as
      * a file/directory name
      *
-     * @param input
+     * @param filename the filename to sanitize.
      * @return a sanitized version of the input
      */
     public static String sanitizeFileName(String filename) {
@@ -172,7 +172,7 @@ public final class FileUtils {
         /*
          * use a very simple method: prefix + "..." + suffix
          *
-         * where prefix is the beginning part of path (as much as we can squeeze in) 
+         * where prefix is the beginning part of path (as much as we can squeeze in)
          * and suffix is the end path of path
          */
 
diff -r b9c4227f13b3 -r e09dd7691f27 netx/net/sourceforge/nanoxml/XMLElement.java
--- a/netx/net/sourceforge/nanoxml/XMLElement.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/netx/net/sourceforge/nanoxml/XMLElement.java	Tue Dec 14 11:25:56 2010 +0000
@@ -52,14 +52,14 @@ import net.sourceforge.jnlp.runtime.JNLP
  * You can enumerate the attributes of an element using the method
  * {@link #enumerateAttributeNames() enumerateAttributeNames}.
  * The attribute values can be retrieved using the method
- * {@link #getStringAttribute(java.lang.String) getStringAttribute}.
+ * {@link #getAttribute(java.lang.String) getAttribute}.
  * The following example shows how to list the attributes of an element:
  * <UL><CODE>
  * XMLElement element = ...;<BR>
- * Enumeration enum = element.getAttributeNames();<BR>
+ * Enumeration enum = element.enumerateAttributeNames();<BR>
  * while (enum.hasMoreElements()) {<BR>
  * &nbsp;&nbsp;&nbsp;&nbsp;String key = (String) enum.nextElement();<BR>
- * &nbsp;&nbsp;&nbsp;&nbsp;String value = element.getStringAttribute(key);<BR>
+ * &nbsp;&nbsp;&nbsp;&nbsp;String value = (String) element.getAttribute(key);<BR>
  * &nbsp;&nbsp;&nbsp;&nbsp;System.out.println(key + " = " + value);<BR>
  * }
  * </CODE></UL></DD></DL>
diff -r b9c4227f13b3 -r e09dd7691f27 plugin/icedteanp/java/sun/applet/PluginAppletViewer.java
--- a/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Wed Dec 08 16:08:35 2010 -0500
+++ b/plugin/icedteanp/java/sun/applet/PluginAppletViewer.java	Tue Dec 14 11:25:56 2010 +0000
@@ -679,7 +679,7 @@ public class PluginAppletViewer extends 
     /**
      * Function to block until applet initialization is complete
      *
-     * @param identifier The instance to wait for
+     * @param panel the instance to wait for.
      */
     public static void waitForAppletInit(NetxPanel panel) {
 



More information about the distro-pkg-dev mailing list