Uses of Interface
org.eclipse.jdt.core.util.IClassFileReader
-
Packages that use IClassFileReader Package Description org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program.org.eclipse.jdt.core.util Provides a set of tools and utilities for manipulating .class files and Java model elements. -
-
Uses of IClassFileReader in org.eclipse.jdt.core
Methods in org.eclipse.jdt.core that return IClassFileReader Modifier and Type Method Description static IClassFileReader
ToolFactory. createDefaultClassFileReader(InputStream stream, int decodingFlag)
Create a default classfile reader, able to expose the internal representation of a given classfile according to the decoding flag used to initialize the reader.static IClassFileReader
ToolFactory. createDefaultClassFileReader(String fileName, int decodingFlag)
Create a default classfile reader, able to expose the internal representation of a given classfile according to the decoding flag used to initialize the reader.static IClassFileReader
ToolFactory. createDefaultClassFileReader(String zipFileName, String zipEntryName, int decodingFlag)
Create a default classfile reader, able to expose the internal representation of a given classfile according to the decoding flag used to initialize the reader.static IClassFileReader
ToolFactory. createDefaultClassFileReader(IClassFile classfile, int decodingFlag)
Create a classfile reader onto a classfile Java element. -
Uses of IClassFileReader in org.eclipse.jdt.core.util
Methods in org.eclipse.jdt.core.util with parameters of type IClassFileReader Modifier and Type Method Description String
IClassFileDisassembler. disassemble(IClassFileReader classFileReader, String lineSeparator)
Deprecated.Answers back the disassembled string of the IClassFileReader using the default mode.String
IClassFileDisassembler. disassemble(IClassFileReader classFileReader, String lineSeparator, int mode)
Deprecated.Answers back the disassembled string of the IClassFileReader according to the mode.
-