Searched refs:newFolderAction (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicFileChooserUI.java115 private Action newFolderAction; field in class:BasicFileChooserUI
720 if (newFolderAction == null) {
721 newFolderAction = new NewFolderAction();
725 newFolderAction.setEnabled(false);
728 return newFolderAction;
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java1448 protected Action newFolderAction; field in class:FilePane
1451 if (!readOnly && newFolderAction == null) {
1452 newFolderAction = new AbstractAction(newFolderActionLabelText) {
1479 return newFolderAction;
1782 Action newFolderAction = actionMap.get(ACTION_NEW_FOLDER);
1785 if (listViewWindowsStyle && newFolderAction != null) {
1789 if (newFolderAction != null) {
1790 contextMenu.add(newFolderAction);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKFileChooserUI.java124 private Action newFolderAction; field in class:GTKFileChooserUI
1070 if (newFolderAction == null) {
1071 newFolderAction = new NewFolderAction();
1072 newFolderAction.setEnabled(!readOnly);
1074 return newFolderAction;

Completed in 42 milliseconds