Package org.jitterbit.ui.widget.table.renderer

Examples of org.jitterbit.ui.widget.table.renderer.BoldFontRenderer


        return new KongaRowTable(raw);
    }

    private void setTableStyle(KongaTable table) {
        TableStyle style = TableStyles.normal();
        style.addRendererPreparer(new BoldFontRenderer() {

            @Override
            protected boolean isBold(JTable table, int row, int column) {
                Object o = ((KongaTable) table).getValueAt(row, KnownServersTableModel.NAME);
                return o instanceof ServerName && ((ServerName) o).isConnected();
View Full Code Here

TOP

Related Classes of org.jitterbit.ui.widget.table.renderer.BoldFontRenderer

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.