Package de.simonkerstan.ee.core.clazz
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 TypeMethodDescriptionvoidprocessClassInterfaces(Class<?> clazz, Class<?>[] interfaces) Process all interfaces directly implemented by the given class.
-
Method Details
-
processClassInterfaces
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 processinterfaces- Directly implemented interfaces of the given class
-