no message
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
package _VisualDVM.ComponentsServer.BugReport;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Database.Tables.DBTable;
|
||||
import Common.Database.Tables.FKBehaviour;
|
||||
import Common.Database.Tables.FKCurrentObjectBehaviuor;
|
||||
import Common.Database.Tables.FKDataBehaviour;
|
||||
import Common.Database.Tables.iDBTable;
|
||||
import Common.Visual.DataSetControlForm;
|
||||
import _VisualDVM.ComponentsServer.BugReport.UI.BugReportsForm;
|
||||
import _VisualDVM.ComponentsServer.BugReportRecipient.BugReportRecipient;
|
||||
@@ -13,9 +13,9 @@ import javax.swing.*;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Vector;
|
||||
import java.util.stream.Collectors;
|
||||
public class BugReportsDBTable extends DBTable<String, BugReport> {
|
||||
public class BugReportsDBTable extends iDBTable<BugReport> {
|
||||
public BugReportsDBTable() {
|
||||
super(String.class, BugReport.class);
|
||||
super(BugReport.class);
|
||||
}
|
||||
@Override
|
||||
public String getSingleDescription() {
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
package _VisualDVM.ComponentsServer.BugReportFile;
|
||||
import Common.CommonConstants;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Database.Objects.riDBObject;
|
||||
import com.sun.org.glassfish.gmbal.Description;
|
||||
public class BugReportFile extends riDBObject {
|
||||
@Description("DEFAULT -1")
|
||||
public int bugreport_id = CommonConstants.Nan;
|
||||
@Description("DEFAULT ''")
|
||||
public String name = "";
|
||||
@Override
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
BugReportFile f = (BugReportFile) src;
|
||||
bugreport_id = f.bugreport_id;
|
||||
name = f.name;
|
||||
}
|
||||
//-
|
||||
public BugReportFile(BugReportFile src) {
|
||||
SynchronizeFields(src);
|
||||
}
|
||||
public BugReportFile() {
|
||||
}
|
||||
//-
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
package _VisualDVM.ComponentsServer.BugReportFile;
|
||||
import Common.Database.Tables.iDBTable;
|
||||
public class BugReportFilesDBTable extends iDBTable<BugReportFile> {
|
||||
public BugReportFilesDBTable() {
|
||||
super(BugReportFile.class);
|
||||
}
|
||||
@Override
|
||||
public String getSingleDescription() {
|
||||
return "файл";
|
||||
}
|
||||
@Override
|
||||
public String getPluralDescription() {
|
||||
return "файлы";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user