src/share/classes/javax/lang/model/util/TypeKindVisitor8.java

Print this page

        

*** 99,104 **** --- 99,117 ---- * @param defaultValue the value to assign to {@link #DEFAULT_VALUE} */ protected TypeKindVisitor8(R defaultValue) { super(defaultValue); } + + /** + * This implementation visits an {@code IntersectionType} by calling + * {@code defaultAction}. + * + * @param t {@inheritDoc} + * @param p {@inheritDoc} + * @return the result of {@code defaultAction} + */ + @Override + public R visitIntersection(IntersectionType t, P p) { + return defaultAction(t, p); + } }