Examples of FSTree


Examples of org.jboss.as.jdr.util.FSTree

public class TreeCommand extends JdrCommand {

    @Override
    public void execute() throws Exception {
        FSTree tree = new FSTree(this.env.getJbossHome());
        this.env.getZip().add(tree.toString(), "tree.txt");
    }
View Full Code Here

Examples of org.jboss.as.jdr.util.FSTree

        FileUtils.deleteDirectory(baseDirectory);
    }

    @Test
    public void testTree() throws Exception {
        FSTree tree = new FSTree(baseDirectory.getPath());
        assertEquals(tree.toString(), "FSTreeTest\n");
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.