Annotation Type get


  • @Target(FIELD)
    @Retention(CLASS)
    public @interface get
    Declares a read-only property, or modifies the getter of a read-write property . Adding set along with get makes the property read-write; the same effect as {@link var}. Note val can also be used to designate a read-only property.

    See Also:
    set, val
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      manifold.rt.api.anno.any[] annos
      Use this argument to specify annotations to apply to the property's generated getter methods.
      PropOption[] value
      Use this argument to override the property's declared access.
    • Element Detail

      • value

        PropOption[] value
        Use this argument to override the property's declared access.
        Default:
        {}
      • annos

        manifold.rt.api.anno.any[] annos
        Use this argument to specify annotations to apply to the property's generated getter methods.
        Default:
        {}