Package org.jitterbit.ui.graph

Examples of org.jitterbit.ui.graph.NavigationOrder


            this.direction = dir;
        }

        @Override
        protected void run(Object selected, ActionEvent evt) {
            NavigationOrder navigationOrder = graph.getNavigationOrder();
            if (navigationOrder == null) {
                return;
            }
            Object o = direction > 0 ? navigationOrder.next(selected) : navigationOrder.previous(selected);
            if (o != null && o != selected) {
                List<Object> newSelection = KongaListUtils.asList(o);
                graph.getSelectionModel().setSelection(newSelection);
                graph.getLayout().moveToTop(o);
                graph.ensureNodeIsVisible(o);
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.graph.NavigationOrder

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.