I am using Windows Builder Pro in my Eclipse Helios. In NetBeans I know how to add SwingX palette. How can I add SwingX palette in Windows Builder?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Was playing around with it, and I have the solution.
SwingX ships in 2 jars-
swingx-all-1.6.3.jarandswingx-beaninfo-1.6.3.jar, the second one containsBeanInfoclasses. These are necessary if you want to import them as java beans in any IDE. So you need to merge them into a single library.Here’s what worked for me:
swingx.swingx-all-1.6.3.jar. Make a backup ofMETA-INF/MANIFEST.MF, say to../backup.mf.swingx-beaninfo-1.6.3.jarto the same location. Its manifest will overwrite the previous one, hence we needed to backup.jar -cvfm swingx-combined.jar ../backup.mf *This will create a fresh jar that has both the manifest (which lists all java beans within the jar) and the required
BeanInfoclasses.Import this jar into WindowBuilder and you’ll be able to add the required SwingX beans from it.