JAL-3518 more extraction of ChimeraX commands as overrides
[jalview.git] / src / jalview / structure / StructureCommandsBase.java
1 package jalview.structure;
2
3 import jalview.api.AlignmentViewPanel;
4 import jalview.datamodel.SequenceI;
5
6 /**
7  * A base class holding methods useful to all classes that implement commands
8  * for structure viewers
9  * 
10  * @author gmcarstairs
11  *
12  */
13 public abstract class StructureCommandsBase implements StructureCommandsI
14 {
15
16   @Override
17   public String[] setAttributesForFeatures(StructureSelectionManager ssm,
18           String[] files, SequenceI[][] sequence, AlignmentViewPanel avp)
19   {
20     // default does nothing, override where this is implemented
21     return null;
22   }
23 }