C# Class TimeTracker

Summary description for TimeTracker
Show file Open project: FIU-SCIS-Senior-Projects/SmartBuilding4 Class Usage Examples

Public Methods

Method Description
getIsPaused ( ) : bool

Gets the is paused.

getSimStartTime ( ) : int

Gets the start sim time.

getSimTimeInSeconds ( ) : int

Gets the sim time in seconds.

pause ( ) : void

Pause this instance.

resume ( ) : void

Resume this instance.

setSimStartTime ( int startTime ) : void

Sets the sim start time.

setSimTimeInSeconds ( int simTime ) : void

Sets the sim time in seconds.

Method Details

getIsPaused() public method

Gets the is paused.
public getIsPaused ( ) : bool
return bool

getSimStartTime() public method

Gets the start sim time.
public getSimStartTime ( ) : int
return int

getSimTimeInSeconds() public method

Gets the sim time in seconds.
public getSimTimeInSeconds ( ) : int
return int

pause() public method

Pause this instance.
public pause ( ) : void
return void

resume() public method

Resume this instance.
public resume ( ) : void
return void

setSimStartTime() public method

Sets the sim start time.
public setSimStartTime ( int startTime ) : void
startTime int Start time.
return void

setSimTimeInSeconds() public method

Sets the sim time in seconds.
public setSimTimeInSeconds ( int simTime ) : void
simTime int Sim time.
return void