[kaffe] CVS kaffe (robilad): Resynced with GNU classpath: unused attributes removed
Kaffe CVS
cvs-commits at kaffe.org
Sat Jan 29 07:49:23 PST 2005
PatchSet 5940
Date: 2005/01/29 15:34:03
Author: robilad
Branch: HEAD
Tag: (none)
Log:
Resynced with GNU classpath: unused attributes removed
2005-01-29 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
2005-01-28 Michael Koch <konqueror at gmx.de>
* java/util/jar/Attributes.java
(CREATED_BY, JAVA_BEAN, MAGIC): Removed.
Members:
ChangeLog:1.3479->1.3480
libraries/javalib/java/util/jar/Attributes.java:1.8->1.9
Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3479 kaffe/ChangeLog:1.3480
--- kaffe/ChangeLog:1.3479 Sat Jan 29 15:31:25 2005
+++ kaffe/ChangeLog Sat Jan 29 15:34:03 2005
@@ -1,4 +1,13 @@
-2005-01-27 Dalibor Topic <robilad at kaffe.org>
+2005-01-29 Dalibor Topic <robilad at kaffe.org>
+
+ Resynced with GNU Classpath.
+
+ 2005-01-28 Michael Koch <konqueror at gmx.de>
+
+ * java/util/jar/Attributes.java
+ (CREATED_BY, JAVA_BEAN, MAGIC): Removed.
+
+2005-01-29 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
@@ -16,7 +25,7 @@
(random): Removed.
(growTree): Likewise.
-2005-01-27 Dalibor Topic <robilad at kaffe.org>
+2005-01-29 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
@@ -25,7 +34,7 @@
* java/util/GregorianCalendar.java (getLeniarDay):
Made private.
-2005-01-27 Dalibor Topic <robilad at kaffe.org>
+2005-01-29 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
@@ -34,7 +43,7 @@
* java/awt/dnd/DropTarget.java (addDropTargetListener):
Clarified comments.
-2005-01-27 Dalibor Topic <robilad at kaffe.org>
+2005-01-29 Dalibor Topic <robilad at kaffe.org>
Resynced with GNU Classpath.
Index: kaffe/libraries/javalib/java/util/jar/Attributes.java
diff -u kaffe/libraries/javalib/java/util/jar/Attributes.java:1.8 kaffe/libraries/javalib/java/util/jar/Attributes.java:1.9
--- kaffe/libraries/javalib/java/util/jar/Attributes.java:1.8 Thu Apr 22 15:38:44 2004
+++ kaffe/libraries/javalib/java/util/jar/Attributes.java Sat Jan 29 15:34:09 2005
@@ -103,9 +103,6 @@
*/
public static class Name
{
-
- // Fields
-
// General Main Attributes
/**
@@ -113,17 +110,14 @@
* the version of this Manifest file.
*/
public static final Name MANIFEST_VERSION = new Name("Manifest-Version");
- /**
- * General main attribute -
- * tool and version that created this Manifest file.
- */
- public static final Name CREATED_BY = new Name("Created-By");
+
/**
* General main attribute -
* the version of the jar file signature.
*/
public static final Name SIGNATURE_VERSION
= new Name("Signature-Version");
+
/**
* General main attribute -
* (relative) URLs of the libraries/classpaths that the Classes in
@@ -164,6 +158,7 @@
* the name if the extension library contained in the jar.
*/
public static final Name EXTENSION_NAME = new Name("Extension-Name");
+
/**
* Extension identification attribute -
* synonym for <code>EXTENSTION_NAME</code>.
@@ -171,48 +166,56 @@
public static final Name EXTENSION_INSTALLATION = EXTENSION_NAME;
// Package versioning and sealing attributes
+
/**
* Package versioning -
* name of extension library contained in this jar.
*/
public static final Name IMPLEMENTATION_TITLE
= new Name("Implementation-Title");
+
/**
* Package versioning -
* version of the extension library contained in this jar.
*/
public static final Name IMPLEMENTATION_VERSION
= new Name("Implementation-Version");
+
/**
* Package versioning -
* name of extension library creator contained in this jar.
*/
public static final Name IMPLEMENTATION_VENDOR
= new Name("Implementation-Vendor");
+
/**
* Package versioning -
* unique id of extension library creator.
*/
public static final Name IMPLEMENTATION_VENDOR_ID
= new Name("Implementation-Vendor-Id");
+
/**
* Package versioning -
* location where this implementation can be downloaded.
*/
public static final Name IMPLEMENTATION_URL
= new Name("Implementation-URL");
+
/**
* Package versioning -
* title of the specification contained in this jar.
*/
public static final Name SPECIFICATION_TITLE
= new Name("Specification-Title");
+
/**
* Package versioning -
* version of the specification contained in this jar.
*/
public static final Name SPECIFICATION_VERSION
= new Name("Specification-Version");
+
/**
* Package versioning -
* organisation that maintains the specification contains in this
@@ -220,6 +223,7 @@
*/
public static final Name SPECIFICATION_VENDOR
= new Name("Specification-Vendor");
+
/**
* Package sealing -
* whether (all) package(s) is(/are) sealed. Value is either "true"
@@ -233,21 +237,9 @@
*/
public static final Name CONTENT_TYPE = new Name("Content-Type");
- /**
- * Bean objects attribute -
- * whether the entry is a Java Bean. Value is either "true" or "false".
- */
- public static final Name JAVA_BEAN = new Name("Java-Bean");
-
- /**
- * Signing attribute -
- * application specific signing attribute. Must be understood by
- * the manifest parser when present to validate the jar (entry).
- */
- public static final Name MAGIC = new Name("Magic");
-
/** The (lowercase) String representation of this Name */
private final String name;
+
/** The original String given to the constructor */
private final String origName;
More information about the kaffe
mailing list