mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8133115: docs: replace <tt> tags (obsolete in html5) for java.util.logging, java.util.prefs, java.util.zip, java.util.jar
Reviewed-by: lancea
This commit is contained in:
parent
c1ef47c427
commit
c78487e756
25 changed files with 694 additions and 694 deletions
|
@ -526,7 +526,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
}
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Manifest-Version</code>
|
||||
* {@code Name} object for {@code Manifest-Version}
|
||||
* manifest attribute. This attribute indicates the version number
|
||||
* of the manifest standard to which a JAR file's manifest conforms.
|
||||
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR_Manifest">
|
||||
|
@ -535,7 +535,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name MANIFEST_VERSION = new Name("Manifest-Version");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Signature-Version</code>
|
||||
* {@code Name} object for {@code Signature-Version}
|
||||
* manifest attribute used when signing JAR files.
|
||||
* @see <a href="../../../../technotes/guides/jar/jar.html#JAR_Manifest">
|
||||
* Manifest and Signature Specification</a>
|
||||
|
@ -543,13 +543,13 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name SIGNATURE_VERSION = new Name("Signature-Version");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Content-Type</code>
|
||||
* {@code Name} object for {@code Content-Type}
|
||||
* manifest attribute.
|
||||
*/
|
||||
public static final Name CONTENT_TYPE = new Name("Content-Type");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Class-Path</code>
|
||||
* {@code Name} object for {@code Class-Path}
|
||||
* manifest attribute.
|
||||
* @see <a href="../../../../technotes/guides/jar/jar.html#classpath">
|
||||
* JAR file specification</a>
|
||||
|
@ -557,16 +557,16 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name CLASS_PATH = new Name("Class-Path");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Main-Class</code> manifest
|
||||
* {@code Name} object for {@code Main-Class} manifest
|
||||
* attribute used for launching applications packaged in JAR files.
|
||||
* The <code>Main-Class</code> attribute is used in conjunction
|
||||
* with the <code>-jar</code> command-line option of the
|
||||
* <tt>java</tt> application launcher.
|
||||
* The {@code Main-Class} attribute is used in conjunction
|
||||
* with the {@code -jar} command-line option of the
|
||||
* {@code java} application launcher.
|
||||
*/
|
||||
public static final Name MAIN_CLASS = new Name("Main-Class");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Sealed</code> manifest attribute
|
||||
* {@code Name} object for {@code Sealed} manifest attribute
|
||||
* used for sealing.
|
||||
* @see <a href="../../../../technotes/guides/jar/jar.html#sealing">
|
||||
* Package Sealing</a>
|
||||
|
@ -574,19 +574,19 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name SEALED = new Name("Sealed");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Extension-List</code> manifest attribute
|
||||
* {@code Name} object for {@code Extension-List} manifest attribute
|
||||
* used for the extension mechanism that is no longer supported.
|
||||
*/
|
||||
public static final Name EXTENSION_LIST = new Name("Extension-List");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Extension-Name</code> manifest attribute.
|
||||
* {@code Name} object for {@code Extension-Name} manifest attribute.
|
||||
* used for the extension mechanism that is no longer supported.
|
||||
*/
|
||||
public static final Name EXTENSION_NAME = new Name("Extension-Name");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Extension-Installation</code> manifest attribute.
|
||||
* {@code Name} object for {@code Extension-Installation} manifest attribute.
|
||||
*
|
||||
* @deprecated Extension mechanism is no longer supported.
|
||||
*/
|
||||
|
@ -594,25 +594,25 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name EXTENSION_INSTALLATION = new Name("Extension-Installation");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Implementation-Title</code>
|
||||
* {@code Name} object for {@code Implementation-Title}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name IMPLEMENTATION_TITLE = new Name("Implementation-Title");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Implementation-Version</code>
|
||||
* {@code Name} object for {@code Implementation-Version}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name IMPLEMENTATION_VERSION = new Name("Implementation-Version");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Implementation-Vendor</code>
|
||||
* {@code Name} object for {@code Implementation-Vendor}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name IMPLEMENTATION_VENDOR = new Name("Implementation-Vendor");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Implementation-Vendor-Id</code>
|
||||
* {@code Name} object for {@code Implementation-Vendor-Id}
|
||||
* manifest attribute.
|
||||
*
|
||||
* @deprecated Extension mechanism is no longer supported.
|
||||
|
@ -621,7 +621,7 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name IMPLEMENTATION_VENDOR_ID = new Name("Implementation-Vendor-Id");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Implementation-URL</code>
|
||||
* {@code Name} object for {@code Implementation-URL}
|
||||
* manifest attribute.
|
||||
*
|
||||
* @deprecated Extension mechanism is no longer supported.
|
||||
|
@ -630,19 +630,19 @@ public class Attributes implements Map<Object,Object>, Cloneable {
|
|||
public static final Name IMPLEMENTATION_URL = new Name("Implementation-URL");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Specification-Title</code>
|
||||
* {@code Name} object for {@code Specification-Title}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name SPECIFICATION_TITLE = new Name("Specification-Title");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Specification-Version</code>
|
||||
* {@code Name} object for {@code Specification-Version}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name SPECIFICATION_VERSION = new Name("Specification-Version");
|
||||
|
||||
/**
|
||||
* <code>Name</code> object for <code>Specification-Vendor</code>
|
||||
* {@code Name} object for {@code Specification-Vendor}
|
||||
* manifest attribute used for package versioning.
|
||||
*/
|
||||
public static final Name SPECIFICATION_VENDOR = new Name("Specification-Vendor");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue