Package simtools.ui

Examples of simtools.ui.FilteredSourceTree


    public Panes(Frame owner, DataSourcePool sourcePool) {
        super(owner, JSplitPane.VERTICAL_SPLIT, true, true);
     
       
        // SOURCE PANE
        filteredSourceTree = new FilteredSourceTree(new SourceTree(sourcePool), resources.getString("KnownSources"));
        for (Iterator it = Run.plugins.iterator(); it.hasNext();) {
            Plugin p = (Plugin) it.next();
            Object[][] tab = p.getDataSourceIcons();
            if (tab != null) {
                SourceTree.addSourceIcons(tab);
View Full Code Here

TOP

Related Classes of simtools.ui.FilteredSourceTree

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.