}
}
private void visit(DatabaseStructure dbStruct) {
StringBuilder s = new StringBuilder(DataStructureType.Database.toString());
DatabaseLocation loc = dbStruct.getDbLocation();
if (loc != null) {
StringBuilder appendix = new StringBuilder();
String db = loc.getDatabase();
if (db != null && db.length() > 0) {
appendix.append(db).append(" on ");
}
String server = loc.getServer();
if (server != null && server.length() > 0) {
appendix.append(server);
} else if (appendix.length() > 0) {
appendix.append("?");
}