public void printInferredTypes(StringBuffer sb) {
   for (int i = 0; i < this.numberInferredTypes; i++) {
     InferredType inferredType = this.inferredTypes[i];
     if (inferredType.isDefinition()) {
       inferredType.print(0, sb);
       sb.append("\n"); // $NON-NLS-1$
     }
   }
 }