JAL-3518 pull up [get|list]ResidueAttributes to StructureCommandsI
[jalview.git] / src / jalview / structure / StructureCommandsBase.java
index 774327c..57544b7 100644 (file)
@@ -15,9 +15,10 @@ import java.util.Map.Entry;
  */
 public abstract class StructureCommandsBase implements StructureCommandsI
 {
-  private static final String CMD_SEPARATOR = ";";
   public static final String NAMESPACE_PREFIX = "jv_";
 
+  private static final String CMD_SEPARATOR = ";";
+
   /**
    * Returns something that separates concatenated commands
    * 
@@ -241,4 +242,16 @@ public abstract class StructureCommandsBase implements StructureCommandsI
   {
     return null;
   }
+
+  @Override
+  public StructureCommandI listResidueAttributes()
+  {
+    return null;
+  }
+
+  @Override
+  public StructureCommandI getResidueAttributes(String attName)
+  {
+    return null;
+  }
 }