Huluvu424242 / rades-annotations

Java Annotationen zur Automatisierung
https://huluvu424242.github.io/rades-annotations/index.html
GNU Lesser General Public License v3.0
0 stars 1 forks source link

@RadesNoBuilder aggregierbar #110

Open Huluvu424242 opened 6 years ago

Huluvu424242 commented 6 years ago

child of #108 @RadesNoBuilder lässt sich aktuell nicht über andere Annotations zusammenfassen. Das soll aber prinzipiell mit allen RADES Annotationen gehen.

Huluvu424242 commented 6 years ago
package com.github.funthomas424242.rades.fluentbuilder.statechart;

import com.github.funthomas424242.rades.annotations.accessors.RadesNoAccessor;
import com.github.funthomas424242.rades.annotations.builder.RadesNoBuilder;

import javax.validation.constraints.NotNull;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
@RadesNoBuilder
@RadesNoAccessor
@NotNull
public @interface CollectionEntry {
}