CapturePanel capturePanel;
TestParserPanel testParserPanel;
public MainPanel() {
detailPanel = new DetailPanel();
collectorPanel = new CollectorPanel();
capturePanel = new CapturePanel();
testParserPanel = new TestParserPanel();
addTab("Detail", null, detailPanel, null);
collectorPanel = new CollectorPanel();
addTab("Collector", null, collectorPanel, null);
capturePanel = new CapturePanel();
addTab("Capture", null, capturePanel, null);
addTab("Test Parser", null, testParserPanel, null);
}