JAL-3518 removed unneeded override in ChimeraCommands
[jalview.git] / src / jalview / structure / StructureCommandsBase.java
index 3c29fd4..8716691 100644 (file)
@@ -15,15 +15,16 @@ 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
    * 
    * @return
    */
-  protected static String getCommandSeparator()
+  protected String getCommandSeparator()
   {
     return CMD_SEPARATOR;
   }
@@ -223,4 +224,34 @@ public abstract class StructureCommandsBase implements StructureCommandsI
     // default does nothing, override where this is implemented
     return null;
   }
+
+  @Override
+  public List<StructureCommandI> startNotifications(String uri)
+  {
+    return null;
+  }
+
+  @Override
+  public List<StructureCommandI> stopNotifications()
+  {
+    return null;
+  }
+
+  @Override
+  public StructureCommandI getSelectedResidues()
+  {
+    return null;
+  }
+
+  @Override
+  public StructureCommandI listResidueAttributes()
+  {
+    return null;
+  }
+
+  @Override
+  public StructureCommandI getResidueAttributes(String attName)
+  {
+    return null;
+  }
 }