Package org.jboss.arquillian.extension.jrebel

Examples of org.jboss.arquillian.extension.jrebel.RebelArchiveFilter


    @Override
    protected void processNode(ArchivePath path, Node node)
    {
        if (ArchiveHelper.isNestedArchiveOfEAR(getArchive(), node)) {
            final Archive<?> archive = ((ArchiveAsset) node.getAsset()).getArchive();
            new ExplodedFilterableExporterDelegate(archive, getResult(), path.get(), new RebelArchiveFilter(archive)).export();
        } else if (filter.accept(node)) {
            super.processNode(path, node);
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.extension.jrebel.RebelArchiveFilter

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.