DEV Community

Lã Văn Thọ
Lã Văn Thọ

Posted on

Cannot build being Class Annotation Processor

I have a Project with the following structure Annotation Format

package io.tholv.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target({ElementType.FIELD})
@Retention(RetentionPolicy.SOURCE)
public @interface Format {
    String pattern() default "";

    boolean trim() default false;

    boolean upperCase() default false;

    boolean lowerCase() default false;

    boolean capitalize() default false;
}

and class FormatProcessor…

Latest comments (0)