reservation
Interface Mode

All Known Implementing Classes:
Command, CustomDialog

public interface Mode

This interface uniform the way to call each sub-class. It calls the method process of the class CustomDialog or Command according to the instantiation of this interface. Also it masks the machinery and helps the developer who want to reuse the program.

Author:
Texier Mathieu and Frederic Bidon

Field Summary
static int DEBUG
          Integer defining the DEBUG level of verbosity.
static int HIGH
          Integer defining the HIGH level of verbosity.
static int NORMAL
          Integer defining the NORMAL level of verbosity.
static int QUIET
          Integer defining the QUIET level of verbosity.
 
Method Summary
 void process()
          Open the dialog mode
 

Field Detail

QUIET

public static final int QUIET
Integer defining the QUIET level of verbosity.

See Also:
Constant Field Values

NORMAL

public static final int NORMAL
Integer defining the NORMAL level of verbosity.

See Also:
Constant Field Values

HIGH

public static final int HIGH
Integer defining the HIGH level of verbosity.

See Also:
Constant Field Values

DEBUG

public static final int DEBUG
Integer defining the DEBUG level of verbosity.

See Also:
Constant Field Values
Method Detail

process

public void process()
Open the dialog mode