I am currently working with swing applications.For a developer ,it is most important that the user must be comfortable with the GUI.I want to develop an application which can have the native (Platform’s default) look and feel for all platforms that are used on a computer(I mean to say my application is not intended for mobile devices).The code I am using for the same is
UIManager.setLookAndFeel(
UIManager.getSystemLookAndFeelClassName());
Is there any simpler or more effective method for achieving the same thing?
No, there isn’t