diff options
| author | Michael Koch <konqueror@gmx.de> | 2004-04-17 19:23:19 +0000 |
|---|---|---|
| committer | Michael Koch <konqueror@gmx.de> | 2004-04-17 19:23:19 +0000 |
| commit | 6720b6bf2f6cff181f19bb7bb34a06ca6925ef52 (patch) | |
| tree | 27a9ec78d3f98614815a7a317b1726ae4cb30a8d /java/util/jar/Attributes.java | |
| parent | 8f65590b73bb880a66a7309cff9a5bf8b7b6762d (diff) | |
| download | classpath-6720b6bf2f6cff181f19bb7bb34a06ca6925ef52.tar.gz | |
2004-04-17 Michael Koch <konqueror@gmx.de>
* 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:
Fixed HTML tags in javadocs all over.
Diffstat (limited to 'java/util/jar/Attributes.java')
| -rw-r--r-- | java/util/jar/Attributes.java | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/java/util/jar/Attributes.java b/java/util/jar/Attributes.java index ea203446e..06dc4f89f 100644 --- a/java/util/jar/Attributes.java +++ b/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"); |
