java - Repeating Annotations on Android -
i want make annotation processor android projects.
my annotations this
@author(name = "jane doe") @author(name = "john smith") class myclass { ... }
but repeating annotations supported of java se 8 release , android supports jdk 7 since api 19.
so there way use repeating annotations on android?
now android n release, repeating-annotations supported.
Comments
Post a Comment