< prev index next >

src/java.compiler/share/classes/javax/lang/model/util/SimpleElementVisitor7.java

Print this page

        

*** 93,107 **** protected SimpleElementVisitor7(R defaultValue){ super(defaultValue); } /** ! * This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} ! * @return the result of {@code defaultAction} */ @Override public R visitVariable(VariableElement e, P p) { return defaultAction(e, p); } --- 93,109 ---- protected SimpleElementVisitor7(R defaultValue){ super(defaultValue); } /** ! * {@inheritDoc} ! * ! * @implSpec This implementation calls {@code defaultAction}. * * @param e {@inheritDoc} * @param p {@inheritDoc} ! * @return {@inheritDoc} */ @Override public R visitVariable(VariableElement e, P p) { return defaultAction(e, p); }
< prev index next >