Annotation Interface WriteAccess


@Target(ANNOTATION_TYPE) @Retention(RUNTIME) @Documented public @interface WriteAccess
Meta-annotation for annotations that mark construction-time methods. Methods marked through WriteAccess are moved into the generated Builder during compilation and are not exposed on completed DSL Objects.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static enum 
     
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Returns the type of write access.
  • Element Details

    • value

      Returns the type of write access. LIFECYCLE means the method ist automatically called during a KlumPhase. MANUAL means the method is called manually by the user as part of the model. Lifecycle methods must not have any parameters.
      Default:
      LIFECYCLE