Author: mdryakhlenkov
Date: 2007-10-02 12:10:14 -0400 (Tue, 02 Oct 2007)
New Revision: 3968
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java
Log:
Diagram for one class open again in new editor. Bug fixed.
Modified:
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java
===================================================================
---
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java 2007-10-02
15:36:48 UTC (rev 3967)
+++
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui.view/src/org/jboss/tools/hibernate/ui/view/views/ObjectEditorInput.java 2007-10-02
16:10:14 UTC (rev 3968)
@@ -76,4 +76,11 @@
return javaProject;
}
+ public boolean equals(Object obj) {
+ if (obj instanceof ObjectEditorInput && ((ObjectEditorInput)obj).fObject ==
fObject) {
+ return true;
+ } else {
+ return false;
+ }
+ }
}
Show replies by date