Back to project page android-mvc-framework.
The source code is released under:
Apache License
If you think the Android project android-mvc-framework 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.android_mvc.framework.annotations; // ww w . j av a 2s.com import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.annotation.ElementType; /** * ??????????????????????????????????????????????????????? * @author id:language_and_engineering * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface SuppressDebugLog { boolean value() default true; } // @see http://d.hatena.ne.jp/language_and_engineering/20120209/p1