| Statement Coverage | Branch Coverage | Loop Coverage | Strict Condition Coverage | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| private final void initComponents() | 9 / 9 | 100 % |
|
0 / 0 | --- | 0 / 0 | --- | 0 / 0 | --- | |||
| FrameMain.java | ||
|---|---|---|
| 168 | private final void initComponents() { | |
| 169 | this.setLayout(new BorderLayout()); | |
| 170 | ||
| 171 | createToolbar(); | |
| 172 | createMenuBar(); | |
| 173 | ||
| 174 | this.table = new JTable(new BookTableModel()); | |
| 175 | this.table.setShowGrid(true); | |
| 176 | this.table.setGridColor(Color.LIGHT_GRAY); | |
| 177 | JScrollPane scrollPane = new JScrollPane(this.table); | |
| 178 | ||
| 179 | this.add(scrollPane, BorderLayout.CENTER); | |
| 180 | ||
| 181 | ||
| 182 | model.addAppModelModifyListenerToFile(this.fileId, | |
| 183 | this.appModelModifyListener); | |
| 184 | } | |