Clover icon

Coverage Report

  1. Project Clover database Wed Dec 3 2025 17:03:17 GMT
  2. Package jalview.ws2.client.api

File AlignmentWebServiceClientI.java

 

Code metrics

0
0
0
1
15
5
0
-
-
0
-

Classes

Class Line # Actions
AlignmentWebServiceClientI 12 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.alignment.AlignmentProviderI;
4   
5    /**
6    * A client interface for alignment services combining {@link WebServiceClientI}
7    * and {@link AlignmentProviderI} functionality into one interface.
8    * Alignment services use this interface to issue queries to the server.
9    *
10    * @author mmwarowny
11    */
 
12    public interface AlignmentWebServiceClientI extends WebServiceClientI, AlignmentProviderI
13    {
14   
15    }