Examples of asUiProvider()


Examples of org.jitterbit.ui.widget.button.KongaButton.asUiProvider()

     *
     */
    public UiProvider getFileFilterOptionsTrigger() {
        verifySourceOnlyFunctionality();
        KongaButton button = createEditFilterOptionsButton();
        return button.asUiProvider();
    }

    private void verifySourceOnlyFunctionality() {
        if (sourceTarget == SourceTarget.Target) {
            throw new UnsupportedOperationException("This functionality is supported only for Source locations");
View Full Code Here

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

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

    @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.