tags:

views:

95

answers:

2
+1  A: 

It means you are missing dependant classes. If you look at the requirements it also requires "Synthetica Standard Look and Feel"

you can download it here

objects
ya i have the jar file downloaded, how to add it to the project using eclipse IDE?
swift
@swift: See my answer about how to add it to your project in eclipse.
Jonas
ya jonas i added but the same error is there. i cant find any lib folder within my project workspacei used the steps in this link to add it to the buildpathhttp://www.wikihow.com/Add-JARs-to-Project-Build-Paths-in-Eclipse-%28Java%29
swift
+1  A: 

If you have downloaded the .jar-file, then you need to add it to your build path in eclipse.

I.e. if you in your eclipse project have a directory lib where you put your .jar-files, then right-click on your jar-file and chose Build Path then Add to Build Path.

Jonas