26 lines
810 B
Java
26 lines
810 B
Java
|
|
package _VisualDVM.ComponentsServer.BugReportRecipient;
|
||
|
|
import Common.Database.Objects.DBObject;
|
||
|
|
import Common.Database.Objects.iDBObject;
|
||
|
|
import _VisualDVM.ComponentsServer.BugReport.BugReport;
|
||
|
|
public class BugReportRecipient extends iDBObject {
|
||
|
|
public String bugreport_id = "";
|
||
|
|
public String email ="";
|
||
|
|
@Override
|
||
|
|
public void SynchronizeFields(DBObject src) {
|
||
|
|
super.SynchronizeFields(src);
|
||
|
|
BugReportRecipient src_= (BugReportRecipient) src;
|
||
|
|
bugreport_id = src_.bugreport_id;
|
||
|
|
email = src_.email;
|
||
|
|
}
|
||
|
|
public BugReportRecipient(){
|
||
|
|
|
||
|
|
}
|
||
|
|
public BugReportRecipient(BugReport bugReport, String email_in){
|
||
|
|
bugreport_id = bugReport.id;
|
||
|
|
email = email_in;
|
||
|
|
}
|
||
|
|
public BugReportRecipient(String email_in){
|
||
|
|
email = email_in;
|
||
|
|
}
|
||
|
|
}
|