| 1 |
|
package jalview.ws2.actions.annotation; |
| 2 |
|
|
| 3 |
|
import java.io.IOException; |
| 4 |
|
import java.util.List; |
| 5 |
|
import java.util.Map; |
| 6 |
|
|
| 7 |
|
import jalview.api.FeatureColourI; |
| 8 |
|
import jalview.datamodel.AlignmentAnnotation; |
| 9 |
|
import jalview.datamodel.SequenceI; |
| 10 |
|
import jalview.datamodel.features.FeatureMatcherSetI; |
| 11 |
|
import jalview.ws2.api.WebServiceJobHandle; |
| 12 |
|
import jalview.ws2.client.api.AnnotationWebServiceClientI; |
| 13 |
|
import jalview.ws2.client.api.WebServiceClientI; |
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
@link |
| 20 |
|
|
| 21 |
|
@author |
| 22 |
|
|
| 23 |
|
@see |
| 24 |
|
|
| |
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 0 |
Complexity Density: - |
|
| 25 |
|
public interface AnnotationProviderI |
| 26 |
|
{ |
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
|
| 31 |
|
|
| 32 |
|
@param |
| 33 |
|
|
| 34 |
|
@param |
| 35 |
|
|
| 36 |
|
|
| 37 |
|
@param |
| 38 |
|
|
| 39 |
|
@param |
| 40 |
|
|
| 41 |
|
@return |
| 42 |
|
|
| 43 |
|
@throws |
| 44 |
|
|
| 45 |
|
|
| 46 |
|
public List<AlignmentAnnotation> attachAnnotations(WebServiceJobHandle job, |
| 47 |
|
List<SequenceI> sequences, Map<String, FeatureColourI> colours, |
| 48 |
|
Map<String, FeatureMatcherSetI> filters) throws IOException; |
| 49 |
|
} |