mirror of
https://github.com/zaaarf/lillero-processor.git
synced 2024-11-14 17:19:21 +01:00
chore: javadocs
This commit is contained in:
parent
3affc40b51
commit
fd06fe810d
1 changed files with 3 additions and 3 deletions
|
@ -105,13 +105,13 @@ public class ASTUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Extracts
|
* Extracts the inner class name as a String from the annotation.
|
||||||
* @param ann the annotation containing the class
|
* @param ann the annotation containing the class
|
||||||
* @param innerClassFunction the annotation function returning the inner class name
|
* @param innerClassFunction the annotation function returning the inner class name
|
||||||
* @param anonymousCounterFunction the annotation function returning the anonymous class counter
|
* @param anonymousCounterFunction the annotation function returning the anonymous class counter
|
||||||
* @param <T> the type of the annotation carrying the information
|
* @param <T> the type of the annotation carrying the information
|
||||||
* @return the fully qualified name of the given class
|
* @return the name of the inner class, or null if the target isn't an inner class
|
||||||
* @since 0.3.0
|
* @since 0.4.0
|
||||||
*/
|
*/
|
||||||
public static <T extends Annotation> String getInnerName(T ann, Function<T, String> innerClassFunction, Function<T, Integer> anonymousCounterFunction) {
|
public static <T extends Annotation> String getInnerName(T ann, Function<T, String> innerClassFunction, Function<T, Integer> anonymousCounterFunction) {
|
||||||
String inner = null;
|
String inner = null;
|
||||||
|
|
Loading…
Reference in a new issue