Examples of KeepSelectedNodes


Examples of org.evolizer.daforjava.commands.filters.KeepSelectedNodes

        action.setCommand(new FilterInternalDependenciesOfNode(node, getGraphLoader(), getHierarchicEdgeGrouper()));
        filterMenu.add(action);

        action = new GraphEditPopupMenuAction("Keep selected node", fGraphPanel);
        action.setDescription("Keep selected node");
        action.setCommand(new KeepSelectedNodes(listWithNode, null, getGraphLoader(), getHierarchicEdgeGrouper()));
        filterMenu.add(action);

        // submenus filter for incoming/outgoing dependencies
        filterMenu.add(getFilterMenuForInOutDependencies(node));
        filterMenu.add(getFilterMenuForIncomingDependencies(node));
View Full Code Here

Examples of org.evolizer.daforjava.commands.filters.KeepSelectedNodes

        GraphEditPopupMenuAction action = null;
        int index = 0;
        for (final String associationName : FamixAssociationMap.getInstance().getNames()) {
            action = new GraphEditPopupMenuAction(associationName, fGraphPanel);
            action.setDescription("Keep selected nodes and '" + associationName + "' between them");
            action.setCommand(new KeepSelectedNodes(nodes, FamixAssociationMap.getInstance().getType(associationName), getGraphLoader(), getHierarchicEdgeGrouper()));
            filterMenuKeepDependenciesBetweenNodes.add(action);
            index++;
        }

        return filterMenuKeepDependenciesBetweenNodes;
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.