Example usage for javax.swing JTable removeRowSelectionInterval

List of usage examples for javax.swing JTable removeRowSelectionInterval

Introduction

In this page you can find the example usage for javax.swing JTable removeRowSelectionInterval.

Prototype

public void removeRowSelectionInterval(int index0, int index1) 

Source Link

Document

Deselects the rows from index0 to index1, inclusive.

Usage

From source file:Main.java

public static void main(String[] argv) throws Exception {
    int rows = 10;
    int cols = 5;
    JTable table = new JTable(rows, cols);

    table.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);

    table.setColumnSelectionAllowed(true);
    table.setRowSelectionAllowed(false);

    table.setColumnSelectionAllowed(false);
    table.setRowSelectionAllowed(true);//from w w w. j  a v  a  2  s .  c o  m

    table.removeRowSelectionInterval(0, 1);
}