package jalview.datamodel; import java.util.*; public class PDBEntry { String type; String id; Hashtable properties; public PDBEntry() { } public void setType(String type) { this.type = type; } public String getType() { return type; } public void setId(String id) { this.id = id; } public String getId() { return id; } public void setProperty(Hashtable property) { this.properties = property; } public Hashtable getProperty() { return properties; } }