Package com.technophobia.substeps.execution.node

Examples of com.technophobia.substeps.execution.node.NodeWithChildren


            addToCallHierarchy(node);
           
            log.trace("looking at node description: " + node.getDescription() + " line: " + node.getLine());
           
            if (NodeWithChildren.class.isAssignableFrom(node.getClass())){
                final NodeWithChildren nodeWithChildren = (NodeWithChildren)node;
                log.trace("proccessing children...");
                processChildrenForCallHierarchy(nodeWithChildren.getChildren());
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.technophobia.substeps.execution.node.NodeWithChildren

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.