- java.lang.Object
-
- org.eclipse.persistence.asm.ClassReader
-
- org.eclipse.persistence.asm.internal.platform.ow2.ClassReaderImpl
-
public class ClassReaderImpl extends ClassReader
-
-
Field Summary
-
Fields inherited from class org.eclipse.persistence.asm.ClassReader
SKIP_CODE, SKIP_DEBUG, SKIP_FRAMES
-
-
Constructor Summary
Constructors Constructor Description ClassReaderImpl(byte[] classFileBuffer)ClassReaderImpl(byte[] classFileBuffer, int classFileOffset, int classFileLength)ClassReaderImpl(InputStream inputStream)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(ClassVisitor classVisitor, int parsingOptions)voidaccept(ClassVisitor classVisitor, Attribute[] attributePrototypes, int parsingOptions)intgetAccess()String[]getInterfaces()org.objectweb.asm.ClassReadergetInternal()StringgetSuperName()<T> Tunwrap()
-
-
-
Constructor Detail
-
ClassReaderImpl
public ClassReaderImpl(InputStream inputStream) throws IOException
- Throws:
IOException
-
ClassReaderImpl
public ClassReaderImpl(byte[] classFileBuffer) throws IOException- Throws:
IOException
-
ClassReaderImpl
public ClassReaderImpl(byte[] classFileBuffer, int classFileOffset, int classFileLength) throws IOException- Throws:
IOException
-
-
Method Detail
-
getInternal
public org.objectweb.asm.ClassReader getInternal()
-
accept
public void accept(ClassVisitor classVisitor, int parsingOptions)
- Specified by:
acceptin classClassReader
-
accept
public void accept(ClassVisitor classVisitor, Attribute[] attributePrototypes, int parsingOptions)
- Specified by:
acceptin classClassReader
-
getAccess
public int getAccess()
- Specified by:
getAccessin classClassReader
-
getSuperName
public String getSuperName()
- Specified by:
getSuperNamein classClassReader
-
getInterfaces
public String[] getInterfaces()
- Specified by:
getInterfacesin classClassReader
-
unwrap
public <T> T unwrap()
- Specified by:
unwrapin classClassReader
-
-