com.sdm.quasar.client.showcase.swing.allinone.emplList
Interface ListDialogConstants

All Known Implementing Classes:
ListDialog

public interface ListDialogConstants


Field Summary
static java.lang.String COMMAND_DELETE_EMPLOYEE
          Command name for the command to edit a new Employee
static java.lang.String COMMAND_EDIT_EMPLOYEE
          Command name for the command to edit a new Employee
static java.lang.String COMMAND_NEW_EMPLOYEE
          Command name for the command to edit a new Employee
static java.lang.String COMMAND_OPEN_EMPLOYEE
          Command name for the command to edit a new Employee
static java.lang.String COMMAND_RESET
          Command name for the command to discard changes
static java.lang.String DATA_COMPANY
          Key constant for the value in the data manager that is a Company.
static java.lang.String DATA_COMPANY_EMPLOYEES
          Key constant for the value in the data manager that corresponds to Company.getEmployees().
static java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED
          Key constant for the node that allows indexed access to one of the values in Company.getEmployees().
static java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_EMPLNUMBER
          Key constant for the value in the data manager that corresponds to Employee.getEmplNumber() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.
static java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_FIRSTNAME
          Key constant for the value in the data manager that corresponds to Person.getFirstname() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.
static java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_NAME
          Key constant for the value in the data manager that corresponds to Person.getName() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.
static java.lang.String DATA_COMPANY_NAME
          Key constant for the value in the data manager that corresponds to Company.getName().
static java.lang.String DATA_SELECTED_EMPLOYEE
          Key constant for the value in the data manager that corresponds to selected Employee.
static java.lang.String DATA_SELECTED_EMPLOYEE_INDEX
          Key constant for the value in the data manager that contains the current selection index in the list of employees.
 

Field Detail

DATA_COMPANY

public static final java.lang.String DATA_COMPANY
Key constant for the value in the data manager that is a Company. This defines the root node of the company and its depending data structures.

See Also:
Constant Field Values

DATA_COMPANY_NAME

public static final java.lang.String DATA_COMPANY_NAME
Key constant for the value in the data manager that corresponds to Company.getName().

See Also:
Constant Field Values

DATA_COMPANY_EMPLOYEES

public static final java.lang.String DATA_COMPANY_EMPLOYEES
Key constant for the value in the data manager that corresponds to Company.getEmployees().

See Also:
Constant Field Values

DATA_COMPANY_EMPLOYEES_INDEXED

public static final java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED
Key constant for the node that allows indexed access to one of the values in Company.getEmployees().

See Also:
Constant Field Values

DATA_COMPANY_EMPLOYEES_INDEXED_NAME

public static final java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_NAME
Key constant for the value in the data manager that corresponds to Person.getName() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.

See Also:
Constant Field Values

DATA_COMPANY_EMPLOYEES_INDEXED_FIRSTNAME

public static final java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_FIRSTNAME
Key constant for the value in the data manager that corresponds to Person.getFirstname() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.

See Also:
Constant Field Values

DATA_COMPANY_EMPLOYEES_INDEXED_EMPLNUMBER

public static final java.lang.String DATA_COMPANY_EMPLOYEES_INDEXED_EMPLNUMBER
Key constant for the value in the data manager that corresponds to Employee.getEmplNumber() of the Employees in the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when an index is applied.

See Also:
Constant Field Values

DATA_SELECTED_EMPLOYEE_INDEX

public static final java.lang.String DATA_SELECTED_EMPLOYEE_INDEX
Key constant for the value in the data manager that contains the current selection index in the list of employees.

See Also:
Constant Field Values

DATA_SELECTED_EMPLOYEE

public static final java.lang.String DATA_SELECTED_EMPLOYEE
Key constant for the value in the data manager that corresponds to selected Employee. That is the value of the indexed node DATA_COMPANY_EMPLOYEES_INDEXED when the current selection index stored in DATA_SELECTED_EMPLOYEE_INDEX is applied.

See Also:
Constant Field Values

COMMAND_NEW_EMPLOYEE

public static final java.lang.String COMMAND_NEW_EMPLOYEE
Command name for the command to edit a new Employee

See Also:
Constant Field Values

COMMAND_OPEN_EMPLOYEE

public static final java.lang.String COMMAND_OPEN_EMPLOYEE
Command name for the command to edit a new Employee

See Also:
Constant Field Values

COMMAND_EDIT_EMPLOYEE

public static final java.lang.String COMMAND_EDIT_EMPLOYEE
Command name for the command to edit a new Employee

See Also:
Constant Field Values

COMMAND_DELETE_EMPLOYEE

public static final java.lang.String COMMAND_DELETE_EMPLOYEE
Command name for the command to edit a new Employee

See Also:
Constant Field Values

COMMAND_RESET

public static final java.lang.String COMMAND_RESET
Command name for the command to discard changes

See Also:
Constant Field Values