org.rx.annotation.EnableTrace Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rxlib Show documentation
Show all versions of rxlib Show documentation
A set of utilities for Java
package org.rx.annotation;
import java.lang.annotation.*;
import static java.lang.annotation.ElementType.*;
@Target({TYPE, CONSTRUCTOR, METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
public @interface EnableTrace {
boolean doLog() default true;
boolean doValidate() default false;
}