Mega Code Archive
Categories
/
Java
/
Swing JFC
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(); } }