All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.robe.common.utils.file.TreeDirectory Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.common.utils.file;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class TreeDirectory extends  TreeData {

    private List childList=new ArrayList();

    public TreeDirectory(File file) {
        super(file);
    }

    public List getChildList() {
        return childList;
    }

    public void setChildList(List childList) {
        this.childList = childList;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy