Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Sql |
|
| 1.0;1 |
1 | package liquibase.sql; | |
2 | ||
3 | import liquibase.database.structure.DatabaseObject; | |
4 | ||
5 | import java.util.Collection; | |
6 | ||
7 | public interface Sql { | |
8 | public String toSql(); | |
9 | ||
10 | String getEndDelimiter(); | |
11 | ||
12 | Collection<? extends DatabaseObject> getAffectedDatabaseObjects(); | |
13 | ||
14 | } |