- 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/LocationEntity.as
r4035 r4037 141 141 142 142 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 ); 144 145 } 145 146 146 147 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 } 149 152 } 150 153 }
