Package org.jboss.as.jdr.util

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


        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

Related Classes of org.jboss.as.jdr.util.FSTree

Copyright © 2018 www.massapicom. 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.