Java JTable Select getSelectionBackground(JTable t)

Here you can find the source of getSelectionBackground(JTable t)

Description

get Selection Background

License

GNU General Public License

Declaration

public static Color getSelectionBackground(JTable t) 

Method Source Code

//package com.java2s;
/***************************************
 *            ViPER                    *
 *  The Video Processing               *
 *         Evaluation Resource         *
 *                                     *
 *  Distributed under the GPL license  *
 *        Terms available at gnu.org.  *
 *                                     *
 *  Copyright University of Maryland,  *
 *                      College Park.  *
 ***************************************/

import java.awt.*;
import javax.swing.*;

public class Main {
    public static Color getSelectionBackground(JTable t) {
        return t.getSelectionBackground();
    }/*from  w w w.j  a  v  a  2s.c  o m*/
}

Related

  1. copyTableSelectionsToJList(JList list, JTable listTbl)
  2. createJCheckBoxForTable(boolean selected)
  3. disableSelection(JTable table)
  4. getSelectedCase(JTable table)
  5. getSelectedObject(JTable table)
  6. invertSelect(JTable table)
  7. invertSelection(JTable table)
  8. moveSelectionDown(JTable table)
  9. selectPositions(final JTable table, final int index0, final int index1)