DBVIEW
|
Public Member Functions | |
CliData (int in_type, Hashtable< String, Object > in_data) | |
CliData (int in_type, String in_error) | |
CliData (int in_type) | |
Public Attributes | |
int | type = org.dbview.runtime.cli.CliActionSelector.CLI_UNKNOWN |
Hashtable< String, Object > | data = null |
String | message = null |
This class contains the data extracted from the command line.
The interpretation of this data structure depends on the type of request.
Definition at line 31 of file CliData.java.
org.dbview.runtime.cli.CliData.CliData | ( | int | in_type, |
Hashtable< String, Object > | in_data | ||
) |
Constructor.
in_type | This argument represents the type of request (depends on the command selector). |
in_data | This argument contains the data extracted from the command line. |
Definition at line 60 of file CliData.java.
org.dbview.runtime.cli.CliData.CliData | ( | int | in_type, |
String | in_error | ||
) |
Constructor.
in_type | This argument represents the type of request. |
in_error | This argument represents an error message. |
Definition at line 71 of file CliData.java.
org.dbview.runtime.cli.CliData.CliData | ( | int | in_type | ) |
Constructor.
in_type | This argument represents the type of request. |
Definition at line 81 of file CliData.java.
Hashtable<String, Object> org.dbview.runtime.cli.CliData.data = null |
This attribute contains the data extracted from the command line. The attribute's value can be "null" if the request does not require data.
Definition at line 48 of file CliData.java.
Referenced by org.dbview.runtime.cli.CliData.CliData().
String org.dbview.runtime.cli.CliData.message = null |
This attribute contains an error message.
Definition at line 53 of file CliData.java.
Referenced by org.dbview.runtime.cli.CliData.CliData().
This attribute represents the type of request.
Definition at line 38 of file CliData.java.
Referenced by org.dbview.runtime.cli.CliData.CliData().