Annotation Type HtmlText


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface HtmlText
    Stores rich text in HTML format that the user can edit with a rich text editor.

    This allow the user to use a word processor for a field, including all formating styles typical of a word processor, not just plain text.
    The data type is String with a length of 3000.
    Applies to properties.

    Example:

      @HtmlText
      private String synopsis;
     
    It's synonymous of @Stereotype("HTML_TEXT").
    Since:
    6.6
    Author:
    Javier Paniza
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      boolean simple
      When true the user interface for editing the text is simpler, with a simplified button bar with only the most common used buttons.
    • Element Detail

      • simple

        boolean simple
        When true the user interface for editing the text is simpler, with a simplified button bar with only the most common used buttons.
        Default:
        false