def __init__(self, config: StudyConfig, children: TREE): FolderNode.__init__(self, config) self.children = children
def __init__(self, config: StudyConfig, area: str): FolderNode.__init__(self, config) self.area = area
def __init__(self, config: StudyConfig, simulation: Simulation): FolderNode.__init__(self, config) self.simulation = simulation
def __init__(self, config: StudyConfig, set: str): FolderNode.__init__(self, config) self.set = set