Package tvbrowser.ui.programtable

Examples of tvbrowser.ui.programtable.ProgramTableModel


     * @return visible Programs
     */
    private Program[] collectPrograms() {
        ArrayList<Program> array = new ArrayList<Program>();
       
        ProgramTableModel model = mMainFrame.getProgramTableModel();
       
        int columnCount = model.getColumnCount();
    for (int col = 0; col < columnCount; col++) {
            int rowCount = model.getRowCount(col);
      for (int row = 0; row < rowCount; row++) {
                // Get the program
                ProgramPanel panel = model.getProgramPanel(col, row);
               
                array.add(panel.getProgram());
            }
        }
       
View Full Code Here

TOP

Related Classes of tvbrowser.ui.programtable.ProgramTableModel

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.