Clover Coverage Report - Liquibase Core 2.0.3-SNAPSHOT
Coverage timestamp: Sat Aug 6 2011 11:33:15 EDT
../../../img/srcFileCovDistChart10.png 0% of files have more coverage
6   28   4   1.5
0   21   0.67   4
4     1  
1    
 
  DropTableStatement       Line # 5 6 0% 4 0 100% 1.0
 
  (5)
 
1    package liquibase.statement.core;
2   
3    import liquibase.statement.AbstractSqlStatement;
4   
 
5    public class DropTableStatement extends AbstractSqlStatement {
6   
7    private String schemaName;
8    private String tableName;
9    private boolean cascadeConstraints;
10   
 
11  48 toggle public DropTableStatement(String schemaName, String tableName, boolean cascadeConstraints) {
12  48 this.schemaName = schemaName;
13  48 this.tableName = tableName;
14  48 this.cascadeConstraints = cascadeConstraints;
15    }
16   
 
17  1 toggle public String getSchemaName() {
18  1 return schemaName;
19    }
20   
 
21  16 toggle public String getTableName() {
22  16 return tableName;
23    }
24   
 
25  2 toggle public boolean isCascadeConstraints() {
26  2 return cascadeConstraints;
27    }
28    }