Clover Coverage Report - Liquibase Core 2.0.3-SNAPSHOT
Coverage timestamp: Sat Aug 6 2011 11:33:15 EDT
../../../img/srcFileCovDistChart8.png 14% of files have more coverage
9   38   6   1.5
0   29   0.67   6
6     1  
1    
 
  DropIndexStatement       Line # 5 9 0% 6 4 73.3% 0.73333335
 
  (4)
 
1    package liquibase.statement.core;
2   
3    import liquibase.statement.AbstractSqlStatement;
4   
 
5    public class DropIndexStatement extends AbstractSqlStatement {
6   
7    private String indexName;
8    private String tableSchemaName;
9    private String tableName;
10    private String associatedWith;
11   
 
12  47 toggle public DropIndexStatement(String indexName, String tableSchemaName, String tableName, String associatedWith) {
13  47 this.tableSchemaName = tableSchemaName;
14  47 this.indexName = indexName;
15  47 this.tableName = tableName;
16  47 this.associatedWith = associatedWith;
17    }
18   
 
19  1 toggle public String getTableSchemaName() {
20  1 return tableSchemaName;
21    }
22   
 
23  16 toggle public String getIndexName() {
24  16 return indexName;
25    }
26   
 
27  3 toggle public String getTableName() {
28  3 return tableName;
29    }
30   
 
31  0 toggle public String getAssociatedWith() {
32  0 return associatedWith;
33    }
34   
 
35  0 toggle public void setAssociatedWith(String associatedWith) {
36  0 this.associatedWith = associatedWith;
37    }
38    }