Coverage Report - org.homeunix.thecave.buddi.view.dialogs.schedule.WeekdayCard
 
Classes in this File Line Coverage Branch Coverage Complexity
WeekdayCard
20%
1/5
N/A
1
 
 1  
 /*
 2  
  * Created on Aug 18, 2007 by wyatt
 3  
  */
 4  
 package org.homeunix.thecave.buddi.view.dialogs.schedule;
 5  
 
 6  
 import org.homeunix.thecave.buddi.model.ScheduledTransaction;
 7  
 
 8  
 import ca.digitalcave.moss.swing.MossPanel;
 9  
 
 10  1165
 public class WeekdayCard extends MossPanel implements ScheduleCard {
 11  
         public static final long serialVersionUID = 0;
 12  
         
 13  
         public int getScheduleDay() {
 14  0
                 return 0;
 15  
         }
 16  
         
 17  
         public int getScheduleWeek() {
 18  0
                 return 0;
 19  
         }
 20  
         
 21  
         public int getScheduleMonth() {
 22  0
                 return 0; //TODO This used to be -1.  Check if this change is correct or not.
 23  
         }
 24  
         
 25  
         public void loadSchedule(ScheduledTransaction s) {
 26  
                 
 27  0
         }
 28  
 }