135136137138139140141142
return deserializer.deserialize( json, descriptor.valueType() ); } } catch( JSONException e ) { throw new EntityStoreException( e ); } }
163164165166167168169170
state.getJSONObject( JSON_KEY_PROPERTIES ).put( stateName.name(), jsonValue ); markUpdated(); } catch( JSONException e ) { throw new EntityStoreException( e ); } }
194195196197198199200201
(String) jsonValue ); return value; } catch( JSONException e ) { throw new EntityStoreException( e ); } }
209210211212213214215216
.put( stateName.name(), newEntity == null ? null : newEntity.identity() ); markUpdated(); } catch( JSONException e ) { throw new EntityStoreException( e ); } }
228229230231232233234235
} return new JSONManyAssociationState( this, jsonValues ); } catch( JSONException e ) { throw new EntityStoreException( e ); } }
297298299300301302303304
stateClone.put( JSON_KEY_MANYASSOCIATIONS, newManyAssoc ); state = stateClone; } catch( JSONException e ) { throw new EntityStoreException( e ); } }
5657585960616263
} return false; } catch( JSONException e ) { throw new EntityStoreException( e ); } }
7576777879808182
entityState.markUpdated(); return true; } catch( JSONException e ) { throw new EntityStoreException( e ); } }
979899100101102103104
109110111112113114115116
{ return new EntityReference( references.getString( i ) ); } catch( JSONException e ) { throw new EntityStoreException( e ); } }