- Timestamp:
- 08/09/10 10:51:45 (22 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ssme/trunk/flex/Common/src/com/kh/ssme/entity/TimeFrameStateEntity.as
r4035 r4037 64 64 65 65 public override function parseJSONString(json:String, recursive:int = 0):* { 66 return parseJSONObject( JSONObject.decode(json) ); 66 var jsonEntity:Object = JSONObject.decode(json); 67 return parseJSONObject( jsonEntity, recursive ); 67 68 } 68 69 69 70 public override function toJSONString():String { 70 return JSONObject.encode( toJSONObject() ); 71 var jsonObject:Object = toJSONObject(); 72 var result:String = JSONObject.encode( jsonObject ); 73 return result; 71 74 } 75 72 76 } 77 73 78 }
