def fset(pointer, value): """Set the keyvalue for the entity to the given value.""" getattr(baseentity_from_pointer( pointer), 'set_key_value_' + type_name)(name, value)
def fset(pointer, value): """Set the keyvalue for the entity to the given value.""" getattr(baseentity_from_pointer(pointer), 'set_key_value_' + type_name)(name, value)
def fget(pointer): """Retrieve the keyvalue for the entity.""" return getattr(baseentity_from_pointer( pointer), 'get_key_value_' + type_name)(name)
def fget(pointer): """Retrieve the keyvalue for the entity.""" return getattr(baseentity_from_pointer(pointer), 'get_key_value_' + type_name)(name)