Package tvbrowserdataservice.file

Examples of tvbrowserdataservice.file.DayProgramFile


    }
    if (date == null) {
      throw new NullPointerException("date is null");
    }

    DayProgramFile file=mDayPrograms.get(date);
    if (file==null) {
      file=new DayProgramFile(date,mChannel);
      mDayPrograms.put(date,file);
    }
    file.addProgramFrame(frame);
    //dumpFrame(frame);
   
  }
View Full Code Here


 
 
  public void store(String directory) throws FileFormatException, IOException {
    Iterator<DayProgramFile> it = getDayProgramFiles();
    while (it.hasNext()) {
      DayProgramFile f=it.next();
      int cnt=f.getProgramFrameCount();
      for (int i=0;i<cnt;i++) {
        ProgramFrame frame=f.getProgramFrameAt(i);
        frame.setId(i);
        //dumpFrame(frame);
      }
     
     
      f.writeToFile(new File(directory,f.getProgramFileName()));
    }
  }
View Full Code Here

TOP

Related Classes of tvbrowserdataservice.file.DayProgramFile

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.