Examples of asCenterBorderLayout()


Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    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

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(
                        PackageResources.SingleTableWhereClausePage.MAIN_CAPTION,
                        PackageResources.SingleTableWhereClausePage.SUB_CAPTION);
        layout.setTransparent(false);
        layout.add(ui, true, true);
        setMainPanel(layout.asCenterBorderLayout());
    }

    @Override
    public boolean prepareForForwardNavigation() {
        // XXX: We do not support syntax validation yet
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    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());
    }

    private void layoutSchemaLocationField(WizardPageLayout layout) {
        if (schemaLocation != null) {
            schemaLocation.layoutIn(layout);
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    }

    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);
    }

    private void installWaitIndication() {
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    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

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    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);
    }


    private class SelectedObjectClassesCreator extends SwingWorker<SelectedObjectClasses, Void> {
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    }

    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

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    private void createMainPanel() {
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout(
                        getString("Db.RelationshipDefinitionPage.MainCaption"),
                        getString("Db.RelationshipDefinitionPage.SubCaption"));
        layout.add(ui, true, true);
        setMainPanel(layout.asCenterBorderLayout());
    }

    private static String lookupSubTitle(SourceTarget st) {
        assert st != null;
        String key = "Db.RelationshipDefinitionPage." + st + ".SubTitle";
View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    private void layoutPage() {
        WizardPageLayout pageLayout = WizardStyleSheet.emptyPageLayout(mainCaption, subCaption);
        pageLayout.add(InvisiblePanel.newPanel(inputPanel.getUi()), true, false);
        pageLayout.add(editorPanelService, true, true);
        JPanel main = pageLayout.asCenterBorderLayout();
        main.setTransferHandler(new DropHandlerImpl());
        setMainPanel(main);
    }

View Full Code Here

Examples of org.jitterbit.application.ui.wizard.WizardPageLayout.asCenterBorderLayout()

    public void addToWindow(ApplicationWindow window) {
        super.addToWindow(window);
        WizardPageLayout layout = WizardStyleSheet.emptyPageLayout("Generate XSD",
                        "Do you want to generate an XSD based on the source table?");
        layout.add(layoutComponents(), true, true);
        setMainPanel(layout.asCenterBorderLayout());
    }

    private JComponent layoutComponents() {
        BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 20);
        layout.north(BoxBuilder.horizontal().addAllWithSpace(10, yes, no));
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.