Examples of JTextAreaFIFO


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
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.