Package org.jamesii.gui.application.task

Examples of org.jamesii.gui.application.task.TaskMonitor


  }

  @Override
  public JComponent getStatusBar() {
    Box hBox = Box.createHorizontalBox();
    final TaskMonitor tm = new TaskMonitor();
    MouseAdapter mA = new StatusBarMouseAdapter(tm);
    tm.addMouseMotionListener(mA);
    tm.addMouseListener(mA);

    Dimension prefSize = tm.getPreferredSize();
    tm.setPreferredSize(new Dimension(450, prefSize.height));
    tm.setMaximumSize(tm.getPreferredSize());
    hBox.add(Box.createHorizontalGlue());
    hBox.add(tm);
    hBox.add(Box.createHorizontalStrut(5));
    hBox.add(new MemoryMonitor());
View Full Code Here

TOP

Related Classes of org.jamesii.gui.application.task.TaskMonitor

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.