Code Conventions
This commit is contained in:
parent
465c9aa9ba
commit
e81984fcc1
@ -8,6 +8,9 @@ import java.util.List;
|
||||
|
||||
public class TestXML implements IXML {
|
||||
|
||||
/**
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public List<String> getDeviceNames() {
|
||||
List<String> returnList = new ArrayList<>();
|
||||
@ -17,8 +20,12 @@ public class TestXML implements IXML {
|
||||
return returnList;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param deviceName the name of the relevant device
|
||||
* @return
|
||||
*/
|
||||
@Override
|
||||
public Dictionary<String, Object> getPort(String deviceName) {
|
||||
public Dictionary<String, Object> getPort(final String deviceName) {
|
||||
Dictionary<String, Object> returnDict = new Hashtable<>();
|
||||
returnDict.put("protocol", "DI");
|
||||
Dictionary<String, Object> pins = new Hashtable<>();
|
||||
|
Loading…
x
Reference in New Issue
Block a user