< prev index next >

src/java.xml/share/classes/com/sun/org/apache/bcel/internal/classfile/MethodParameter.java

Print this page

        

*** 93,102 **** --- 93,106 ---- public boolean isMandated() { return (access_flags & Const.ACC_MANDATED) != 0; } + public void accept(final Visitor v) { + v.visitMethodParameter(this); + } + /** * Dump object to file stream on binary format. * * @param file Output file stream * @throws IOException
< prev index next >