JAL-3878 Add getName() to Operation interface.
[jalview.git] / src / jalview / ws2 / operations / Operation.java
1 package jalview.ws2.operations;
2
3 import jalview.ws2.MenuEntryProviderI;
4
5 public interface Operation
6 {
7   public String getName();
8
9   public String getTypeName();
10
11   public int getMinSequences();
12
13   public int getMaxSequences();
14
15   public boolean canSubmitGaps();
16
17   public boolean isProteinOperation();
18
19   public boolean isNucleotideOperation();
20
21   public MenuEntryProviderI getMenuBuilder();
22 }