I am creating an application with different look and feel!
I have created a JFrame Form in Netbeans which means I have a created a class which is extended JFrame like this:
public class interFace extends javax.swing.JFrame
And I have created a method in which I have to pass two arguments one is a frame name and other is string! so what will be the frame name of my JFrame which is extended into my class?
Method is like:
changeLaf(JFrame frame, String laf);