Package org.jitterbit.application.ui.wizard

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


        relation.setRelationshipNature(joinTypeSelector.getSelection());
    }

    @Override
    public void decorate(UiCanvas canvas) {
        NumberedSectionsLayout layout = new NumberedSectionsLayout();
        layout.setVerticalGap(16);
        layout.setWeights(new double[] { 1.0, 1.0 }, new double[] { 1.0, 0.0 });
        layout.addSection("Link Keys", wrapComponent(linkKeysDefiner));
        layout.addSection("Join Type", wrapComponent(joinTypeSelector));
        layout.decorate(canvas);
    }
View Full Code Here


    private class Layout {
       
        private final NumberedSectionsLayout layout;
       
        public Layout() {
            layout = new NumberedSectionsLayout();
            layoutInputFields();
            layoutGenerateXsdSection();
            layoutReviewSection();
        }
View Full Code Here

TOP

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

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.