Package org.jitterbit.ui.widget.text

Examples of org.jitterbit.ui.widget.text.KongaTextArea.asUiProvider()


    }

    private UiProvider getCommentUi(JitterPack jp) {
        KongaTextArea text = KongaTextArea.viewer(jp.getDescriptor().getComment(), 8, 40);
        text.setLabel(Strings.get("DescriptorDialog.Comment"));
        return text.asUiProvider();
    }

    private KongaDialog createDialog(JFrame owner, OneColumnPanel ui) {
        KongaDialog dlg = new KongaDialog(owner, Strings.getJitterPackString("DescriptorDialog.Title"), true);
        createContentPane(dlg, ui);
View Full Code Here


    @Override
    public void run() {
        StackedSections stack = createStack();
        KongaTextArea textArea = new KongaTextArea(20, 50);
        KongaSplitPane split = KongaSplitPane.horizontalSplit(textArea.asUiProvider(), stack);
        QuickFrame.show(split, null);
        stack.openSection(0);
    }

    private StackedSections createStack() {
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.