113114115116117118119120
_persistenceType = type; firePropertyChange(PROP_PERSISTENCE, old, newType); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
162163164165166167168169
firePropertyChange(PROP_SENSITIVITY, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
211212213214215216217218
241242243244245246247248
_isKey = flag; firePropertyChange(PROP_KEY_FIELD, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
147148149150151152153154
_updateAction = action; firePropertyChange(PROP_UPDATE_ACTION, old, newAction); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
184185186187188189190191
_deleteAction = action; firePropertyChange(PROP_DELETE_ACTION, old, newAction); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
212213214215216217218219
_isPrefetch = flag; firePropertyChange(PROP_PREFETCH, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
239240241242243244245246
_lowerBound = lowerBound; firePropertyChange(PROP_CARDINALITY, old, newBound); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
268269270271272273274275
_upperBound = upperBound; firePropertyChange(PROP_CARDINALITY, old, newBound); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
296297298299300301302303
_collectionClass = collectionClass; firePropertyChange(PROP_COLLECTION_CLASS, old, collectionClass); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }