Show
Ignore:
Timestamp:
08/09/10 10:51:45 (22 months ago)
Author:
mszopinski
Message:

calendar, simple display

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • ssme/trunk/flex/Common/src/com/kh/ssme/util/DateUtil.as

    r4035 r4037  
    9393 
    9494        /** 
     95         * Get the Date object 
     96         * @return 
     97         */ 
     98        public function get timestamp():Number{ 
     99           return date_.time; 
     100        } 
     101 
     102 
     103        /** 
    95104         * Create a new DateUtil for the passed in date.  Updates will not effect the original date. 
    96105         * @return 
     
    189198                   this.add(DateProperty.DATE, (firstDay-this.date_.day) -1).dayEnd() 
    190199                   : 
    191                    this.add(DateProperty.DATE, 7 - (this.date_.day - firstDay) -1).dayBegin(); 
     200                   this.add(DateProperty.DATE, 7 - (this.date_.day - firstDay) -1).dayEnd(); 
    192201        } 
    193202