public GregorianCalendar getStartedAt() Returns the
timestamp (in the session's locale) of when the process was started.
Attention: This method was introduced with SDK version 1.3.
Parameters
None
Returns
Returns a GregorianCalendar object representing the time a process was started. The timestamp is returned in the format determined by the session locale.
Example
// get processes List<Process> processes = workflowService.getProcesses(); Log.d(TAG, "Processes..."); for (Process process : processes){ Log.d(TAG, "getStartedAt: "+process.getStartedAt().getTime().toGMTString()); } // end for each process
Would result in output such as the following:
startedAt: 30 Oct 2013 09:32:26 GMT