Lines Matching defs:Name

107      *      return (String)get(new Attributes.Name((String)name));
116 return (String)get(new Attributes.Name(name));
120 * Returns the value of the specified Attributes.Name, or null if the
128 * @param name the Attributes.Name object
129 * @return the String value of the specified Attribute.Name, or null if
132 public String getValue(Name name) {
144 * @exception ClassCastException if the name is not a Attributes.Name
148 return map.put((Attributes.Name)name, (String)value);
159 * return (String)put(new Attributes.Name(name), value);
168 return (String)put(new Name(name), value);
303 ((Name)e.getKey()).toString());
330 String vername = Name.MANIFEST_VERSION.toString();
333 vername = Name.SIGNATURE_VERSION.toString();
346 String name = ((Name)e.getKey()).toString();
439 * The Attributes.Name class represents an attribute name stored in
447 public static class Name {
459 public Name(String name) {
501 if (o instanceof Name) {
503 return c.compare(name, ((Name)o).name) == 0;
527 * <code>Name</code> object for <code>Manifest-Version</code>
533 public static final Name MANIFEST_VERSION = new Name("Manifest-Version");
536 * <code>Name</code> object for <code>Signature-Version</code>
541 public static final Name SIGNATURE_VERSION = new Name("Signature-Version");
544 * <code>Name</code> object for <code>Content-Type</code>
547 public static final Name CONTENT_TYPE = new Name("Content-Type");
550 * <code>Name</code> object for <code>Class-Path</code>
556 public static final Name CLASS_PATH = new Name("Class-Path");
559 * <code>Name</code> object for <code>Main-Class</code> manifest
565 public static final Name MAIN_CLASS = new Name("Main-Class");
568 * <code>Name</code> object for <code>Sealed</code> manifest attribute
573 public static final Name SEALED = new Name("Sealed");
576 * <code>Name</code> object for <code>Extension-List</code> manifest attribute
581 public static final Name EXTENSION_LIST = new Name("Extension-List");
584 * <code>Name</code> object for <code>Extension-Name</code> manifest attribute
589 public static final Name EXTENSION_NAME = new Name("Extension-Name");
592 * <code>Name</code> object for <code>Extension-Name</code> manifest attribute
597 public static final Name EXTENSION_INSTALLATION = new Name("Extension-Installation");
600 * <code>Name</code> object for <code>Implementation-Title</code>
605 public static final Name IMPLEMENTATION_TITLE = new Name("Implementation-Title");
608 * <code>Name</code> object for <code>Implementation-Version</code>
613 public static final Name IMPLEMENTATION_VERSION = new Name("Implementation-Version");
616 * <code>Name</code> object for <code>Implementation-Vendor</code>
621 public static final Name IMPLEMENTATION_VENDOR = new Name("Implementation-Vendor");
624 * <code>Name</code> object for <code>Implementation-Vendor-Id</code>
629 public static final Name IMPLEMENTATION_VENDOR_ID = new Name("Implementation-Vendor-Id");
632 * <code>Name</code> object for <code>Implementation-Vendor-URL</code>
637 public static final Name IMPLEMENTATION_URL = new Name("Implementation-URL");
640 * <code>Name</code> object for <code>Specification-Title</code>
645 public static final Name SPECIFICATION_TITLE = new Name("Specification-Title");
648 * <code>Name</code> object for <code>Specification-Version</code>
653 public static final Name SPECIFICATION_VERSION = new Name("Specification-Version");
656 * <code>Name</code> object for <code>Specification-Vendor</code>
661 public static final Name SPECIFICATION_VENDOR = new Name("Specification-Vendor");