Trying to get task activity commenter's name via API
Windchill 12.0.2
I need help determining who wrote a workflow task comment immediately after the task is completed. I am able to get the comment they entered with the following code. But, I have been unable to find a way to get the name of the user that entered it.
wt.workflow.work.WfAssignedActivity activity = (wt.workflow.work.WfAssignedActivity) self.getObject();
wt.workflow.engine.ProcessData actData = activity.getContext();
task_comment = actData.getTaskComments();
Seams like it would pretty straight forward but, ProcessData.GetName() returns a list[] of attributes and none of the other methods under ProcessData appear to give me what I'm after.

