package usda.weru.mcrew;
/**
 * This class sets the values for making the default date string to be inserted in 
 * the date cell of the main MCREW row whenever created new.
 */
public class UtilConstants
{
	 
   /**
    * The default year to be displayed in the date cell of the main MCREW table
    * when no year is specified by the user.
    */	
   public static final int kDefaultYear = 01; // for 2001

   /**
    * The default month to be displayed in the date cell of the main MCREW table
    * when no month is specified by the user.
    */	
 
   public static final int kDefaultMonth = 0; //0 for January
  
   /**
    * The default day of the month to be displayed in the date cell of the main 
    * MCREW table when no day of the month is specified by the user.
    */	

   public static final int kDefaultDay = 1;

}
  
