Swing: Look and Feel

I've found this page with a nice look and feel:

https://substance.dev.java.net/docs/skins.html#CremeSkin

But I can't use it.

I import this:

import org.jvnet.substance.skin.SubstanceCremeLookAndFeel;

And do this:

UIManager.setLookAndFeel(new SubstanceCremeLookAndFeel());

But the import-libary are not correct. Hope somebody can help me! I'm using netBeans.

[408 byte] By [Dennis_Madsena] at [2007-10-3 10:33:08]
# 1
Please expand on:>But the import-libary are not correct.What problems are you having? Have you added the library to the class path?
zadoka at 2007-7-15 5:56:14 > top of Java-index,Desktop,Core GUI APIs...
# 2
In order to use this skin, make sure that you have substance.jar from either version 3.1 (stable) or 3.2 (development) added to your library path in NB project.
kirillga at 2007-7-15 5:56:14 > top of Java-index,Desktop,Core GUI APIs...
# 3

you can add LAF without changing of code. Start app from command line like this

@call set_classpath.bat

@set classpath=../../laf/substance.jar;%classpath%

@java -Dswing.defaultlaf=org.jvnet.substance.SubstanceLookAndFeel myPkg.myApp

see quick review of LAF's - http://sss1024.googlepages.com/

sss1024a at 2007-7-15 5:56:14 > top of Java-index,Desktop,Core GUI APIs...
# 4
Substance LAF required jre1.5
sss1024a at 2007-7-15 5:56:14 > top of Java-index,Desktop,Core GUI APIs...
# 5
As is clearly stated on the project page.
kirillga at 2007-7-15 5:56:14 > top of Java-index,Desktop,Core GUI APIs...