blob: 33d58e49a98f6b33ea0ef25244813030e45ab9f2 [file] [log] [blame]
package com.github.javaparser.ast;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Tells tools that this is the constructor which directly initializes all fields (except "range" and "comment")
*/
@Target(ElementType.CONSTRUCTOR)
@Retention(RetentionPolicy.RUNTIME)
public @interface AllFieldsConstructor {
}