JAL-3518 removed unneeded override in ChimeraCommands
[jalview.git] / src / jalview / structure / StructureCommandsBase.java
index e4f7ac1..11fadc0 100644 (file)
@@ -15,32 +15,21 @@ 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;
   }
 
   /**
-   * Returns the lowest model number used by the structure viewer
-   * 
-   * @return
-   */
-  @Override
-  public int getModelStartNo()
-  {
-    return 0;
-  }
-
-  /**
    * Helper method to add one contiguous range to the AtomSpec model for the given
    * value (creating the model if necessary). As used by Jalview, {@code value} is
    * <ul>
@@ -224,4 +213,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;
+  }
 }