Commit 955f0de2 authored by Michel Pelletier's avatar Michel Pelletier

Removed 'meta' name

parent 8f035ca6
......@@ -11,15 +11,15 @@ class InterfaceBase:
""" Returns the documentation for the object. """
return self.__doc__
def getKey(self, key):
def getData(self, key):
""" Returns the value associated with 'key'. """
return self.__meta_data[key]
def getKeys(self):
def getDataKeys(self):
""" Returns a list of all keys. """
return self.__meta_data.keys()
def setKey(self, key, value):
def setData(self, key, value):
""" Associates 'value' with 'key'. """
self.__meta_data[key] = value
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment