Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DbaSql |
|
| 1.0;1 |
1 | package org.kuali.db.jdbc; | |
2 | ||
3 | 0 | public class DbaSql { |
4 | String dropSql; | |
5 | String createSql; | |
6 | ||
7 | public String getDropSql() { | |
8 | 0 | return dropSql; |
9 | } | |
10 | ||
11 | public void setDropSql(String dropSql) { | |
12 | 0 | this.dropSql = dropSql; |
13 | 0 | } |
14 | ||
15 | public String getCreateSql() { | |
16 | 0 | return createSql; |
17 | } | |
18 | ||
19 | public void setCreateSql(String createSql) { | |
20 | 0 | this.createSql = createSql; |
21 | 0 | } |
22 | } |