Further work on AAConWS
[jabaws.git] / datamodel / compbio / data / sequence / Score.java
index 8a58db3..0e49a08 100644 (file)
@@ -6,14 +6,13 @@ import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;\r
 import javax.xml.bind.annotation.XmlAccessorType;\r
 \r
-import compbio.conservation.Method;\r
 import compbio.util.annotation.Immutable;\r
 \r
 @XmlAccessorType(XmlAccessType.FIELD)\r
 @Immutable\r
 public class Score {\r
 \r
-       private Method method;\r
+       private ConservationMethod method;\r
 \r
        private List<Float> scores;\r
 \r
@@ -21,12 +20,12 @@ public class Score {
                // JaXB default constructor\r
        }\r
 \r
-       public Score(Method method, List<Float> scores) {\r
+       public Score(ConservationMethod method, List<Float> scores) {\r
                this.method = method;\r
                this.scores = scores;\r
        }\r
 \r
-       public Method getMethod() {\r
+       public ConservationMethod getMethod() {\r
                return method;\r
        }\r
 \r