removed last traces of value info

This commit is contained in:
paul-loedige 2021-01-04 23:32:40 +01:00
parent 39bab72621
commit e5cdfb05a8
2 changed files with 0 additions and 17 deletions

View File

@ -11,13 +11,6 @@ public interface IXML {
*/
List<String> getDeviceNames();
/**
* reads the value info of a given device from the XML.
* @param deviceName the name of the relevant device
* @return the value info as a Dictionary
*/
Dictionary<String, Object> getValueInfo(String deviceName);
/**
* reads the port information of a given device from the XML.
* @param deviceName the name of the relevant device

View File

@ -17,16 +17,6 @@ public class TestXML implements IXML {
return returnList;
}
@Override
public Dictionary<String, Object> getValueInfo(String deviceName) {
Dictionary<String, Object> returnDict = new Hashtable<>();
returnDict.put("type", "boolean");
returnDict.put("unit", "");
returnDict.put("Offset", 1.0);
returnDict.put("Factor", 1.0);
return returnDict;
}
@Override
public Dictionary<String, Object> getPort(String deviceName) {
Dictionary<String, Object> returnDict = new Hashtable<>();