aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-core/src/main/java/com/github/javaparser/ast/AllFieldsConstructor.java
blob: 33d58e49a98f6b33ea0ef25244813030e45ab9f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 {
}