jdk/src/java.base/share/classes/java/util/jar/Attributes.java
changeset 36129 332b49163fc9
parent 32037 ab4526f4ac10
child 36411 f0cd8358b5ea
equal deleted inserted replaced
36128:e17994ab030a 36129:332b49163fc9
     1 /*
     1 /*
     2  * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   644         /**
   644         /**
   645          * {@code Name} object for {@code Specification-Vendor}
   645          * {@code Name} object for {@code Specification-Vendor}
   646          * manifest attribute used for package versioning.
   646          * manifest attribute used for package versioning.
   647          */
   647          */
   648         public static final Name SPECIFICATION_VENDOR = new Name("Specification-Vendor");
   648         public static final Name SPECIFICATION_VENDOR = new Name("Specification-Vendor");
       
   649 
       
   650         /**
       
   651          * {@code Name} object for {@code Multi-Release}
       
   652          * manifest attribute that indicates this is a multi-release JAR file.
       
   653          *
       
   654          * @since   9
       
   655          */
       
   656         public static final Name MULTI_RELEASE = new Name("Multi-Release");
   649     }
   657     }
   650 }
   658 }