Interface JadxPassInfo

All Known Implementing Classes:
OrderedJadxPassInfo, SimpleJadxPassInfo

public interface JadxPassInfo
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Add this to 'run before' list to place pass at end
    static final String
    Add this to 'run after' list to place pass before others
  • Method Summary

    Modifier and Type
    Method
    Description
    Pass description
    Pass short id, should be unique.
    This pass will be executed after these passes.
    This pass will be executed before these passes.
  • Field Details

  • Method Details

    • getName

      String getName()
      Pass short id, should be unique.
    • getDescription

      String getDescription()
      Pass description
    • runAfter

      List<String> runAfter()
      This pass will be executed after these passes. Passes names list.
    • runBefore

      List<String> runBefore()
      This pass will be executed before these passes. Passes names list.