@Retention(value=RUNTIME)
@Target(value={FIELD,METHOD})
public @interface TextArea
The user interface is an TextArea or Memo, where the user can type several lines. The data type is String with 500 as length by default. Applies to properties.
Example:
@TextArea @Column(length=2000) private String remarks;It's synonymous of @Stereotype("TEXT_AREA").