Package org.jitterbit.ui.util.border

Examples of org.jitterbit.ui.util.border.UnderlineBorder


        public Background(UiProvider ui, int index) {
            super(new BorderLayout());
            setBackground(AlternateColors.get(index));
            ContainerCanvas.decorate(ui, this, BorderLayout.NORTH);
            setBorder(new UnderlineBorder(new Color(185, 211, 238)));
        }
View Full Code Here


        this.colors = colors;
        this.impl = impl;
    }

    public void setSeparatorColor(Color col) {
        border = (col != null ? new UnderlineBorder(col) : null);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.util.border.UnderlineBorder

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.