@Override public Test exportConfigToXml() { Test retVal = new Test(); retVal.setName(myName); myEventsModel.exportConfig(retVal); return retVal; }
/** Constructor */ public TestImpl(TestBatteryImpl theBattery, Test theConfig) throws ConfigurationException { myName = theConfig.getName(); myBattery = theBattery; myEventsModel.initFromXml(theConfig); }