+3  A: 

The look and feel is a (application) global setting. You can't individually combine different ones. How to set the look and feel is described here.

tangens
+2  A: 

i think Not possible from Java look and feel classes as they are set for whole application like UIManager.setLookAndFeel();

so you have to do it from your own.

prashant
+1  A: 

A components LAF is determined when the component is created. So theoretically you can do:

a) set LAF
b) create the component
c) reset the LAF to the default.

You may or may not encounter problems so use at your own risk.

camickr