Changeset 10940 in josm for trunk/src/org
- Timestamp:
- 2016-09-03T12:47:46+02:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/MapView.java
r10898 r10940 156 156 } 157 157 158 /** 159 * Invalidate contents and repaint map view 160 * @param mapViewPaintable invalidated layer 161 */ 158 162 public synchronized void invalidate(MapViewPaintable mapViewPaintable) { 159 163 ignoreRepaint = true; -
trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ConditionFactory.java
r10910 r10940 392 392 } 393 393 394 /** 395 * Role condition. 396 */ 394 397 public static class RoleCondition implements Condition { 395 398 final String role; … … 414 417 } 415 418 419 /** 420 * Index condition. 421 */ 416 422 public static class IndexCondition implements Condition { 417 423 final String index; … … 562 568 } 563 569 570 /** 571 * Class condition. 572 */ 564 573 public static class ClassCondition implements Condition { 565 574 575 /** Class identifier */ 566 576 public final String id; 567 577 final boolean not; 568 578 579 /** 580 * Constructs a new {@code ClassCondition}. 581 * @param id id 582 * @param not negation or not 583 */ 569 584 public ClassCondition(String id, boolean not) { 570 585 this.id = id; … … 755 770 } 756 771 772 /** 773 * Pseudo class condition. 774 */ 757 775 public static class PseudoClassCondition implements Condition { 758 776 … … 811 829 } 812 830 831 /** 832 * Open end pseudo class condition. 833 */ 813 834 public static class OpenEndPseudoClassCondition extends PseudoClassCondition { 835 /** 836 * Constructs a new {@code OpenEndPseudoClassCondition}. 837 * @param not negation or not 838 */ 814 839 public OpenEndPseudoClassCondition(boolean not) { 815 840 super(null, not);
Note:
See TracChangeset
for help on using the changeset viewer.