View Javadoc

1   /*
2    * Created on Oct 23, 2005.
3    * Copyright 1999-2006 Faculty of Mathematics, Physics and Informatics, Comenius University, Bratislava.
4    * This file is protected by the Mozilla Public License
5    * version 1.1 (the "License"); you may not use this file except in compliance with the License. 
6    * You may obtain a copy of the License at 
7    * 
8    *      http://euromath2.sourceforge.net/license.html
9    * 
10   * Unless required by applicable law or agreed to in writing, software 
11   * distributed under the License is distributed on an "AS IS" BASIS, 
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
13   * See the License for the specific language governing permissions and 
14   * limitations under the License. 
15   */
16  package sk.uniba.euromath.editor.widgets;
17  
18  /***
19   * Selects the kind of file browser.
20   * @author Martin Vysny
21   */
22  public enum FileBrowserEnum {
23  	/***
24  	 * Denotes the 'browse directory' dialog.
25  	 */
26  	DIRECTORY,
27  	/***
28  	 * Denotes the 'open file' dialog.
29  	 */
30  	OPEN_FILE,
31  	/***
32  	 * Denotes the 'save file' dialog.
33  	 */
34  	SAVE_FILE;
35  }