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 { }