added missing clone() methods to RadioBestApSettings, SourceSelectionSteering, and SourceSelectionValue

This commit is contained in:
Dmitry Toptygin
2020-12-22 13:16:36 -05:00
parent 661aecf98d
commit db60e2f763
3 changed files with 21 additions and 0 deletions

View File

@@ -104,4 +104,8 @@ public class RadioBestApSettings extends BaseJsonModel
return false;
}
@Override
public RadioBestApSettings clone() {
return (RadioBestApSettings) super.clone();
}
}

View File

@@ -38,4 +38,15 @@ public class SourceSelectionSteering extends AbstractSource<RadioBestApSettings>
return false;
}
@Override
public SourceSelectionSteering clone() {
SourceSelectionSteering ret = (SourceSelectionSteering) super.clone();
if(this.value!=null) {
ret.value = this.value.clone();
}
return ret;
}
}

View File

@@ -47,4 +47,10 @@ public class SourceSelectionValue extends AbstractSource<Integer>{
return false;
}
@Override
public SourceSelectionValue clone() {
SourceSelectionValue ret = (SourceSelectionValue) super.clone();
return ret;
}
}