Interface ClassConstructorInterrogator
-
- All Known Implementing Classes:
DependencyClassConstructorInterrogator
public interface ClassConstructorInterrogator
Interrogates theClass
for aConstructor
.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.reflect.Constructor<?>
interrogate(ClassConstructorInterrogatorContext context)
Interrogates for theConstructor
.
-
-
-
Method Detail
-
interrogate
java.lang.reflect.Constructor<?> interrogate(ClassConstructorInterrogatorContext context) throws java.lang.Exception
Interrogates for theConstructor
.- Parameters:
context
-ClassConstructorInterrogatorContext
.- Returns:
Constructor
. Should benull
to allow anotherClassConstructorInterrogator
to find theConstructor
.- Throws:
java.lang.Exception
- If fails to interrogate.
-
-