Qui puoi scaricare un file di lookandfeel:
http://www.jgoodies.com/downloads/libraries.html (il file JGoodies Looks)
io non uso eclipse, per compilare da riga di comando:
javac -classpath .;looks-1.3.1.jar *.java
supponendo che il jar è nella cartella corrente assimem ai file sorgenti. P er eseguire:
java -classpath .;looks-1.3.1.jar NomeClasse
I look che offre il jar sono:
com.jgoodies.looks.windows.WindowsLookAndFeel
com.jgoodies.looks.plastic.PlasticLookAndFeel
com.jgoodies.looks.plastic.Plastic3DLookAndFeel
com.jgoodies.looks.plastic.PlasticXPLookAndFeel
ad esempio per impostare il look nel tuo programma su Plastic3DLookAndFeel:
codice:try { UIManager.setLookAndFeel(new com.jgoodies.looks.plastic.Plastic3DLookAndFeel()); } catch(Exception e){ System.out.println(e); }
Su eclipse dovresti trovarel'opzione per impostare il classpath