diff options
| author | Michael Koch <konqueror@gmx.de> | 2004-04-20 14:45:10 +0000 |
|---|---|---|
| committer | Michael Koch <mkoch@gcc.gnu.org> | 2004-04-20 14:45:10 +0000 |
| commit | a17c9f2ea1ecec71169eff40c591ca3bf8307a32 (patch) | |
| tree | 2f1b4325d5c68c60284c5788c751fe9dfe6a3579 /libjava/java/util/jar | |
| parent | 386d3a1616016db1b84351554de4aa643fe0d92a (diff) | |
| download | gcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.zip gcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.tar.gz gcc-a17c9f2ea1ecec71169eff40c591ca3bf8307a32.tar.bz2 | |
MarshalledObject.java, [...]: Fixed javadoc, coding style and argument names all over.
2004-04-20 Michael Koch <konqueror@gmx.de>
* java/rmi/MarshalledObject.java,
java/rmi/Naming.java,
java/rmi/RemoteException.java,
java/rmi/activation/ActivationException.java,
java/rmi/server/ServerCloneException.java,
java/security/AccessController.java,
java/security/AlgorithmParameterGenerator.java,
java/security/AlgorithmParameters.java,
java/security/CodeSource.java,
java/security/Identity.java,
java/security/IdentityScope.java,
java/security/KeyPairGenerator.java,
java/security/KeyStore.java,
java/security/Security.java,
java/security/Signature.java,
java/security/SignatureSpi.java,
java/security/SignedObject.java,
java/security/spec/DSAParameterSpec.java,
java/security/spec/DSAPrivateKeySpec.java,
java/security/spec/DSAPublicKeySpec.java,
java/sql/Array.java,
java/sql/DatabaseMetaData.java,
java/sql/ResultSet.java,
java/text/ChoiceFormat.java,
java/text/CollationElementIterator.java,
java/text/CollationKey.java,
java/text/Collator.java,
java/text/DateFormat.java,
java/text/DateFormatSymbols.java,
java/text/DecimalFormatSymbols.java,
java/text/Format.java,
java/text/ParsePosition.java,
java/text/RuleBasedCollator.java,
java/text/SimpleDateFormat.java,
java/text/StringCharacterIterator.java,
java/util/Collections.java,
java/util/PropertyResourceBundle.java,
java/util/ResourceBundle.java,
java/util/StringTokenizer.java,
java/util/jar/Attributes.java,
java/util/logging/ConsoleHandler.java,
java/util/logging/LogManager.java,
java/util/logging/MemoryHandler.java,
java/util/logging/SocketHandler.java,
javax/naming/NamingException.java:
Fixed javadoc, coding style and argument names all over.
From-SVN: r80906
Diffstat (limited to 'libjava/java/util/jar')
| -rw-r--r-- | libjava/java/util/jar/Attributes.java | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/libjava/java/util/jar/Attributes.java b/libjava/java/util/jar/Attributes.java index ea20344..06dc4f8 100644 --- a/libjava/java/util/jar/Attributes.java +++ b/libjava/java/util/jar/Attributes.java @@ -85,17 +85,18 @@ public class Attributes implements Cloneable, Map * attributes, applet attributes, extension identification attributes, * package versioning and sealing attributes, file contents attributes, * bean objects attribute and signing attributes. See the - * <p> - * The characters of a Name must obey the following restrictions: + * + * <p>The characters of a Name must obey the following restrictions:</p> + * * <ul> - * <li> Must contain at least one character - * <li> The first character must be alphanumeric (a-z, A-Z, 0-9) - * <li> All other characters must be alphanumeric, a '-' or a '_' + * <li>Must contain at least one character</li> + * <li>The first character must be alphanumeric (a-z, A-Z, 0-9)</li> + * <li>All other characters must be alphanumeric, a '-' or a '_'</li> * </ul> - * <p> - * When comparing Names (with <code>equals</code>) all characters are + * + * <p>When comparing Names (with <code>equals</code>) all characters are * converted to lowercase. But you can get the original case sensitive - * string with the <code>toString()</code> method. + * string with the <code>toString()</code> method.</p> * * @since 1.2 * @author Mark Wielaard (mark@klomp.org) @@ -145,15 +146,15 @@ public class Attributes implements Cloneable, Map * Manifest manifest file with the following Names: * <ul> * <li> <extension>-Extension-Name: - * unique name of the extension + * unique name of the extension</li> * <li> <extension>-Specification-Version: - * minimum specification version + * minimum specification version</li> * <li> <extension>-Implementation-Version: - * minimum implementation version + * minimum implementation version</li> * <li> <extension>-Implementation-Vendor-Id: - * unique id of implementation vendor + * unique id of implementation vendor</li> * <li> <extension>-Implementation-URL: - * where the latest version of the extension library can be found + * where the latest version of the extension library can be found</li> * </ul> */ public static final Name EXTENSION_LIST = new Name("Extension-List"); |
