def __init__(self, path, scope=None): DNAStorageElement.__init__(self) self.path = path self.scope = scope self.model = None
def __init__(self, root, code, node=None): DNAStorageElement.__init__(self) self.root = root self.code = code if node is None: self.node = code else: self.node = node
def __init__(self, root, code, path): DNAStorageElement.__init__(self) self.root = root self.code = code self.path = path
def __init__(self, scope='global'): DNAStorageElement.__init__(self) self.scope = scope