JAL-4027 JAL-3858 rename CUSTOM_RENDERER to CONTACT_MATRIX annotation.graph type...
[jalview.git] / src / jalview / datamodel / SeqDistanceContactMatrix.java
index 7dd9778..0773e12 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,10 @@ public class SeqDistanceContactMatrix implements ContactMatrixI
   {
     return "Sequence Distance";
   }
+
+  @Override
+  public String getType()
+  {
+    return SEQUENCE_DISTANCE;
+  }
 }