Ejemplo n.º 1
0
 protected void doVisitCompoundTypeReference(CompoundTypeReference reference) {
   List<LightweightTypeReference> components = reference.getMultiTypeComponents();
   if (components.isEmpty()) doVisitTypeReference(reference);
   else
     for (LightweightTypeReference component : components) {
       component.accept(this);
     }
 }