use of org.eclipse.jdt.core.dom.IntersectionType in project generator by mybatis.
the class TypeStringifier method visit.
@SuppressWarnings("unchecked")
@Override
public boolean visit(IntersectionType node) {
for (Iterator<Type> it = node.types().iterator(); it.hasNext(); ) {
Type t = it.next();
t.accept(this);
if (it.hasNext()) {
// $NON-NLS-1$
buffer.append(" & ");
}
}
return false;
}
Aggregations