X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws2%2Foperations%2FOperation.java;h=f02bb59296120cb6d95fa720cd1f43584abf4962;hb=12dc7e70977962f00e584b39eda098897d51f432;hp=ff559d413979af277bd1af8978ba338ebab34379;hpb=9a5c8af21bd813e0c62ffcd7e4c0c3e2c33b9947;p=jalview.git diff --git a/src/jalview/ws2/operations/Operation.java b/src/jalview/ws2/operations/Operation.java index ff559d4..f02bb59 100644 --- a/src/jalview/ws2/operations/Operation.java +++ b/src/jalview/ws2/operations/Operation.java @@ -1,14 +1,21 @@ package jalview.ws2.operations; +import jalview.ws.params.ParamDatastoreI; import jalview.ws2.MenuEntryProviderI; public interface Operation { public String getName(); + + public String getDescription(); public String getTypeName(); public String getHostName(); + + public boolean hasParameters(); + + public ParamDatastoreI getParamStore(); public int getMinSequences(); @@ -29,4 +36,5 @@ public interface Operation public boolean getFilterNonStandardSymbols(); public boolean getNeedsAlignedSequences(); + }