push
0 of 127 new or added lines in 11 files covered. (0.0%)
229 existing lines in 9 files now uncovered.236 of 7489 relevant lines covered (3.15%)
0.03 hits per line
| 1 |
package edu.jiangxin.apktoolbox.swing.extend; |
|
| 2 |
|
|
|
NEW
|
public class EasyChildTabbedPanel extends EasyPanel { |
× |
| 4 |
private boolean isUICreated = false; |
× |
| 5 |
|
|
| 6 |
public void onTabSelected() { |
|
|
UNCOV
7
|
if (!isUICreated) {
|
× |
|
UNCOV
8
|
createUI(); |
× |
|
UNCOV
9
|
isUICreated = true;
|
× |
| 10 |
} |
|
|
UNCOV
11
|
} |
× |
| 12 |
|
|
| 13 |
protected void createUI() { |
|
| 14 |
// do nothing
|
|
|
UNCOV
15
|
} |
× |
| 16 |
} |