diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-17 08:40:40 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-07-17 08:40:40 +0000 |
commit | 97657bb8119f622fe7d54d949061923d90cdfdf5 (patch) | |
tree | ada05b49aa652384e401ecad6b0ec910df142222 /libjava | |
parent | bec0aae21b38823f08fb42f1f9d1e1e1710bbc8d (diff) | |
download | gcc-97657bb8119f622fe7d54d949061923d90cdfdf5.tar.gz |
2004-07-17 Michael Koch <konqueror@gmx.de>
* java/security/Security.java: Fixed javadocs all over.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@84855 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava')
-rw-r--r-- | libjava/ChangeLog | 4 | ||||
-rw-r--r-- | libjava/java/security/Security.java | 20 |
2 files changed, 14 insertions, 10 deletions
diff --git a/libjava/ChangeLog b/libjava/ChangeLog index c634be84d3e..02184ccd59a 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,5 +1,9 @@ 2004-07-17 Michael Koch <konqueror@gmx.de> + * java/security/Security.java: Fixed javadocs all over. + +2004-07-17 Michael Koch <konqueror@gmx.de> + * gnu/java/awt/EmbeddedWindow.java (static): Removed. (addNotify): Set peer via reflection. diff --git a/libjava/java/security/Security.java b/libjava/java/security/Security.java index 6c8d2b4c04c..e89103fd5b8 100644 --- a/libjava/java/security/Security.java +++ b/libjava/java/security/Security.java @@ -57,7 +57,7 @@ import java.util.Vector; * This class centralizes all security properties and common security methods. * One of its primary uses is to manage providers. * - * @author Mark Benvenuto <ivymccough@worldnet.att.net> + * @author Mark Benvenuto (ivymccough@worldnet.att.net) */ public final class Security { @@ -411,7 +411,7 @@ public final class Security * MessageDigest, Cipher, Mac, KeyStore). Returns an empty Set if there is no * provider that supports the specified service. For a complete list of Java * cryptographic services, please see the Java Cryptography Architecture API - * Specification & Reference. Note: the returned set is immutable. + * Specification & Reference. Note: the returned set is immutable. * * @param serviceName the name of the Java cryptographic service (e.g., * Signature, MessageDigest, Cipher, Mac, KeyStore). Note: this parameter is @@ -466,7 +466,7 @@ public final class Security * formats:</p> * * <ul> - * <li><p><crypto_service>.<algorithm_or_type></p> + * <li><p><crypto_service>.<algorithm_or_type></p> * <p>The cryptographic service name must not contain any dots.</p> * <p>A provider satisfies the specified selection criterion iff the * provider implements the specified algorithm or type for the specified @@ -475,10 +475,10 @@ public final class Security * provider that supplied a CertificateFactory implementation for X.509 * certificates.</p></li> * - * <li><p><crypto_service>.<algorithm_or_type> <attribute_name>:<attribute_value></p> + * <li><p><crypto_service>.<algorithm_or_type> <attribute_name>:<attribute_value></p> * <p>The cryptographic service name must not contain any dots. There must - * be one or more space charaters between the the <algorithm_or_type> - * and the <attribute_name>.</p> + * be one or more space charaters between the the <algorithm_or_type> + * and the <attribute_name>.</p> * <p>A provider satisfies this selection criterion iff the provider * implements the specified algorithm or type for the specified * cryptographic service and its implementation meets the constraint @@ -530,17 +530,17 @@ public final class Security * of the following two formats:</p> * * <ul> - * <li><p><crypto_service>.<algorithm_or_type></p> + * <li><p><crypto_service>.<algorithm_or_type></p> * <p>The cryptographic service name must not contain any dots.</p> * <p>The value associated with the key must be an empty string.</p> * <p>A provider satisfies this selection criterion iff the provider * implements the specified algorithm or type for the specified * cryptographic service.</p></li> * - * <li><p><crypto_service>.<algorithm_or_type> <attribute_name></p> + * <li><p><crypto_service>.<algorithm_or_type> <attribute_name></p> * <p>The cryptographic service name must not contain any dots. There must - * be one or more space charaters between the <algorithm_or_type> and - * the <attribute_name>.</p> + * be one or more space charaters between the <algorithm_or_type> and + * the <attribute_name>.</p> * <p>The value associated with the key must be a non-empty string. A * provider satisfies this selection criterion iff the provider implements * the specified algorithm or type for the specified cryptographic service |