Changeset 11724 in josm for trunk/src


Ignore:
Timestamp:
2017-03-13T18:31:06+01:00 (7 years ago)
Author:
michael2402
Message:

Fix @since version (this should be all of them).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/PositionForAreaStrategy.java

    r11722 r11724  
    1010/**
    1111 * This strategy defines how to place a label or icon inside the area.
    12  * @since 11720
     12 * @since 11722
    1313 */
    1414public interface PositionForAreaStrategy {
     
    3131     * @param keyword The text position keyword.
    3232     * @return The strategy or line if none was specified.
    33      * @since 11720
     33     * @since 11722
    3434     */
    3535    public static PositionForAreaStrategy forKeyword(Keyword keyword) {
     
    4242     * @param defaultStrategy The default if no strategy was recognized.
    4343     * @return The strategy or line if none was specified.
    44      * @since 11720
     44     * @since 11722
    4545     */
    4646    public static PositionForAreaStrategy forKeyword(Keyword keyword, PositionForAreaStrategy defaultStrategy) {
     
    6363     * Places the label onto the line.
    6464     *
    65      * @since 11720
     65     * @since 11722
    6666     */
    6767    public static PositionForAreaStrategy LINE = new OnLineStrategy();
     
    7070     * Places the label / icon so that it is completely inside the area.
    7171     *
    72      * @since 11720
     72     * @since 11722
    7373     */
    7474    public static PositionForAreaStrategy INSIDE = new CompletelyInsideAreaStrategy();
     
    7676    /**
    7777     * Places the label / icon so that is is on the area.
    78      * @since 11720
     78     * @since 11722
    7979     */
    8080    public static PositionForAreaStrategy PARTIALY_INSIDE = new PartialyInsideAreaStrategy();
     
    8383     * Places the label onto the line.
    8484     *
    85      * @since 11720
     85     * @since 11722
    8686     */
    8787    class OnLineStrategy implements PositionForAreaStrategy {
     
    101101     * Places the label / icon so that it is completely inside the area.
    102102     *
    103      * @since 11720
     103     * @since 11722
    104104     */
    105105    class CompletelyInsideAreaStrategy implements PositionForAreaStrategy {
     
    174174     *
    175175     * The center of that place should be in the area, but the icon / label may overlap on the edges.
    176      * @since 11720
     176     * @since 11722
    177177     */
    178178    public class PartialyInsideAreaStrategy extends CompletelyInsideAreaStrategy {
Note: See TracChangeset for help on using the changeset viewer.