| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| UIFacade |
|
| 1.0;1 |
| 1 | package liquibase.util.ui; | |
| 2 | ||
| 3 | import liquibase.database.Database; | |
| 4 | import liquibase.exception.DatabaseException; | |
| 5 | ||
| 6 | public interface UIFacade { | |
| 7 | ||
| 8 | boolean promptForNonLocalDatabase(Database database) throws DatabaseException; | |
| 9 | } |