Annotation Type Coordinates


  • @Retention(RUNTIME)
    @Target({FIELD,METHOD})
    public @interface Coordinates
    Allows to choose a point in a map and store it.

    The user can mark in any part of the map then the coordinates change. Also if he types or pastes the coordinates in the field the map and the mark are repositioned.
    The data type is String with a length of 50.
    Applies to properties.

    Example:

      @Coordinates
      @Column(length=50)
      private String location;
     
    It's synonymous of @Stereotype("COORDINATES").
    Since:
    6.6
    Author:
    Javier Paniza