Examples of LogMessagesPanel


Examples of edu.stanford.genetics.treeview.core.LogMessagesPanel

    menubar.addMenuItem("Messages...", new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        JPanel inner = new JPanel();
        inner.setLayout(new BorderLayout());
        inner.add(new JLabel("JTV Messages"), BorderLayout.NORTH);
        inner.add(new JScrollPane(new LogMessagesPanel(LogBuffer
            .getSingleton())), BorderLayout.CENTER);
        LogBuffer buffer = LogBuffer.getSingleton();
        buffer.setLog(true);
        inner.add(new LogSettingsPanel(buffer),
            BorderLayout.SOUTH);
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.