()
| 99 | private int spinnerValue; |
| 100 | |
| 101 | public ClassInfoTab() |
| 102 | { |
| 103 | super(); |
| 104 | this.availableTable = new FilteredTreeViewTable<>(); |
| 105 | this.classTable = TableUtils.createDefaultTable(); |
| 106 | this.addButton = new JButton(); |
| 107 | this.removeButton = new JButton(); |
| 108 | this.tabTitle = new TabTitle(Tab.CLASSES); |
| 109 | this.infoPane = new InfoPane(LanguageBundle.getString("in_clInfo")); //$NON-NLS-1$ |
| 110 | this.spinner = new JSpinner(new SpinnerNumberModel(1, 1, 50, 1)); |
| 111 | this.qFilterButton = new FilterButton<>("ClassQualified"); |
| 112 | this.qualifiedRenderer = new QualifiedTreeCellRenderer(); |
| 113 | this.classTransferHandler = new ClassTransferHandler(); |
| 114 | initComponents(); |
| 115 | } |
| 116 | |
| 117 | private void initComponents() |
| 118 | { |
nothing calls this directly
no test coverage detected