Index: javax/swing/text/html/parser/Parser.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/parser/Parser.java,v
retrieving revision 1.1
diff -u -r1.1 Parser.java
--- javax/swing/text/html/parser/Parser.java	10 Mar 2005 12:10:38 -0000	1.1
+++ javax/swing/text/html/parser/Parser.java	12 Mar 2005 13:39:46 -0000
@@ -72,7 +72,8 @@
  * </p>
  * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  */
-public class Parser
+public class Parser 
+  implements DTDConstants
 {
   /**
    * The document template description that will be used to parse the documents.
Index: javax/swing/text/html/parser/AttributeList.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/parser/AttributeList.java,v
retrieving revision 1.1
diff -u -r1.1 AttributeList.java
--- javax/swing/text/html/parser/AttributeList.java	10 Mar 2005 12:10:38 -0000	1.1
+++ javax/swing/text/html/parser/AttributeList.java	12 Mar 2005 13:45:14 -0000
@@ -43,6 +43,7 @@
 import java.io.Serializable;
 
 import java.util.Vector;
+import java.util.Enumeration;
 
 /**
  * <p>
@@ -250,9 +251,9 @@
   /**
    * Get the allowed values of this attribute.
    */
-  public Vector getValues()
+  public Enumeration getValues()
   {
-    return values;
+    return values.elements();
   }
 
   /**
Index: javax/swing/text/html/parser/Entity.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/text/html/parser/Entity.java,v
retrieving revision 1.1
diff -u -r1.1 Entity.java
--- javax/swing/text/html/parser/Entity.java	10 Mar 2005 12:10:38 -0000	1.1
+++ javax/swing/text/html/parser/Entity.java	12 Mar 2005 13:40:22 -0000
@@ -54,7 +54,7 @@
  * @author Audrius Meskauskas, Lithuania (AudriusA@Bioinformatics.org)
  */
 public final class Entity
-  implements Serializable
+  implements DTDConstants, Serializable
 {
   /**
    * Package level mapper between type names and they string values.
