Package org.jitterbit.application.ui.wizard

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout


        layout();
        super.addToWindow(window);
    }

    private void layout() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout("Manual SQL");
        layout.setInsets(0, 0, 20, 0);
        layout.add(InvisiblePanel.newPanel(choice.getUi()), true, true);
        JPanel main = layout.asCenterBorderLayout();
        setMainPanel(main);
    }
View Full Code Here


        super.addToWindow(window);
        layoutPage();
    }

    private void layoutPage() {
        WizardPageLayout pageLayout = WizardStyleSheet.emptyPageLayout(mainCaption, subCaption);
        pageLayout.setInsets(0, 0, 0, 0);
        pageLayout.add(ui, true, true);
        JPanel main = pageLayout.asCenterBorderLayout();
        setMainPanel(main);
    }
View Full Code Here

        super.addToWindow(window);
        layoutPage();
    }

    private void layoutPage() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout("",
                        "Enter the SQL statement that will be used as source in this Transformation");
        layout.setInsets(0, 0, 0, 0);
        layout.add(ui, true, true);
        JPanel main = layout.asCenterBorderLayout();
        setMainPanel(main);
        getUndoRedoInstaller().installIntoComponentTree(main);
    }
View Full Code Here

        createMainPanel();
        setCanContinue(true);
    }

    private void createMainPanel() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(
                        PackageResources.SingleTableWhereClausePage.MAIN_CAPTION,
                        PackageResources.SingleTableWhereClausePage.SUB_CAPTION);
        layout.setTransparent(false);
        layout.add(ui, true, true);
        setMainPanel(layout.asCenterBorderLayout());
    }
View Full Code Here

        return new KongaCheckBox("&Validate XML instances against the selected XSD or DTD", true);
    }


    private void createMainPanel() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(PackageResources.OptionsPage.MAIN_CAPTION, "");
        layout.add(validationChoice, true, false);
        layoutSchemaLocationField(layout);
        layout.add(Box.createVerticalGlue(), false, true);
        setMainPanel(layout.asCenterBorderLayout());
    }
View Full Code Here

        installWaitIndication();
        startDownloadOfExistingStructures();
    }

    private void doLayout() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout("");
        layout.add(ui, true, true);
        JComponent c = layout.asCenterBorderLayout();
        c.setBorder(Empty.border(0, 0, 12, 0));
        setMainPanel(c);
    }
View Full Code Here

    public void requestFocus() {
        ui.requestFocus();
    }

    private void layoutPage() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(
                        PackageResources.Wizard.StructureReviewer.MAIN_CAPTION,
                        PackageResources.Wizard.StructureReviewer.SUB_CAPTION);
        layout.add(ui, true, true);
        JPanel main = layout.asCenterBorderLayout();
        setMainPanel(main);
    }
View Full Code Here

    public void applyTo(LdapStructure s) {
        // Nothing is applied on the structure in this page.
    }

    private void layoutPage() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(
                        PackageResources.Wizard.ClassSelector.MAIN_CAPTION,
                        PackageResources.Wizard.ClassSelector.SUB_CAPTION);
        layout.add(ui, true, true);
        JPanel main = layout.asCenterBorderLayout();
        setMainPanel(main);
    }
View Full Code Here

    public static WizardPageLayout emptyPageLayout(String caption) {
        return emptyPageLayout(caption, null);
    }

    public static WizardPageLayout emptyPageLayout(String caption, String subCaption) {
        WizardPageLayout layout = new WizardPageLayout(caption, subCaption) {

            @Override
            protected TextStyle getMainCaptionStyle() {
                return CAPTION_STYLE;
            }
        };
        layout.setBorder(Empty.border());
        layout.setInsets(0, 0, 0, 0);
        return layout;
    }
View Full Code Here

        layout();
        super.addToWindow(window);
    }

    private void layout() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(null);
        layout.add(ui, true, true);
        JPanel main = layout.asCenterBorderLayout();
        setMainPanel(main);
        getUndoRedoInstaller().installIntoComponentTree(main);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.application.ui.wizard.WizardPageLayout

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.