Java com.google.gwt.dev.asm ClassReader fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.dev.asm ClassReader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.dev.asm ClassReader.

The text is from its open source code.

Field

intSKIP_CODE
Flag to skip method code.
intSKIP_DEBUG
Flag to skip the debug information in the class.
intSKIP_FRAMES
Flag to skip the stack map frames in the class.

Constructor

ClassReader(final byte[] b)
Constructs a new ClassReader object.
ClassReader(final InputStream is)
Constructs a new ClassReader object.
ClassReader(final String name)
Constructs a new ClassReader object.

Method

voidaccept(final ClassVisitor classVisitor, final int flags)
Makes the given visitor visit the Java class of this ClassReader .