Annotation Type DateTime


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface DateTime
    Indicates that the date must be displayed and editing including the time part.

    The data type is any java.util.Date, including java.sql.Date.

    Applies to properties.

    Example:

      @DateTime
      java.util.Date startDate;
     
    It's synonymous of @Stereotype("DATETIME").
    Since:
    6.6
    Author:
    Javier Paniza