@@ -45,7 +45,7 @@ public class MainFrame {
45
45
JMenuItem addNewHeaderItem ;
46
46
public static final Color WINDOW_BACKGROUND_COLOR = new Color (255 , 255 , 255 );
47
47
public static final Color BUTTON_BACKGROUND_COLOR = new Color (165 , 165 , 165 );
48
- static final String ICONPATH = "src" + File .separator + "main" + File .separator + "resources" + File .separator
48
+ public static final String ICONPATH = "src" + File .separator + "main" + File .separator + "resources" + File .separator
49
49
+ "appIcon.png" ;
50
50
51
51
ToolBoxNewFileAction newFileAction ;
@@ -76,6 +76,8 @@ public JFrame getWindow() {
76
76
77
77
private void initComponents () {
78
78
79
+
80
+
79
81
try {
80
82
// Set System L&F
81
83
UIManager .setLookAndFeel (
@@ -176,7 +178,7 @@ private void setUpMasterContainer() {
176
178
* Setup the Window
177
179
*/
178
180
private void setUpWindow () {
179
- window = new JFrame ("Outliner" );
181
+ window = new JFrame ("Java- Outliner" );
180
182
window .setDefaultCloseOperation (JFrame .EXIT_ON_CLOSE );
181
183
window .setSize (800 , 400 );
182
184
window .setVisible (true );
@@ -322,8 +324,5 @@ public void setUpDummyHeaderComponentActions(){
322
324
deleteItem .setAccelerator (InteractionMapping .DELETE .getKeystroke ());
323
325
deleteItem .setEnabled (false );
324
326
contextMenu .add (deleteItem );
325
-
326
-
327
-
328
327
}
329
328
}
0 commit comments