no message
This commit is contained in:
@@ -5,6 +5,7 @@ import Common.Database.Objects.iDBObject;
|
||||
import Common.Database.Tables.DBTable;
|
||||
import Common.Database.Tables.DataSet;
|
||||
import Common.Passes.PassCode_;
|
||||
import Common.Utils.TextLog;
|
||||
import Common.Utils.Utils_;
|
||||
|
||||
import java.io.File;
|
||||
@@ -284,5 +285,13 @@ public abstract class Database {
|
||||
}
|
||||
}
|
||||
//---
|
||||
public boolean Check(TextLog log, Class... tablesClasses) {
|
||||
for (Class tableClass : tablesClasses) {
|
||||
DBTable table = getTable(tableClass);
|
||||
if (table.getUI() != null)
|
||||
table.getUI().Check(log);
|
||||
}
|
||||
return log.isEmpty();
|
||||
}
|
||||
public abstract PassCode_ getSynchronizePassCode(); //если бд есть на сервере.
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user