Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkmoore2007-07-02 22:39:41 +0000
committerkmoore2007-07-02 22:39:41 +0000
commita4d7f52333d693d9f7ba996e5879022853af3454 (patch)
tree03bdd217192918b93881bbe2e93e3f439863bbce /jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm
parent9add9d2d417dec9c053a33922419d986eaa756aa (diff)
downloadwebtools.dali-a4d7f52333d693d9f7ba996e5879022853af3454.tar.gz
webtools.dali-a4d7f52333d693d9f7ba996e5879022853af3454.tar.xz
webtools.dali-a4d7f52333d693d9f7ba996e5879022853af3454.zip
193533 - setting cascade-persist in orm.xml editor does not update details view
Diffstat (limited to 'jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm')
-rw-r--r--jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/PersistenceUnitDefaultsInternal.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/PersistenceUnitDefaultsInternal.java b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/PersistenceUnitDefaultsInternal.java
index 31e78b1fa0..7b51533d2d 100644
--- a/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/PersistenceUnitDefaultsInternal.java
+++ b/jpa/plugins/org.eclipse.jpt.core/src/org/eclipse/jpt/core/internal/content/orm/PersistenceUnitDefaultsInternal.java
@@ -668,7 +668,7 @@ public class PersistenceUnitDefaultsInternal extends XmlEObject
eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.PERSISTENCE_UNIT_DEFAULTS_INTERNAL__CASCADE_PERSIST_INTERNAL, oldCascadePersistInternal, cascadePersistInternal));
//notification so the UI is updated when the xml changes, can't call the UI api
//because it has other side effects
- eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.PERSISTENCE_UNIT_DEFAULTS_INTERNAL__CASCADE_PERSIST, newCascadePersistInternal, newCascadePersistInternal));
+ eNotify(new ENotificationImpl(this, Notification.SET, OrmPackage.PERSISTENCE_UNIT_DEFAULTS_INTERNAL__CASCADE_PERSIST, oldCascadePersistInternal, newCascadePersistInternal));
}
}

Back to the top