}
private void init() {
for (FileAnnotation annotation : getAnnotations()) {
if (annotation instanceof Bug) {
Bug bug = (Bug) annotation;
if (bug.isInCloud()) {
if (bug.isShouldBeInCloud() && bug.getAgeInDays() <= LESS_ONE_WEEK) {
newThisWeek++;
}
numberOfComments += bug.getReviewCount();
}
else if (bug.isShouldBeInCloud()) {
notInCloud++;
}
}
}
}