JAL-4366 JAL-728 simple hack to use 3di matrix when gecos-3di is enabled
[jalview.git] / src / jalview / structure / StructureCommandsI.java
index b1e1486..fc8b828 100644 (file)
@@ -21,6 +21,7 @@
 package jalview.structure;
 
 import java.awt.Color;
+import java.util.Collections;
 import java.util.List;
 import java.util.Map;
 
@@ -193,16 +194,16 @@ public interface StructureCommandsI
    * @return
    */
   StructureCommandI openSession(String filepath);
-  
+
   /**
-   * Returns command to restore a previously saved version of an existing structure viewer session file. 
-   * Default implementation calls 'openSession' 
+   * Returns command to restore a previously saved version of an existing
+   * structure viewer session file. Default implementation calls 'openSession'
+   * 
    * @param filePath
    * @return
    */
   StructureCommandI restoreSession(String filePath);
 
-
   /**
    * Returns a command to ask the viewer to close down
    * 
@@ -254,4 +255,9 @@ public interface StructureCommandsI
   StructureCommandI getResidueAttributes(String attName);
 
   List<StructureCommandI> centerViewOn(List<AtomSpecModel> residues);
+
+  default List<StructureCommandI> showHetatms(List<String> toShow)
+  {
+    return Collections.EMPTY_LIST;
+  }
 }