Java JTable Row Selection selectClickedRow(final JTable table, final MouseEvent event)

Here you can find the source of selectClickedRow(final JTable table, final MouseEvent event)

Description

Selects a table row depending on a mouse event.

License

Open Source License

Parameter

Parameter Description
table The table.
event The mouse event.

Declaration

public static void selectClickedRow(final JTable table, final MouseEvent event) 

Method Source Code


//package com.java2s;
/*/* w ww. ja  v  a2 s . c  om*/
Copyright 2015 Google Inc. All Rights Reserved.
    
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
    
http://www.apache.org/licenses/LICENSE-2.0
    
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

import java.awt.event.MouseEvent;
import javax.swing.JTable;

public class Main {
    /**
     * Selects a table row depending on a mouse event.
     * 
     * @param table The table.
     * @param event The mouse event.
     */
    public static void selectClickedRow(final JTable table, final MouseEvent event) {
        final int row = table.rowAtPoint(event.getPoint());

        if (row == -1) {
            return;
        }

        table.setRowSelectionInterval(row, row);
    }
}

Related

  1. fireSelectRow(final JTable table, final int row)
  2. getSelectedModelRow(JTable table)
  3. moveRowSelection(JTable pJTable, int pRow)
  4. removeSelectedRowFromTable(JTable table)
  5. selectLastTableRow(JTable table)
  6. setTableSelectedRows(JTable table, int... selectedRows)
  7. tableModelToArray(JTable table, boolean onlyTheSelectedRows)