Package org.jitterbit.ui.util.focus

Examples of org.jitterbit.ui.util.focus.StaticFocusTraversalPolicy


        layoutComponents();
        // Disable change and undo events until the tree structures have been completely loaded.
        setSendUndoEvents(false);
        setSendInputChangeEvents(false);
        UiUtils.setOpaqueRecursivelySkipDefaults(getUi(), false);
        getUi().setFocusTraversalPolicy(new StaticFocusTraversalPolicy(new Component[] {
                        getNameField().getInputComponent(),
                        treeMapper.m_sourceTreeComponent,
                        treeMapper.m_targetTreeComponent
        }));
        getUi().setFocusCycleRoot(true);
View Full Code Here


        row.setOpaque(false);
        row.addToParent(parent, layout);
    }
   
    public FocusTraversalPolicy getFocusTraversalPolicy() {
        return new StaticFocusTraversalPolicy(buttonMap.values());
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.util.focus.StaticFocusTraversalPolicy

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.