source: josm/trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @11713   7 years Don-vip add Ant target to run PMD (only few rules for now), fix violations
(edit) @10837   8 years Don-vip see #11924 - extract MapCSS conditions to new class ConditionFactory
(edit) @10717   8 years simon04 see #11390, see #12890 - Lambda can be replaced with method reference
(edit) @10715   8 years simon04 see #11390, see #12890 - Deprecate Predicates class
(edit) @10674   8 years Don-vip fix #13239, fix #13240 - Java 8: MapCSS Condition class (patches by …
(edit) @10659   8 years Don-vip see #12472 - fix more warnings, increase maximum number of reported …
(edit) @10657   8 years Don-vip see #11390, see #12890 - use Java 8 Predicates
(edit) @10607   8 years Don-vip see #11390 - sonar - squid:S1609 - Java 8: Make Condition a …
(edit) @10599   8 years Don-vip see #11390 - sonar - squid:S1610 - Java 8: Abstract classes without …
(edit) @10589   8 years Don-vip see #12472 - fix "Non-exhaustive switch" compilation warning
(edit) @10300   8 years Don-vip sonar - Performance - Method passes constant String of length 1 to …
(edit) @10245   8 years Don-vip findbugs - CI_CONFUSED_INHERITANCE
(edit) @10001   8 years Don-vip sonar - Local variable and method parameter names should comply with a …
(edit) @9983   8 years Don-vip remove unused code
(edit) @9540   8 years simon04 see #7099 - Validate correct traffic flow at roundabouts
(edit) @9341   8 years bastiK mapcss: basic support for :selected pseudoclass (see #9891)
(edit) @9099   8 years bastiK mapcss partial fill: move threshold parameter ([9063]) into the mapcss …
(edit) @9087   8 years Don-vip sonar - fix some errors, mainly NPEs
(edit) @9073   8 years Don-vip checkstyle - Comments Indentation
(edit) @8958   8 years Don-vip update javadoc + checkstyle fix + update presets links
(edit) @8950   8 years Don-vip fix #12011 - add robustness
(edit) @8882   9 years Don-vip sonar - squid:S2386 - Mutable fields should not be "public static"
(edit) @8880   9 years Don-vip checkstyle + remove call to org.hamcrest.CoreMatchers.is (generating …
(edit) @8874   9 years simon04 fix #10467 - MapCSS: allow comparisons in regexp key conditions
(edit) @8846   9 years Don-vip sonar - fb-contrib - minor performance improvements: * Method passes …
(edit) @8836   9 years Don-vip fix Checkstyle issues
(edit) @8654   9 years Don-vip fix #11769 - Documentation for KeyCondition (patch by michael2402)
(edit) @8612   9 years Don-vip fix QA issues (javadoc, findbugs, checkstyle)
(edit) @8515   9 years simon04 see #11579 - MapCSS: improve error reporting on invalid pseudo classes
(edit) @8514   9 years Don-vip checkstyle: various checks
(edit) @8510   9 years Don-vip checkstyle: enable relevant whitespace checks and fix them
(edit) @8495   9 years simon04 fix #11150 - False validator warning on ford if node is outside the …
(edit) @8494   9 years simon04 see #11150 - MapCSS: refactor pseudo classes to factory based …
(edit) @8338   9 years Don-vip fix squid:S1319 - Declarations should use Java collection interfaces …
(edit) @8297   9 years Don-vip fix #11382 - Improve MapCSS speed by using BitSets (patch by michael2402)
(edit) @8266   9 years simon04 fix #9782 fix #10859 - MapCSS validator: evaluate real key and value …
(edit) @8252   9 years simon04 see #10529 - MapCSS: :unclosed_multipolygon should not trigger for …
(edit) @8237   9 years simon04 see #10529 - MapCSS: add :unclosed_multipolygon pseudo-class and …
(edit) @8206   9 years simon04 fix #10299 - MapCSS index for last element of object Negative index …
(edit) @7447   10 years bastiK fixed #10425 - ConcurrentModificationException when auto update …
(edit) @7193   10 years bastiK added right- and left-hand traffic database (new mapcss …
(edit) @7167   10 years simon04 MapCSS: simplify ~= implementation, add unit tests
(edit) @7099   10 years bastiK see #9691 - mapcss: fix concurrency problem with Expressions (cannot …
(edit) @7083   10 years Don-vip see #8465 - replace Utils.equal by Objects.equals, new in Java 7
(edit) @7081   10 years Don-vip fixes for unit tests
(edit) @7069   10 years bastiK see #9691 - fix broken MapCSSTagChecker unit test
(edit) @7055   10 years bastiK mapcss: optimisation by adding an extra class for the most common type …
(edit) @7012   10 years Don-vip see #8465 - use String switch/case where applicable
(edit) @6986   10 years Don-vip sonar - fix various minor issues
(edit) @6970   10 years bastiK mapcss: proper @media support no longer chokes on unkown grammar when …
(edit) @6883   10 years Don-vip fix some Sonar issues
(edit) @6859   10 years simon04 see #9593 - MapCSS: fix matching of negated regular expressions for …
(edit) @6830   10 years Don-vip javadoc fixes for jdk8 compatibility
(edit) @6687   10 years Don-vip see #9414, fix #9576 - "unconnected" pseudo class in MapCSS for nodes …
(edit) @6645   10 years simon04 see #9414 - MapCSS validator: some performance imrovements …
(edit) @6630   10 years simon04 see #9534 - "Overlapping areas" validator: do not generate warnings …
(edit) @6629   10 years simon04 Replace NodesDuplicatingWayTags test by a corresponding MapCSS test
(edit) @6611   10 years simon04 see #9516 - Replace BuildingInBuilding by a corresponding MapCSS test
(edit) @6601   10 years simon04 see #9414 fix #9485 - MapCSSTagChecker: add support for `set …
(edit) @6579   10 years simon04 fix #4280 - Validator, crossing ways: do not warn if layer is missing …
(edit) @6560   10 years simon04 see #9485 - MapCSS: add support for set class_name instruction and …
(edit) @6554   10 years simon04 see #9414 fix #9409 - extend MapCSS condition syntax to allow the …
(edit) @6547   10 years simon04 MapCSS: add regular expression support for key conditions For …
(edit) @6538   10 years simon04 see #9414 - MapCSS-based tagchecker: provide {i.key}, {i.value}, …
(edit) @6513   10 years simon04 see #9414 - convert some tagchecker tests to MapCSS, extend MapCSS by …
(edit) @6455   10 years simon04 fix #7939 - MapCSS: add support for negated regular expressions
(edit) @6070   11 years stoecker see #8853 remove tabs, trailing spaces, windows line ends, strange …
(edit) @4069   13 years bastiK mapcss: add role based selection (collaborative work by Gubaer and me)
(edit) @3980   13 years bastiK mapcss: fix conditions
(edit) @3904   13 years bastiK mapcss fix
(edit) @3893   13 years bastiK mapcss: some rework of Error Handling, (Multi)Cascade and icon loading
(edit) @3888   13 years bastiK mapcss: several small fixes
(edit) @3876   13 years bastiK mapcss: support for more exotic constructs; make parser more robust: …
(edit) @3860   13 years bastiK LineElemStyle refactoring (more caching and additional properties)
(edit) @3856   13 years bastiK improve mapcss support
(edit) @3849   13 years bastiK continue fixes by jttt and stoecker
(add) @3848   13 years bastiK Experimental mapcss support. All *.java files in the …
Note: See TracRevisionLog for help on using the revision log.