Make variable public for speed of rendering
authoramwaterhouse <Andrew Waterhouse>
Fri, 24 Feb 2006 11:39:09 +0000 (11:39 +0000)
committeramwaterhouse <Andrew Waterhouse>
Fri, 24 Feb 2006 11:39:09 +0000 (11:39 +0000)
src/jalview/datamodel/SequenceFeature.java

index e94244d..aadd357 100755 (executable)
@@ -26,16 +26,16 @@ package jalview.datamodel;
  */\r
 public class SequenceFeature\r
 {\r
-    int position;\r
-    int begin;\r
-    int end;\r
-    String type;\r
-    String description;\r
-    String status;\r
+    public int position;\r
+    public int begin;\r
+    public int end;\r
+    public String type;\r
+    public String description;\r
+    public String status;\r
 \r
     // Feature group can be set from a features file\r
     // as a group of features between STARTGROUP and ENDGROUP markers\r
-    String featureGroup;\r
+    public String featureGroup;\r
 \r
     public SequenceFeature()\r
     {}\r