1 |
|
package liquibase.statement.core; |
2 |
|
|
3 |
|
import liquibase.statement.AbstractSqlStatement; |
4 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
5 |
|
public class DropTableStatement extends AbstractSqlStatement { |
6 |
|
|
7 |
|
private String schemaName; |
8 |
|
private String tableName; |
9 |
|
private boolean cascadeConstraints; |
10 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
|
11 |
48
|
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 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
17 |
1
|
public String getSchemaName() {... |
18 |
1
|
return schemaName; |
19 |
|
} |
20 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
21 |
16
|
public String getTableName() {... |
22 |
16
|
return tableName; |
23 |
|
} |
24 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
25 |
2
|
public boolean isCascadeConstraints() {... |
26 |
2
|
return cascadeConstraints; |
27 |
|
} |
28 |
|
} |