Clover icon

Coverage Report

  1. Project Clover database Thu Dec 4 2025 14:43:25 GMT
  2. Package jalview.ws2.client.api

File AnnotationWebServiceClientI.java

 

Code metrics

0
0
0
1
16
5
0
-
-
0
-

Classes

Class Line # Actions
AnnotationWebServiceClientI 13 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package jalview.ws2.client.api;
2   
3    import jalview.ws2.actions.annotation.AnnotationProviderI;
4   
5    /**
6    * A mixin interface used by annotation services combining
7    * {@link WebServiceClientI} and {@link AnnotationProviderI} functionality into
8    * one interface. Annotation services use this interface to issue queries to the
9    * server.
10    *
11    * @author mmwarowny
12    */
 
13    public interface AnnotationWebServiceClientI extends WebServiceClientI, AnnotationProviderI
14    {
15   
16    }