ewe.io
Class FileChooserParameters

java.lang.Object
  extended byewe.data.DataObject
      extended byewe.util.Vector
          extended byewe.data.PropertyList
              extended byewe.io.FileChooserParameters
All Implemented Interfaces:
Comparable, Copyable, DataUnit, HasProperties, Textable

public class FileChooserParameters
extends PropertyList


Nested Class Summary
 
Nested classes inherited from class ewe.data.PropertyList
PropertyList.NullPropertyList
 
Field Summary
static String CHOSEN_FILE
          This is set on return - it is the chosen file as an ewe.io.File object.
static String CHOSEN_FILES
          This is set on return - it is the list of chosen files as an array of File objects.
static String DEFAULT_EXTENSION
          This is property is used to set the default extension.
static String FILE_MASK
          This is a property for the FileChooser - you can have more than one, which should be a String value.
static String FILE_MODEL
          This is a property for the FileChooser - it should be of type ewe.io.File.
static String LOCATION
          This property is used with a FileChooserLink object to specify a location folder the user can select.
static int OPTION_ACCEPT_ANY
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_DESKTOP_VERSION
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_DIRECTORY_TREE
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_DONT_SHOW_FILE_EXTENSION
          This is an option to be used with the OPTIONS property - it indicates that file extensions should not be displayed.
static int OPTION_FILE_MUST_EXIST
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_INSTALL_SELECT
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_MULTI_SELECT
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_NO_CONFIRM_OVERWRITE
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_NO_DIRECTORY_CHANGE
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_NO_EXECUTE
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_QUICK_SELECT
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_READ_ONLY
          This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.
static int OPTION_SIMPLE
          This is an option to be used with the OPTIONS property.
static String OPTIONS
          This is used to set the options for the FileChooser.
static String PERSISTENT_HISTORY
           
static String START_LOCATION
          This is a property for the FileChooser, which should be a String value.
static String TITLE
          This property is used to set the title of the FileChooser.
static String TYPE
          This is property is used to select the type of the FileChooser.
static String TYPE_DIRECTORY_SELECT
           
static String TYPE_OPEN
           
static String TYPE_SAVE
           
 
Fields inherited from class ewe.data.PropertyList
nullPropertyList
 
Constructor Summary
FileChooserParameters()
           
 
Methods inherited from class ewe.data.PropertyList
_getSetField, add, add, add, add, defaultTo, defaultTo, fromHashtable, fromStrings, get, get, getBoolean, getBoolean, getDouble, getDouble, getField, getInt, getInt, getNames, getProperties, getProperties, getProperties, getPropertyValues, getSetProperties, getString, getString, getStrings, getText, getValue, getValue, getValue, getValue, make, readConfigFile, remove, set, set, set, setBoolean, setField, setInt, setStrings, setText, toHashtable, toPropertyList
 
Methods inherited from class ewe.util.Vector
add, add, add, addAll, addAll, addAll, addCopiesFrom, addElement, clear, compare, contains, copyCopiesFrom, copyFrom, copyInto, copyInto, del, elementAt, elements, find, find, get, getCount, getFullCopy, insert, insertElementAt, isEmpty, iterator, iterator, pop, push, remove, removeAllElements, removeElementAt, set, setElementAt, setSize, size, sort, sort, toArray, toArray, toObjectArray, toString, zero
 
Methods inherited from class ewe.data.DataObject
appendAllFields, compareTo, copied, equals, getCopy, getDeclaredField, getDeclaredFieldValue, getDeclaredFieldValue, getFieldList, getFieldList, getMyFieldList, getNew
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode
 

Field Detail

TYPE_OPEN

public static final String TYPE_OPEN
See Also:
Constant Field Values

TYPE_SAVE

public static final String TYPE_SAVE
See Also:
Constant Field Values

TYPE_DIRECTORY_SELECT

public static final String TYPE_DIRECTORY_SELECT
See Also:
Constant Field Values

LOCATION

public static final String LOCATION
This property is used with a FileChooserLink object to specify a location folder the user can select. There can be multiple values for LOCATION.

See Also:
Constant Field Values

PERSISTENT_HISTORY

public static final String PERSISTENT_HISTORY
See Also:
Constant Field Values

TITLE

public static final String TITLE
This property is used to set the title of the FileChooser. should be "open" or "save" or "directory" or "browse".

See Also:
Constant Field Values

TYPE

public static final String TYPE
This is property is used to select the type of the FileChooser. This should be "open" or "save" or "browse".

See Also:
Constant Field Values

DEFAULT_EXTENSION

public static final String DEFAULT_EXTENSION
This is property is used to set the default extension.

See Also:
Constant Field Values

START_LOCATION

public static final String START_LOCATION
This is a property for the FileChooser, which should be a String value.

See Also:
Constant Field Values

FILE_MASK

public static final String FILE_MASK
This is a property for the FileChooser - you can have more than one, which should be a String value.

See Also:
Constant Field Values

FILE_MODEL

public static final String FILE_MODEL
This is a property for the FileChooser - it should be of type ewe.io.File.

See Also:
Constant Field Values

CHOSEN_FILES

public static final String CHOSEN_FILES
This is set on return - it is the list of chosen files as an array of File objects. If multiple file selection is not allowed, there will be only one element in the list.

See Also:
Constant Field Values

CHOSEN_FILE

public static final String CHOSEN_FILE
This is set on return - it is the chosen file as an ewe.io.File object.

See Also:
Constant Field Values

OPTIONS

public static final String OPTIONS
This is used to set the options for the FileChooser. This should be an integer value which would be any of the OPTION_XXX values ORed together.

See Also:
Constant Field Values

OPTION_QUICK_SELECT

public static final int OPTION_QUICK_SELECT
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_FILE_MUST_EXIST

public static final int OPTION_FILE_MUST_EXIST
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_DIRECTORY_TREE

public static final int OPTION_DIRECTORY_TREE
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_NO_DIRECTORY_CHANGE

public static final int OPTION_NO_DIRECTORY_CHANGE
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_ACCEPT_ANY

public static final int OPTION_ACCEPT_ANY
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_READ_ONLY

public static final int OPTION_READ_ONLY
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_INSTALL_SELECT

public static final int OPTION_INSTALL_SELECT
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_DESKTOP_VERSION

public static final int OPTION_DESKTOP_VERSION
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_NO_CONFIRM_OVERWRITE

public static final int OPTION_NO_CONFIRM_OVERWRITE
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_MULTI_SELECT

public static final int OPTION_MULTI_SELECT
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_NO_EXECUTE

public static final int OPTION_NO_EXECUTE
This is an option to be used with the OPTIONS property - it indicates You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_DONT_SHOW_FILE_EXTENSION

public static final int OPTION_DONT_SHOW_FILE_EXTENSION
This is an option to be used with the OPTIONS property - it indicates that file extensions should not be displayed. You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values

OPTION_SIMPLE

public static final int OPTION_SIMPLE
This is an option to be used with the OPTIONS property. - it is OPTION_DONT_SHOW_EXTENSION|OPTION_NO_DIRECTORY_CHANGE. You can bitwise OR together this option with any of the others.

See Also:
Constant Field Values
Constructor Detail

FileChooserParameters

public FileChooserParameters()