Lines Matching refs:mode
512 * description: The list of selected files if the chooser is in multiple selection mode.
1113 * For information on setting the file selection mode, see
1270 * @param mode the type of files to be displayed:
1277 * @exception IllegalArgumentException if <code>mode</code> is an
1278 * illegal file selection mode
1290 public void setFileSelectionMode(int mode) {
1291 if(fileSelectionMode == mode) {
1295 if ((mode == FILES_ONLY) || (mode == DIRECTORIES_ONLY) || (mode == FILES_AND_DIRECTORIES)) {
1297 fileSelectionMode = mode;
1300 throw new IllegalArgumentException("Incorrect Mode for file selection: " + mode);
1305 * Returns the current file-selection mode. The default is
1322 * current file selection mode.
1333 * on the current file selection mode.
1348 * description: Sets multiple file selection mode.