Interface ClassInterfacesHook

All Known Implementing Classes:
DependencyInjectionHook

public interface ClassInterfacesHook
Hook to process all directly implemented interfaces of a class.

FOR INTERNAL USE ONLY. THE API CAN CHANGE AT ANY TIME.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    processClassInterfaces(Class<?> clazz, Class<?>[] interfaces)
    Process all interfaces directly implemented by the given class.
  • Method Details

    • processClassInterfaces

      void processClassInterfaces(Class<?> clazz, Class<?>[] interfaces)
      Process all interfaces directly implemented by the given class. This method will only be called for real classes, not for interfaces or other types.
      Parameters:
      clazz - Class to process
      interfaces - Directly implemented interfaces of the given class