Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
InspectorTableModel.java
1 
16 package net.squiz.matrix.inspector;
17 
18 import javax.swing.table.*;
19 import javax.swing.*;
20 
21 public class InspectorTableModel extends DefaultTableModel {
22 
23  public InspectorTableModel(int rows, int columns) {
24  super(rows, columns);
25  }
26 
27  public boolean isCellEditable(int row, int column) {
28  return false;
29  }
30 
31  public int getAutoResizeMode() {
32  return JTable.AUTO_RESIZE_SUBSEQUENT_COLUMNS;
33 
34  /* AUTO_RESIZE_OFF
35  AUTO_RESIZE_NEXT_COLUMN
36  AUTO_RESIZE_SUBSEQUENT_COLUMNS
37  AUTO_RESIZE_LAST_COLUMN
38  AUTO_RESIZE_ALL_COLUMNS */
39  }
40 }