01: package org.caramba.annotations;
02:
03: import java.lang.annotation.ElementType;
04: import java.lang.annotation.Retention;
05: import java.lang.annotation.RetentionPolicy;
06: import java.lang.annotation.Target;
07:
08: /**
09: * Use this annotation on a page/panel field if you do not want that the field is implicitly created.
10: * * This Annotation is mostly used in combination with {@link NoImplicitRegistration}
11: *
12: * @author Pieter Degraeuwe
13: */
14: @Target({ElementType.FIELD})
15: @Retention(RetentionPolicy.RUNTIME)
16: public @interface NoImplicitCreation {
17: }
|