| 164 | } |
| 165 | |
| 166 | void CtrlrValueMap::copyFrom (const CtrlrValueMap &map) |
| 167 | { |
| 168 | values = map.getMap(); |
| 169 | numericValues = map.getNumericValues(); |
| 170 | currentValue = map.getCurrentNonMappedValue(); |
| 171 | |
| 172 | additionalData.clear(); |
| 173 | |
| 174 | HashMap<int,String>::Iterator i(map.getAdditionalData()); |
| 175 | while (i.next()) |
| 176 | { |
| 177 | additionalData.set (i.getKey(), i.getValue()); |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | bool CtrlrValueMap::mappedValueExists (const int mappedValue) |
| 182 | { |
no test coverage detected