Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Get default selection mode

import javax.swing.JTable; public class Main {   public static void main(String[] argv) throws Exception {     JTable table = new JTable();     int selMode = table.getSelectionModel().getSelectionMode();   } }