JAL-3103 Put jalview.jar first in getdown for .properties files. Remove now-not-neede...
[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 }