Package org.jsmdr.configui.collector

Examples of org.jsmdr.configui.collector.CollectorPanel


    tabbedPanel = new JTabbedPane();
    this.add(tabbedPanel);

    commonPanel = new CommonPanel();
    tabbedPanel.addTab("Common", null, commonPanel, null);
    collectorPanel = new CollectorPanel();
    tabbedPanel.addTab("Collector", null, collectorPanel, null);
    processorView = new ProcessorView();
    tabbedPanel.addTab("Processor", null, processorView, null);
    parserMatchView = new ParserMatchView();
    tabbedPanel.addTab("Parsers", null, parserMatchView, null);
View Full Code Here


  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);
  }
View Full Code Here

TOP

Related Classes of org.jsmdr.configui.collector.CollectorPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.