Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this ClassReader. @param classVisitor the visitor that must visit this class. @param parsingOptions the options to use to parse this class. One or more of #SKIP_CODE, #SKIP_DEBUG, {@l
(final ClassVisitor classVisitor, final int parsingOptions)
| 388 | * #SKIP_CODE}, {@link #SKIP_DEBUG}, {@link #SKIP_FRAMES} or {@link #EXPAND_FRAMES}. |
| 389 | */ |
| 390 | public void accept(final ClassVisitor classVisitor, final int parsingOptions) { |
| 391 | accept(classVisitor, new Attribute[0], parsingOptions); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Makes the given visitor visit the JVMS ClassFile structure passed to the constructor of this |
no test coverage detected