Changeset 10940 in josm for trunk/src/org


Ignore:
Timestamp:
2016-09-03T12:47:46+02:00 (8 years ago)
Author:
Don-vip
Message:

javadoc

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/MapView.java

    r10898 r10940  
    156156        }
    157157
     158        /**
     159         * Invalidate contents and repaint map view
     160         * @param mapViewPaintable invalidated layer
     161         */
    158162        public synchronized void invalidate(MapViewPaintable mapViewPaintable) {
    159163            ignoreRepaint = true;
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java

    r10910 r10940  
    392392    }
    393393
     394    /**
     395     * Role condition.
     396     */
    394397    public static class RoleCondition implements Condition {
    395398        final String role;
     
    414417    }
    415418
     419    /**
     420     * Index condition.
     421     */
    416422    public static class IndexCondition implements Condition {
    417423        final String index;
     
    562568    }
    563569
     570    /**
     571     * Class condition.
     572     */
    564573    public static class ClassCondition implements Condition {
    565574
     575        /** Class identifier */
    566576        public final String id;
    567577        final boolean not;
    568578
     579        /**
     580         * Constructs a new {@code ClassCondition}.
     581         * @param id id
     582         * @param not negation or not
     583         */
    569584        public ClassCondition(String id, boolean not) {
    570585            this.id = id;
     
    755770    }
    756771
     772    /**
     773     * Pseudo class condition.
     774     */
    757775    public static class PseudoClassCondition implements Condition {
    758776
     
    811829    }
    812830
     831    /**
     832     * Open end pseudo class condition.
     833     */
    813834    public static class OpenEndPseudoClassCondition extends PseudoClassCondition {
     835        /**
     836         * Constructs a new {@code OpenEndPseudoClassCondition}.
     837         * @param not negation or not
     838         */
    814839        public OpenEndPseudoClassCondition(boolean not) {
    815840            super(null, not);
Note: See TracChangeset for help on using the changeset viewer.