Method | Description | |
---|---|---|
Clear ( ) : void |
Clear the LogSystem, includes the listView.
|
|
ImportLog ( string FileName ) : string[] |
Reads in the saved Log from a *.txt File.
|
|
SaveLog ( string Filename ) : void |
Writes the Log to a *.txt File. Writing Style: Server = Database : KeyVariableName = Attribute = PathwayToElement = TimeRange
|
|
addLogInput ( string keySrv_Db, |
Log the new export of Matlab data Steps: 1) Check for the Server_database key 2) Add variable name to server list and logs. 3) Add to the ListView - doesn't add to ListView when editting.
|
|
addView ( |
Passes the LogView from the LogDialog to the LogSystem.
|
|
getLogInput ( string keyVariableName ) : |
Gets the LogInput based on the unique variable name.
|
|
isLogEmpty ( ) : bool |
Returns whether not the Log is empty.
|
|
isVariableInLogSystem ( string varname ) : bool |
Checks the log for the variable name.
|
|
parseServerDatabaseKey ( string srv_db ) : string[] |
Parses the Server Database string representation into the server and database names.
|
|
removeLogInput ( string keyName, string srv_db ) : void |
Removes a loginput connected to the KeyVariableName and removes it from the server_database.
|
Method | Description | |
---|---|---|
isServer_DatabasesInLogSystem ( string srv_db_name ) : bool |
Check that the server_databae already exists.
|
public static ImportLog ( string FileName ) : string[] | ||
FileName | string | The location of the file. |
return | string[] |
public static SaveLog ( string Filename ) : void | ||
Filename | string | The path to the file location. |
return | void |
public static addLogInput ( string keySrv_Db, |
||
keySrv_Db | string | The string representing the server and database |
logInput | The LogInput entry. | |
addToListView | bool | true: adds a ListViewItem to the ListView (generally true, false when editting) |
return | void |
public static addView ( |
||
lv | The Listview to display the LogSystem. | |
return | void |
public static getLogInput ( string keyVariableName ) : |
||
keyVariableName | string | The unique variable name. |
return |
public static isVariableInLogSystem ( string varname ) : bool | ||
varname | string | the unique variable name. |
return | bool |
public static parseServerDatabaseKey ( string srv_db ) : string[] | ||
srv_db | string | String representation of server and database. |
return | string[] |
public static removeLogInput ( string keyName, string srv_db ) : void | ||
keyName | string | |
srv_db | string | |
return | void |