Class SimpleJadxPassInfo

  • All Implemented Interfaces:
    JadxPassInfo

    public class SimpleJadxPassInfo
    extends java.lang.Object
    implements JadxPassInfo
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()
      Pass description
      java.lang.String getName()
      Pass short id, should be unique.
      java.util.List<java.lang.String> runAfter()
      This pass will be executed after these passes.
      java.util.List<java.lang.String> runBefore()
      This pass will be executed before these passes.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SimpleJadxPassInfo

        public SimpleJadxPassInfo​(java.lang.String name)
      • SimpleJadxPassInfo

        public SimpleJadxPassInfo​(java.lang.String name,
                                  java.lang.String desc)
    • Method Detail

      • getName

        public java.lang.String getName()
        Description copied from interface: JadxPassInfo
        Pass short id, should be unique.
        Specified by:
        getName in interface JadxPassInfo
      • runAfter

        public java.util.List<java.lang.String> runAfter()
        Description copied from interface: JadxPassInfo
        This pass will be executed after these passes. Passes names list.
        Specified by:
        runAfter in interface JadxPassInfo
      • runBefore

        public java.util.List<java.lang.String> runBefore()
        Description copied from interface: JadxPassInfo
        This pass will be executed before these passes. Passes names list.
        Specified by:
        runBefore in interface JadxPassInfo