If you want to make your application look like
a windows application then just set the
look and feel in the UI manager to windows
Heres some sample code......
String windows = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
try {UIManager.setLookAndFeel(windows);}
catch (Exception exc) {System.err.println("Error loading L&F: " + exc);}
By the way, this will only work on a windows platform.
Not sure though if this is what you wanted.