|
|
|
@ -61,6 +61,13 @@ public class Module extends TreeItem {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public boolean hasHtml() {
|
|
|
|
|
for (Table table : tables) {
|
|
|
|
|
if (table.getHtml()) return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Table> getTables() {
|
|
|
|
|
return tables;
|
|
|
|
|
}
|
|
|
|
@ -82,7 +89,7 @@ public class Module extends TreeItem {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setModulePrefix(String modulePrefix) {
|
|
|
|
|
this.modulePrefix = modulePrefix!=null?modulePrefix:"";
|
|
|
|
|
this.modulePrefix = modulePrefix != null ? modulePrefix : "";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProjectName() {
|
|
|
|
|