Examples of LogPanel


Examples of de.lmu.ifi.dbs.elki.gui.util.LogPanel

  public MultiStepGUI() {
    super();
    this.setLayout(new GridBagLayout());
    {
      // setup text output area
      outputArea = new LogPanel();

      // Create the scroll pane and add the table to it.
      JScrollPane outputPane = new JScrollPane(outputArea);
      outputPane.setPreferredSize(new Dimension(800, 400));
View Full Code Here

Examples of fr.dz.paint.panel.LogPanel

        //mise en place du panel
        setLayout(new BorderLayout());
        SVGPanel = new SvgPanel(b);
        JScrollPane jspSvg= new JScrollPane(SVGPanel);
       
        LogPanel = new LogPanel(f.getCanonicalPath());
        //JScrollPane jspLog= new JScrollPane(LogPanel);
       
        add(jspSvg,BorderLayout.CENTER);
        nameFile.setText(f.getName());
View Full Code Here

Examples of fr.soleil.lib.project.swing.panel.LogPanel

        group2Field1 = new BufferedLabel();
        group2Field2 = new BufferedLabel();
        rightPanel.add(group2Field1);
        rightPanel.add(group2Field2);

        logPanel = new LogPanel();
        logger.addHandler(logPanel.getHandler());

        JSplitPane horizontalSplit = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
        horizontalSplit.setLeftComponent(leftPanel);
        horizontalSplit.setRightComponent(new JScrollPane(rightPanel));
View Full Code Here

Examples of net.geco.ui.tabs.LogPanel

  @Override
  public TabPanel[] buildUITabs(IGecoApp geco, JFrame frame) {
    return new TabPanel[]{
        new RunnersPanel(geco, frame),
        new LogPanel(geco, frame),
        new ResultsPanel(geco, frame),
        new HeatsPanel(geco, frame)
    };
  }
View Full Code Here

Examples of net.geco.ui.tabs.LogPanel

  @Override
  public TabPanel[] buildUITabs(IGecoApp geco, JFrame frame) {
    return new TabPanel[]{
        new RunnersPanel(geco, frame),
        new LogPanel(geco, frame),
        new ResultsPanel(geco, frame),
    };
  }
View Full Code Here

Examples of net.sourceforge.squirrel_sql.client.gui.LogPanel

  private void createGUI(IApplication app)
  {
    clearText();

    addJComponent(new LogPanel(app));
    addJComponent(new MemoryPanel(app));
    addJComponent(new TimePanel());
  }
View Full Code Here

Examples of org.apache.felix.upnp.tester.gui.LogPanel

    viewer.setPreferredSize(new Dimension(180,450));
    properties = new PropertiesViewer();
    Mediator.setPropertiesViewer(properties);
 
    JSplitPane treeSplitter = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,viewer,properties);
    JPanel logPanel = new LogPanel();
    logPanel.setPreferredSize(new Dimension(180,100));
    JSplitPane logSplitter = new JSplitPane(JSplitPane.VERTICAL_SPLIT,treeSplitter,logPanel);
    panel.add(logSplitter);
    frame.getContentPane().add(panel);
   
   
View Full Code Here

Examples of weka.gui.LogPanel

        throw new Exception("supply the name of an arff file");
      }
      Instances i = new Instances(new java.io.BufferedReader(
                                  new java.io.FileReader(args[0])));
      ForecastingPanel scp =
        new ForecastingPanel(new LogPanel(new WekaTaskMonitor()), true, false, false);
      scp.setInstances(i);
      final javax.swing.JFrame jf =
        new javax.swing.JFrame("Weka Forecasting");
      jf.getContentPane().setLayout(new BorderLayout());
      jf.getContentPane().add(scp, BorderLayout.CENTER);
View Full Code Here

Examples of weka.gui.LogPanel

    try {
      Instances insts = new Instances(new BufferedReader(new FileReader(args[0])));

      final ExplorerTSPanel pan = new ExplorerTSPanel();
      pan.setInstances(insts);
      pan.setLog(new LogPanel(new WekaTaskMonitor()));

      final JFrame frame = new JFrame("Forecasting");
      frame.addWindowListener(new java.awt.event.WindowAdapter() {
        public void windowClosing(java.awt.event.WindowEvent e) {
          frame.dispose();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.