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

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


    bar = new MenuBar(wListener, mPane.getListener());
    this.setJMenuBar(bar);
  }

  public String[] getColHeaders() {
    HeaderRow h = mPane.tPane.getHeader();
    String[] heading = new String[h.getNumCols()];
    for (int i = 0; i < h.getNumCols(); i++) {
      heading[i] = h.getText(i);
    }
    return heading;
  }
View Full Code Here

TOP

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

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.