промежуточный. переходный момент в рефакторинге багов. нужен для патча.
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
package _VisualDVM.ComponentsServer.BugReportSetting;
|
||||
import Common.CommonConstants;
|
||||
import Common.Database.Objects.DBObject;
|
||||
import Common.Database.Objects.iDBObject;
|
||||
import _VisualDVM.ComponentsServer.BugReport.BugReport;
|
||||
import com.sun.org.glassfish.gmbal.Description;
|
||||
public class BugReportSetting extends iDBObject {
|
||||
public String bugreport_id = "";
|
||||
public String name = "";
|
||||
public String value = "";
|
||||
@Description("DEFAULT '-1'")
|
||||
public int bugreport_id_ = CommonConstants.Nan;
|
||||
public BugReportSetting() {
|
||||
}
|
||||
public BugReportSetting(BugReport bugReport, String name_in, Object value_in) {
|
||||
@@ -23,5 +27,6 @@ public class BugReportSetting extends iDBObject {
|
||||
bugreport_id = src_.bugreport_id;
|
||||
name = src_.name;
|
||||
value = src_.value;
|
||||
bugreport_id_ = src_.bugreport_id_;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user