Examples of makeLabel()


Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

        JLabel startLabel = createLabel("JobConsole.InfoDisplayer.Label.Started");
        JLabel endLabel = createLabel("JobConsole.InfoDisplayer.Label.Ended");
        JLabel durationLabel = createLabel("JobConsole.InfoDisplayer.Label.Duration");

        TextStyle style = TextStyles.DefaultTextSmall;
        JLabel startValue = style.makeLabel(getTime(start));
        JLabel endValue = style.makeLabel(getTime(end));
        JLabel durationValue = style.makeLabel(getDuration(start, end));

        displayer = new JPanel(new DialogLayout());
        displayer.add(startLabel);
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

        JLabel endLabel = createLabel("JobConsole.InfoDisplayer.Label.Ended");
        JLabel durationLabel = createLabel("JobConsole.InfoDisplayer.Label.Duration");

        TextStyle style = TextStyles.DefaultTextSmall;
        JLabel startValue = style.makeLabel(getTime(start));
        JLabel endValue = style.makeLabel(getTime(end));
        JLabel durationValue = style.makeLabel(getDuration(start, end));

        displayer = new JPanel(new DialogLayout());
        displayer.add(startLabel);
        displayer.add(startValue);
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

        JLabel durationLabel = createLabel("JobConsole.InfoDisplayer.Label.Duration");

        TextStyle style = TextStyles.DefaultTextSmall;
        JLabel startValue = style.makeLabel(getTime(start));
        JLabel endValue = style.makeLabel(getTime(end));
        JLabel durationValue = style.makeLabel(getDuration(start, end));

        displayer = new JPanel(new DialogLayout());
        displayer.add(startLabel);
        displayer.add(startValue);
        displayer.add(endLabel);
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

    }

    private InputField getDateTimeDisplayerAsInputField() {
        String name = getString("Label.CurrentTimeInSelectedTimeZone");
        TextStyle style = TextStyles.InputLabelText;
        JLabel lbl = style.makeLabel(name);
        dateTimeDisplayer.setAppearance(style.asLabelDecorator(null));
        return new InputField(name, BorderLayoutBuilder.fillWith(dateTimeDisplayer), lbl) {

            @Override
            public void makeReadOnly() {
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

    @Override
    public void decorate(UiCanvas canvas) {
        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

    @Override
    public void decorate(UiCanvas canvas) {
        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
        layout.decorate(canvas);
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

        DialogLayoutBuilder layout = new DialogLayoutBuilder(5, 10);
        TextStyle labelStyle = TextStyles.DefaultBold;
        layout.addRow(labelStyle.makeLabel("Test:"), title);
        layout.addRow(labelStyle.makeLabel("Tested item:"), item);
        if (targetNode != null) {
            layout.addRow(labelStyle.makeLabel("Target node:"), targetNode);
        }
        layout.setBorder(StyleSheet.getDefaultTitleBorder("Details:"));
        layout.decorate(canvas);
    }
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

    }

    private JComponent createContent() {
        TextStyle labelStyle = TextStyles.InfoText;
        BorderLayoutBuilder p = new BorderLayoutBuilder(0, 5);
        p.north(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.TOP));
        p.center(entityList);
        p.south(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.BOTTOM));
        return p.container();
    }
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

    private JComponent createContent() {
        TextStyle labelStyle = TextStyles.InfoText;
        BorderLayoutBuilder p = new BorderLayoutBuilder(0, 5);
        p.north(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.TOP));
        p.center(entityList);
        p.south(labelStyle.makeLabel(PackageResources.DirtyDelegates.Messages.BOTTOM));
        return p.container();
    }


}
View Full Code Here

Examples of org.jitterbit.ui.style.TextStyle.makeLabel()

        return check;
    }

    private JComponent createGettingStartedHelpBlurb() {
        TextStyle captionStyle = TextStyle.adjustSize(WizardStyleSheet.SECTION_STYLE, 2);
        KongaLabel caption = captionStyle.makeLabel("Getting Started Help");
        caption.setAntiAliasingEnabled(true);
        caption.setBorder(Empty.border(0, 0, 10, 0));
        TextStyle textStyle = TextStyle.adjustSize(TextStyles.DefaultText, 1);
        JLabel text = textStyle.makeLabel("<html>First time using Jitterbit? Need a<br>" +
            "refresher? Use these tools to get<br>" +
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.