Package org.openquark.gems.client.ArgumentTreeNode

Examples of org.openquark.gems.client.ArgumentTreeNode.CollectorNode.removeAllChildren()


    private void populate(CollectorGem collectorGem, Map<CollectorGem, Set<CollectorGem>> targetToCollectorMap) {
       
        // Create a node for the collector, and add it to the parent.
        CollectorNode collectorNode = getCollectorNode(collectorGem);
        ((ArgumentTreeNode)getRoot()).add(collectorNode);
        collectorNode.removeAllChildren();
       
        // Add node for the arguments.
        List<Gem.PartInput> reflectedInputs = collectorGem.getReflectedInputs();
        for (final Gem.PartInput reflectedInput : reflectedInputs) {
            ArgumentNode reflectedInputNode = getArgumentNode(reflectedInput);
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.