I have a lot of lines of code that are similar to this:
objectListPanel = new javax.swing.JPanel();
roomNameField = new javax.swing.JTextField();
rightPanel = new javax.swing.JPanel();
jTabbedPane = new javax.swing.JTabbedPane();
enterScriptPanel = new javax.swing.JPanel();
in that they all use the "Fully Qualified Name" for a class. Is there a way to quickly fix all of these to just use the class name?
objectListPanel = new JPanel();
roomNameField = new JTextField();
rightPanel = new JPanel();
jTabbedPane = new JTabbedPane();
enterScriptPanel = new JPanel();