JAL-3829 alternative UX: need to select 3d-beacons from dropdown if db-refs need...
[jalview.git] / src / jalview / structure / StructureCommandI.java
1 package jalview.structure;
2
3 import java.util.List;
4
5 public interface StructureCommandI
6 {
7   String getCommand();
8
9   List<String> getParameters();
10
11   void addParameter(String param);
12
13   boolean hasParameters();
14 }