Re: ImageJ as Eclipse plugin
Posted by
Marcel. on
Jul 17, 2006; 2:45pm
URL: http://imagej.273.s1.nabble.com/ImageJ-as-Eclipse-plugin-tp3702139p3702145.html
In your case Johannes a JPanel with the nested ImageJ-Canvas could have solved your issue. And it is never a good idea to use paint in a JPanel instead of paintComponent(Graphics g). Then typically (adding a Canvas to JFrame or use paint instead of paintComponent....) these flickerings occur (made bad experiences too before found a good advice:
http://java.sun.com/products/jfc/tsc/articles/painting/ ). But maybe you know that and the problem couldn't have solved with this procedure either.
In my case i switched everything to swt and this works excellent (for my purposes of course !) and very stable.