Class DecompilationResult

java.lang.Object
com.pnfsoftware.jeb.core.units.code.DecompilationResult

public class DecompilationResult extends Object
Decompilation result information.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    int
    Byte count or size metric.
    Error message, if decompilation failed.
    int
    Node count or size metric.
    double
    Primary decompilation speed metric.
    double
    Secondary decompilation speed metric.
    long
    Primary decompilation time.
    long
    Secondary decompilation time.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create an empty decompilation result.
  • Method Summary

    Modifier and Type
    Method
    Description
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • error

      public String error
      Error message, if decompilation failed.
    • nsize

      public int nsize
      Node count or size metric.
    • bsize

      public int bsize
      Byte count or size metric.
    • time1

      public long time1
      Primary decompilation time.
    • speedi1

      public double speedi1
      Primary decompilation speed metric.
    • time2

      public long time2
      Secondary decompilation time.
    • speedi2

      public double speedi2
      Secondary decompilation speed metric.
  • Constructor Details

    • DecompilationResult

      public DecompilationResult()
      Create an empty decompilation result.
  • Method Details