I use 3rd libraries (substance, trident) and I added them as libraries (I added .jar) to my project in Netbeans. This also works, but if I use the built-in jar outside the project directory, it does not work as it should (the selected user interface does not appear), I get an error message:
java.lang.ClassNotFoundException: org.pushingpixels.substance.api.skin.SubstanceOfficeBlue2007LookAndFeel
I installed this UI / LookAndFeel as in my code:
UIManager.setLookAndFeel("org.pushingpixels.substance.api.skin.SubstanceOfficeBlue2007LookAndFeel");
How can I do this work / run?
source
share