Coverage Report - org.homeunix.thecave.buddi.view.dialogs.schedule.ScheduleCard
 
Classes in this File Line Coverage Branch Coverage Complexity
ScheduleCard
N/A
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  
 public interface ScheduleCard {
 9  
         /**
 10  
          * Get the currently scheduled day value.  The meaning of this depends on the type of card.
 11  
          * @return
 12  
          */
 13  
         public int getScheduleDay();
 14  
         
 15  
         
 16  
         /**
 17  
          * Get the currently scheduled week value.  The meaning of this depends on the type of card.
 18  
          * @return
 19  
          */
 20  
         public int getScheduleWeek();
 21  
         
 22  
         /**
 23  
          * Get the currently scheduled week value.  The meaning of this depends on the type of card.
 24  
          * @return
 25  
          */
 26  
         public int getScheduleMonth();
 27  
         
 28  
         /**
 29  
          * Loads the scheduled transaction, and updates the fields, buttons, check boxes, etc on the card.
 30  
          * @param s
 31  
          */
 32  
         public void loadSchedule(ScheduledTransaction s);
 33  
 }