Forum Discussion
SmartBear_Suppo
16 years agoSmartBear Alumni (Retired)
Hello,
It looks like you're going about importing your classes in the wrong way. After adding the jar file, you can import the package with your classes. For instance, to use a class com.example.MyClass, you include it in your jar and add the jar to the classpath, then you would use (for instance):
Hope this helps!
Regards,
Dain
eviware support
It looks like you're going about importing your classes in the wrong way. After adding the jar file, you can import the package with your classes. For instance, to use a class com.example.MyClass, you include it in your jar and add the jar to the classpath, then you would use (for instance):
import com.example.MyClass;
MyClass myClass = new MyClass():
Hope this helps!
Regards,
Dain
eviware support
Related Content
- 8 years ago