file format enum wip changes
[jalview.git] / src / jalview / datamodel / PDBEntry.java
index 589bc7b..243e00c 100755 (executable)
@@ -34,10 +34,10 @@ public class PDBEntry
 
   public enum Type
   {
-    PDB, FILE
+    PDB, MMCIF, FILE
   }
 
-  Hashtable properties;
+  Hashtable<String, String> properties;
 
   /*
    * (non-Javadoc)
@@ -153,7 +153,7 @@ public class PDBEntry
     this.properties = property;
   }
 
-  public Hashtable getProperty()
+  public Hashtable<String, String> getProperty()
   {
     return properties;
   }
@@ -168,6 +168,7 @@ public class PDBEntry
     this.chainCode = chainCode;
   }
 
+  @Override
   public String toString()
   {
     return id;