Merge branch 'features/JAL-3858_PAEsInProjects' into develop
[jalview.git] / src / jalview / datamodel / SeqDistanceContactMatrix.java
index 7dd9778..731948b 100644 (file)
@@ -8,6 +8,7 @@ package jalview.datamodel;
  */
 public class SeqDistanceContactMatrix implements ContactMatrixI
 {
+  private static final String SEQUENCE_DISTANCE = "SEQUENCE_DISTANCE";
   private int width = 0;
 
   public SeqDistanceContactMatrix(int width)
@@ -99,4 +100,22 @@ public class SeqDistanceContactMatrix implements ContactMatrixI
   {
     return "Sequence Distance";
   }
+
+  @Override
+  public String getType()
+  {
+    return SEQUENCE_DISTANCE;
+  }
+
+  @Override
+  public int getWidth()
+  {
+    return width;
+  }
+
+  @Override
+  public int getHeight()
+  {
+    return width;
+  }
 }