Formatting
[jalview.git] / src / jalview / datamodel / PDBEntry.java
index 20fd3f0..16f8864 100755 (executable)
@@ -1,6 +1,6 @@
 /*\r
  * Jalview - A Sequence Alignment Editor and Viewer\r
- * Copyright (C) 2006 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
+ * Copyright (C) 2007 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
  *\r
  * This program is free software; you can redistribute it and/or\r
  * modify it under the terms of the GNU General Public License\r
@@ -19,6 +19,7 @@
 package jalview.datamodel;\r
 \r
 import java.util.*;\r
+\r
 public class PDBEntry\r
 {\r
   String file;\r
@@ -27,25 +28,37 @@ public class PDBEntry
   Hashtable properties;\r
 \r
   public PDBEntry()\r
-  {  }\r
+  {}\r
 \r
   public void setFile(String file)\r
-  { this.file = file; }\r
+  {\r
+    this.file = file;\r
+  }\r
 \r
   public String getFile()\r
-  {  return file; }\r
+  {\r
+    return file;\r
+  }\r
 \r
   public void setType(String type)\r
-  { this.type = type; }\r
+  {\r
+    this.type = type;\r
+  }\r
 \r
   public String getType()\r
-  { return type; }\r
+  {\r
+    return type;\r
+  }\r
 \r
   public void setId(String id)\r
-  { this.id = id; }\r
+  {\r
+    this.id = id;\r
+  }\r
 \r
   public String getId()\r
-  { return id; }\r
+  {\r
+    return id;\r
+  }\r
 \r
   public void setProperty(Hashtable property)\r
   {\r
@@ -57,5 +70,4 @@ public class PDBEntry
     return properties;\r
   }\r
 \r
-\r
 }\r