show/hide this revision's text 3 added 1 characters in body

You might want try the Memory Leak Detector that comes with JRockit Mission Control together with Eclipse MAT. It's a powerful combination. Both tools are free to use for development.

With JRockit Mission Control you can inspect the heap online and see the exact number objects of a certain type that are live, without the need to take time consuming snapshots. You can directly see if you got an an Editor, View or listener object left on the heap after you closed the View/Editor. It's usually a framework listener that holds on to your view/editor. Remember, you must go to Windows->Preferences->Memory Leak Detector->Trend and set Lowest Heap Usage to report to 0.0 to se all object instances.

alt text

With MAT you can then use the shortest path to thread root to find the chain that is holding on to the leaking object. See below

alt text

Modify your code and verify with the Memory Leak Detector that the object is garbage collected when you close the editor/view.

show/hide this revision's text 2 deleted 12 characters in body

You might want try the Memory Leak Detector that comes with JRockit Mission Control together Eclipse MAT. It's a powerful combination. Both tools are free to use for development.

With JRockit Mission Control you can inspect the heap online and see the exact number objects of a certain type that are live, without the need to take time consuming snapshot all the timesnapshots. You can directly see if you got an an Editor, View or listener object left on the heap after you closed the View/Editor. It's usually a framework listener that holds on to your view/editor. Remember, you must go to Windows->Preferences->Memory Leak Detector->Trend and set Lowest Heap Usage to report to 0.0 to se all object instances.

alt text

With MAT you can then use the shortest path to thread root to find the chain that is holding on to the leaking object. See below

alt text

Modify your code and verify with the Memory Leak Detector that the object is garbage collected when you close the editor/view.

show/hide this revision's text 1

You might want try the Memory Leak Detector that comes with JRockit Mission Control together Eclipse MAT. It's a powerful combination. Both tools are free to use for development.

With JRockit Mission Control you can inspect the heap online and see the exact number objects of a certain type that are live, without the need to take time consuming snapshot all the time. You can directly see if you got an an Editor, View or listener object left on the heap after you closed the View/Editor. It's usually a framework listener that holds on to your view/editor. Remember, you must go to Windows->Preferences->Memory Leak Detector->Trend and set Lowest Heap Usage to report to 0.0 to se all object instances.

alt text

With MAT you can then use the shortest path to thread root to find the chain that is holding on to the leaking object. See below

alt text

Modify your code and verify with the Memory Leak Detector that the object is garbage collected when you close the editor/view.