Clover icon

Coverage Report

  1. Project Clover database Thu Aug 13 2020 12:04:21 BST
  2. Package jalview.structure

File StructureCommandI.java

 

Code metrics

0
0
0
1
14
9
0
-
-
0
-

Classes

Class Line # Actions
StructureCommandI 5 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package jalview.structure;
2   
3    import java.util.List;
4   
 
5    public interface StructureCommandI
6    {
7    String getCommand();
8   
9    List<String> getParameters();
10   
11    void addParameter(String param);
12   
13    boolean hasParameters();
14    }