197198199200201202203204
_objectIdentityType = type; firePropertyChange(PROP_IDENTITY, old, newType); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
237238239240241242243244
_keyClass = name; firePropertyChange(PROP_KEY_CLASS, old, name); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
117118119120121122123124
_persistenceType = type; firePropertyChange(PROP_PERSISTENCE, old, newType); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
166167168169170171172173
firePropertyChange(PROP_SENSITIVITY, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
215216217218219220221222
245246247248249250251252
_isKey = flag; firePropertyChange(PROP_KEY_FIELD, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
151152153154155156157158
_updateAction = action; firePropertyChange(PROP_UPDATE_ACTION, old, newAction); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
188189190191192193194195
_deleteAction = action; firePropertyChange(PROP_DELETE_ACTION, old, newAction); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
216217218219220221222223
_isPrefetch = flag; firePropertyChange(PROP_PREFETCH, old, newFlag); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }
243244245246247248249250
_lowerBound = lowerBound; firePropertyChange(PROP_CARDINALITY, old, newBound); } catch (PropertyVetoException e) { throw new ModelVetoException(e); } }