Package edu.stanford.genetics.treeview.core

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


        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);
        final JDialog top = new JDialog(TreeViewFrame.this,
            "JTV Messages", false);
        top.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
        top.setContentPane(inner);
View Full Code Here

TOP

Related Classes of edu.stanford.genetics.treeview.core.LogSettingsPanel

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.