use of model.DescriptionInterview in project uPMT by coco35700.
the class IStats method lookingForInterviews.
/**
* finds the interviews of the current project and stores it locally
* @param interviews the list of all the interviews
*/
private static void lookingForInterviews(LinkedList<DescriptionInterview> interviews) {
for (DescriptionInterview interview_it : interviews) {
instance.mInterviews.add(interview_it);
instance.mItwMoments.put(interview_it, null);
}
}
Aggregations