Back to project page json2view.
The source code is released under:
MIT License
If you think the Android project json2view listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.avocarrot.json2view; //from w w w . j av a2s .co m import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation to create the class ViewHolder */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface DynamicViewId { String id() default ""; }