522 @param value the value of the data |
522 @param value the value of the data |
523 """ |
523 """ |
524 if key in self.interestingDataKeys: |
524 if key in self.interestingDataKeys: |
525 self.otherData[key] = value |
525 self.otherData[key] = value |
526 |
526 |
527 def vcsSetDataFromDict(self, dict): |
527 def vcsSetDataFromDict(self, dictionary): |
528 """ |
528 """ |
529 Public method used to set entries in the otherData dictionary. |
529 Public method used to set entries in the otherData dictionary. |
530 |
530 |
531 @param dict dictionary to pick entries from |
531 @param dictionary dictionary to pick entries from |
532 """ |
532 """ |
533 for key in self.interestingDataKeys: |
533 for key in self.interestingDataKeys: |
534 if key in dict: |
534 if key in dictionary: |
535 self.otherData[key] = dict[key] |
535 self.otherData[key] = dictionary[key] |
536 |
536 |
537 ##################################################################### |
537 ##################################################################### |
538 ## below are some utility methods |
538 ## below are some utility methods |
539 ##################################################################### |
539 ##################################################################### |
540 |
540 |