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/entity/RepeatTypeEntity.as

    r4036 r4037  
    100100 
    101101        public override function parseJSONString(json:String, recursive:int = 0):* { 
    102              return parseJSONObject( JSONObject.decode(json) ); 
     102            var jsonEntity:Object = JSONObject.decode(json); 
     103            return parseJSONObject( jsonEntity, recursive ); 
    103104        } 
    104105 
    105106        public override function toJSONString():String { 
    106             return JSONObject.encode( toJSONObject() ); 
     107            var jsonObject:Object = toJSONObject(); 
     108            var result:String = JSONObject.encode( jsonObject ); 
     109            return result; 
    107110        } 
     111         
    108112    } 
     113 
    109114}