Class InstrumentationResult
- java.lang.Object
-
- com.offbynull.coroutines.instrumenter.InstrumentationResult
-
public final class InstrumentationResult extends java.lang.Object
Instrumentation results.
-
-
Field Summary
Fields Modifier and Type Field Description private org.apache.commons.collections4.map.UnmodifiableMap<java.lang.String,byte[]>
extraFiles
private byte[]
instrumentedClass
-
Constructor Summary
Constructors Constructor Description InstrumentationResult(byte[] instrumentedClass)
InstrumentationResult(byte[] instrumentedClass, java.util.Map<java.lang.String,byte[]> extraFiles)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.commons.collections4.map.UnmodifiableMap<java.lang.String,byte[]>
getExtraFiles()
Get extra files to include along with the instrumented class.byte[]
getInstrumentedClass()
Get instrumented class bytecode.
-
-
-
Method Detail
-
getInstrumentedClass
public byte[] getInstrumentedClass()
Get instrumented class bytecode.- Returns:
- instrumented class bytecode
-
getExtraFiles
public org.apache.commons.collections4.map.UnmodifiableMap<java.lang.String,byte[]> getExtraFiles()
Get extra files to include along with the instrumented class.- Returns:
- extra files to include along with the instrumented class
-
-