I wanted to use the class XYConstraints. I found the .class file in a
folder and copied it into the same directory as the main class in my
program, but the compiler doesn't seem to find it. How can I include
it in my program?
Gil
> I wanted to use the class XYConstraints. I found the .class file in a
> folder and copied it into the same directory as the main class in my
> program, but the compiler doesn't seem to find it. How can I include
> it in my program?
To which package does it belong?
You need directories and a classpath that match the class's package.
Steve
Gil - 04 Feb 2005 12:20 GMT
> > I wanted to use the class XYConstraints. I found the .class file in a
> > folder and copied it into the same directory as the main class in my
[quoted text clipped - 5 lines]
>
> Steve
I think I have solved the problem. It's a part of com.borland.jbcl.layout
I found jbcl.jar in a library of some software installed on my system.
Thanks again for your response.