Package jSimMacs.display

Examples of jSimMacs.display.JTextAreaFIFO


  /**
   * @return the messageBox
   */
  public JTextArea getNewMessageBox(String projectName, String commandName) {
    JTextArea area = new JTextAreaFIFO();
    area.setFont(new Font("Monospaced", Font.BOLD, 14));
    area.setEditable(false);
    messageBox.addTab(projectName + " " + commandName,
        new JScrollPane(area));
    messageBox.setSelectedIndex(messageBox.getComponentCount() - 1);
    return area;
  }
View Full Code Here

TOP

Related Classes of jSimMacs.display.JTextAreaFIFO

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.