Examples of makeLabel()


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

        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>" +
            "started with your first integration.</html>");
        OneColumnPanel left = new OneColumnPanel();
        left.setWeightX(1.0);
        left.addAll(caption, text);
View Full Code Here

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

    }

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
View Full Code Here

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

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
        return InvisiblePanel.newPanel(col.get());
View Full Code Here

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

    private JComponent createDontForgetArea() {
        TextStyle style = TextStyle.adjustSize(
                        TextStyle.newColor(TextStyles.DefaultBoldLarger, Colors.NEUTRAL_BACKGROUND), 1);
        JLabel first = style.makeLabel("Don't forget! If you're a Jitterbit customer");
        JLabel second = style.makeLabel("you can reach us by email or phone per your");
        JLabel third = style.makeLabel("support contract.");
        Grid col = Grid.oneColumn(5);
        col.addAll(first, second, third);
        col.setBackground(Colors.JITTERBIT_BLUE).setBorder(Empty.border(8, 16, 8, 16));
        return InvisiblePanel.newPanel(col.get());
    }
View Full Code Here

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

    private final JLabel label;

    public EntityNodeUi(IntegrationEntity entity, boolean big) {
        this.entity = entity;
        TextStyle style = big ? TextStyles.DefaultBoldLarger : TextStyles.DefaultText;
        label = style.makeLabel("");
        RendererUtils.decorateRenderer(label, entity, false);
        setSelected(false);
    }

    public void setIcon(Icon icon) {
View Full Code Here

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

public final class EntitySelectorDialog<T extends IntegrationEntity> {

    public static <E extends IntegrationEntity> E selectOne(EntitySelector<E> selector, Window owner, String title,
                    String message) {
        TextStyle labelStyle = TextStyles.InfoText;
        JLabel north = (message != null) ? labelStyle.makeLabel(message) : null;
        return selectOne(selector, owner, title, north);
    }

    public static <E extends IntegrationEntity> E selectOne(EntitySelector<E> selector, Window owner, String title,
                    JComponent north) {
View Full Code Here

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

    private JLabel createCaption(String title) {
        if (title == null) {
            return null;
        }
        TextStyle captionStyle = getTitleStyle();
        JLabel caption = captionStyle.makeLabel(title);
        caption.setIcon(titleIcon);
        caption.setForeground(getForegroundColor());
        caption.setFont(caption.getFont().deriveFont(Font.BOLD));
        return caption;
    }
View Full Code Here

Examples of org.lab41.dendrite.metagraph.DendriteGraphTx.makeLabel()

                    .make();
            srcTx.makeKey("age")
                    .dataType(Integer.class)
                    .indexed("search", Vertex.class)
                    .make();
            srcTx.makeLabel("friends").make();
            srcTx.makeLabel("enemies").make();
        } finally {
            srcTx.commit();
        }
View Full Code Here

Examples of org.lab41.dendrite.metagraph.DendriteGraphTx.makeLabel()

            srcTx.makeKey("age")
                    .dataType(Integer.class)
                    .indexed("search", Vertex.class)
                    .make();
            srcTx.makeLabel("friends").make();
            srcTx.makeLabel("enemies").make();
        } finally {
            srcTx.commit();
        }

        // Create a trivial graph.
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.