程序包 proguard.util

接口 HierarchyProvider

  • 所有已知实现类:
    BasicHierarchyProvider

    public interface HierarchyProvider
    And interface to be implemented by classes that are able to provide information on the hierarchy of classes.

    For example implementations could simply use a ClassHierarchyTraveler or provide faster access by pre-computing the class hierarchy.

    • 方法详细资料

      • getClazz

        @Nullable
        @Nullable Clazz getClazz​(java.lang.String className)
        参数:
        className - name of the Clazz.
        返回:
        The Clazz object.
      • getSubClasses

        java.util.Set<java.lang.String> getSubClasses​(java.lang.String className)
        参数:
        className - name of the parent Clazz.
        返回:
        A set of names of the subclasses, not including the parent Clazz's.