no message
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
package TestingSystem.SAPFOR.ServerSapfor;
|
||||
import Common.Database.DBObject;
|
||||
import Common.Database.riDBObject;
|
||||
import Common.Utils.Utils;
|
||||
import ProjectData.LanguageName;
|
||||
@@ -25,6 +26,20 @@ public class ServerSapfor extends riDBObject {
|
||||
//--
|
||||
public ServerSapfor() {
|
||||
}
|
||||
public ServerSapfor(ServerSapfor s) {
|
||||
SynchronizeFields(s);
|
||||
}
|
||||
@Override
|
||||
public void SynchronizeFields(DBObject src) {
|
||||
super.SynchronizeFields(src);
|
||||
ServerSapfor s = (ServerSapfor) src;
|
||||
languageName = s.languageName;
|
||||
home_path = s.home_path;
|
||||
call_command = s.call_command;
|
||||
version = s.version;
|
||||
buildDate = s.buildDate;
|
||||
state = s.state;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return call_command;
|
||||
|
||||
Reference in New Issue
Block a user