Package org.apache.oodt.cas.filemgr.browser.view.panels

Examples of org.apache.oodt.cas.filemgr.browser.view.panels.BottomPane


    // db = new CasDB();
    setName("CAS File Manager Browser");
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    qPane = new QueryPane(wListener);
    mPane = new MiddlePane();
    bPane = new BottomPane();
    Dimension d = new Dimension(GuiParams.WINDOW_WIDTH, GuiParams.WINDOW_HEIGHT);
    Container p = this.getContentPane();
    p.setPreferredSize(d);
    p.setMinimumSize(d);
    p.setMaximumSize(d);
View Full Code Here

TOP

Related Classes of org.apache.oodt.cas.filemgr.browser.view.panels.BottomPane

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.