- 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/RepeatTypeEntity.as
r4036 r4037 100 100 101 101 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 ); 103 104 } 104 105 105 106 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; 107 110 } 111 108 112 } 113 109 114 }
