In some source codes found on the net contains i saw import statements
like
import ij.gui.*;
import ij.process.*;
what is this IJ package and where can i get it.
I think its not in JDK1.5
John T - 12 Mar 2007 18:17 GMT
> In some source codes found on the net contains i saw import statements
> like
> import ij.gui.*;
> import ij.process.*;
> what is this IJ package and where can i get it.
> I think its not in JDK1.5
http://rsb.info.nih.gov/ij/download.html/
giyf
Thomas Fritsch - 13 Mar 2007 00:35 GMT
> In some source codes found on the net contains i saw import statements
> like
> import ij.gui.*;
> import ij.process.*;
> what is this IJ package and where can i get it.
> I think its not in JDK1.5
Please learn to search by yourself, instead of waiting until someone
else does it for you. From the import statements above, you know 2 exact
package-names of IJ. Hence google for
"package ij.gui"
or
"package ij.process"
This should find the sources or the API docs of the IJ packages.

Signature
Thomas