(PCGenFrame frame)
| 75 | private final JPopupMenu popupMenu; |
| 76 | |
| 77 | public CharacterTabs(PCGenFrame frame) |
| 78 | { |
| 79 | this.frame = frame; |
| 80 | this.characters = new ArrayList<>(); |
| 81 | this.infoTabbedPane = new InfoTabbedPane(); |
| 82 | this.listenerMap = new HashMap<>(); |
| 83 | this.popupMenu = new JPopupMenu(); |
| 84 | initComponents(); |
| 85 | } |
| 86 | |
| 87 | private void initComponents() |
| 88 | { |
nothing calls this directly
no test coverage detected