Skip to content

Package: Immutable

Immutable

Coverage

1: package util;
2: import java.lang.annotation.ElementType;
3: import java.lang.annotation.Retention;
4: import java.lang.annotation.RetentionPolicy;
5: import java.lang.annotation.Target;
6:
7: /**
8: * Klasse, die nach der Erzeugung nicht mehr verändert werden soll.
9: */
10: @Retention(RetentionPolicy.SOURCE)
11: @Target(ElementType.TYPE)
12: public @interface Immutable {
13:
14: }