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/LocationEntity.as

    r4035 r4037  
    141141 
    142142        public override function parseJSONString(json:String, recursive:int = 0):* { 
    143              return parseJSONObject( JSONObject.decode(json) ); 
     143            var jsonEntity:Object = JSONObject.decode(json); 
     144            return parseJSONObject( jsonEntity, recursive ); 
    144145        } 
    145146 
    146147        public override function toJSONString():String { 
    147              return JSONObject.encode( toJSONObject() ); 
    148         } 
     148            var jsonObject:Object = toJSONObject(); 
     149            var result:String = JSONObject.encode( jsonObject ); 
     150            return result; 
     151        }  
    149152    } 
    150153}