| 1 |
"use strict;" |
| 2 |
|
| 3 |
|
| 4 |
/************************************************************************************* Manipulstors ***************************************************************************************************/ |
| 5 |
function RedNaoBasicManipulator() |
| 6 |
{ |
| 7 |
|
| 8 |
} |
| 9 |
|
| 10 |
RedNaoBasicManipulator.prototype.GetValue=function(propertiesObject,propertyName,additionalInformation) |
| 11 |
{ |
| 12 |
return propertiesObject[propertyName]; |
| 13 |
} |
| 14 |
|
| 15 |
RedNaoBasicManipulator.prototype.SetValue=function(propertiesObject,propertyName,value,additionalInformation) |
| 16 |
{ |
| 17 |
propertiesObject[propertyName]=value; |
| 18 |
} |
| 19 |
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
|
| 24 |
var RedNaoBasicManipulatorInstance=new RedNaoBasicManipulator(); |
| 25 |
|