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
2010-05-20 05:44:12
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.
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.