Annotation Type Attribute


@Retention(RUNTIME) @Target(TYPE) @Inherited @Documented public @interface Attribute
This annotation is used to set the attributes of the meta/styles and javascript annotations.
 
 @AppMeta(name = "custom name", content = "custom content", attributes = {
  @Attribute(name = "custom-attribute", value = "custom attribute value"),
  @Attribute(name = "custom-attribute2", value = "custom attribute value2")
 })
 
 
Author:
Hyyan Abo Fakher
See Also:
  • Required Element Summary

    Required Elements
    Modifier and Type
    Required Element
    Description
    The name of the attribute
    The value of the attribute
  • Element Details

    • name

      String name
      The name of the attribute
    • value

      String value
      The value of the attribute