source: josm/trunk/src/org/openstreetmap/josm/actions/mapmode/SelectAction.java

Revision Log Mode:


Legend:

Added
Modified
Copied or renamed
Diff Rev Age Author Log Message
(edit) @12785   7 years Don-vip fix #15268 - see #13036 - do not create empty MoveCommand in …
(edit) @12759   7 years Don-vip fix #15252 - see #13036 - MoveCommand created without data set
(edit) @12726   7 years Don-vip see #13036 - deprecate Command() default constructor, fix unit tests …
(edit) @12641   7 years Don-vip see #15182 - deprecate Main.main.undoRedo. Replacement: …
(edit) @12636   7 years Don-vip see #15182 - deprecate Main.getLayerManager(). Replacement: …
(edit) @12634   7 years Don-vip see #15182 - deprecate Main.worker, replace it by …
(edit) @12630   7 years Don-vip see #15182 - deprecate Main.map and Main.isDisplayingMapView(). …
(edit) @12620   7 years Don-vip see #15182 - deprecate all Main logging methods and introduce …
(edit) @12594   7 years bastiK fixed #15139 - raster-image filter settings are Not Stored when saving …
(edit) @12593   7 years bastiK only one primitive can be highlighted at a time - use Optional
(edit) @12592   7 years bastiK use Optional instead of 0-or-1-element Collection
(edit) @12517   7 years Don-vip see #11924 - use extended event modifiers, deprecate old methods - see …
(edit) @12316   7 years michael2402 Add a method to undo/redo to get the last command.
(edit) @12314   7 years michael2402 Use DataSet getSelectedWays/Nodes helper functions.
(edit) @12313   7 years michael2402 Fix #14886: We can't use old move command if there is no edit layer.
(edit) @12284   7 years Don-vip see #14794 - javadoc
(edit) @12279   7 years Don-vip sonar - squid:S3878 - Arrays should not be created for varargs parameters
(edit) @12065   7 years michael2402 More ds.beginUpdate()/endUpdate() try/finally fixes, checked all calls …
(edit) @12060   7 years Don-vip sonar - fix two recent issues
(edit) @12053   7 years michael2402 Fix #6447: Ensure that only move commands in same layer are combined.
(edit) @12048   7 years michael2402 Add per-layer selection listeners. Make selection listener code more …
(edit) @11978   7 years Don-vip improve coverage and javadoc of enum classes for package actions
(edit) @11913   7 years Don-vip sonar - squid:S1192 - String literals should not be duplicated
(edit) @11713   7 years Don-vip add Ant target to run PMD (only few rules for now), fix violations
(edit) @11553   7 years Don-vip refactor handling of null values - use Java 8 Optional where possible
(edit) @11452   7 years Don-vip sonar - fb-contrib:SEO_SUBOPTIMAL_EXPRESSION_ORDER - Performance - …
(edit) @11385   7 years Don-vip sonar - squid:S1066 - Collapsible "if" statements should be merged
(edit) @10827   8 years Don-vip fix #13306 - Make map paint code use double coordinates (patch by …
(edit) @10601   8 years Don-vip see #11390 - sonar - squid:S1604 - Java 8: Anonymous inner classes …
(edit) @10448   8 years Don-vip fix more deprecation warnings
(edit) @10413   8 years Don-vip fix #12983 - replace calls to Main.main.get[Active|Edit]Layer() by …
(edit) @10383   8 years Don-vip replace .get*Selected().isEmpty() by .selectionEmpty()
(edit) @10382   8 years Don-vip see #12943 - gsoc-core - fix most of deprecation warnings (static …
(edit) @10342   8 years Don-vip fix #12933 - remove unused methods from NavigatableComponent (patch …
(edit) @10308   8 years Don-vip sonar - squid:S1854 - Dead stores should be removed
(edit) @10179   8 years Don-vip sonar - squid:AssignmentInSubExpressionCheck - Assignments should not …
(edit) @10043   8 years Don-vip sonar - squid:S2325 - "private" methods that don't access instance …
(edit) @9989   8 years Don-vip sonar - Methods should not be empty
(edit) @9970   8 years Don-vip sonar - remove useless parentheses
(edit) @9246   8 years Don-vip javadoc update
(edit) @9231   8 years Don-vip javadoc update
(edit) @9073   8 years Don-vip checkstyle - Comments Indentation
(edit) @9067   8 years Don-vip sonar - Immutable Field
(edit) @9062   8 years Don-vip Sonar - squid:S1941 - Variables should not be declared before they are …
(edit) @8985   8 years Don-vip checkstyle
(edit) @8977   8 years simon04 fix #9491 - Ask before moving nodes that are attached to ways fully …
(edit) @8931   8 years Don-vip javadoc fixes
(edit) @8870   9 years Don-vip sonar - squid:S2325 - "private" methods that don't access instance …
(edit) @8846   9 years Don-vip sonar - fb-contrib - minor performance improvements: * Method passes …
(edit) @8840   9 years Don-vip sonar - squid:S3052 - Fields should not be initialized to default values
(edit) @8836   9 years Don-vip fix Checkstyle issues
(edit) @8674   9 years Don-vip fix Checkstyle issues
(edit) @8550   9 years bastiK applied #11629 - Fixed state errors in selection (rect/lasso) and made …
(edit) @8540   9 years Don-vip fix remaining checkstyle issues
(edit) @8512   9 years Don-vip checkstyle: redundant modifiers
(edit) @8510   9 years Don-vip checkstyle: enable relevant whitespace checks and fix them
(edit) @8470   9 years Don-vip javadoc fixes. Removed one duplicated method in exception handling
(edit) @8444   9 years Don-vip remove extra whitespaces
(edit) @8441   9 years Don-vip see #11209 - add debug messages
(edit) @8395   9 years Don-vip convention - An open curly brace should be located at the end of a line
(edit) @8345   9 years Don-vip code style - Useless parentheses around expressions should be removed …
(edit) @8343   9 years Balaitous see #10748 - Move and connect way to an external node with shape …
(edit) @8338   9 years Don-vip fix squid:S1319 - Declarations should use Java collection interfaces …
(edit) @8318   9 years Don-vip fix various Sonar issues: - squid:S1068: Unused private fields should …
(edit) @8308   9 years Don-vip fix potential NPEs and Sonar issues related to serialization
(edit) @8285   9 years Don-vip fix sonar squid:S2039 - Member variable visibility should be specified
(edit) @8061   9 years bastiK see #11096 - strip .png
(edit) @7668   9 years stoecker cleanup icons, mark undetected icons, set proper mimetype, delete …
(edit) @7543   10 years Don-vip fix #9897, see #10455 - fix map moving issue when moving node with ctrl
(edit) @7389   10 years bastiK see #10363 - you cannot click on object that is not visible on the map
(edit) @7218   10 years akks fix #3910: toggle lasso mode on repeating S key can be turned of with …
(edit) @7217   10 years akks see #10104: refactor key press/release detection introducing …
(edit) @7009   10 years akks see #9952: added parameter extrude.initial-move-threshold (to tune …
(edit) @7005   10 years Don-vip see #8465 - use diamond operator where applicable
(edit) @7000   10 years Don-vip fix #9897 - avoid unwanted rectangle painting when moving map on Mac OS X
(edit) @6993   10 years bastiK see #9397 - Move map no longer works on OSX (fix selection rectagle on …
(edit) @6992   10 years Don-vip cleanup/refactor of NavigatableComponent
(edit) @6957   10 years Don-vip see #9897 - refactor OSX stuff
(edit) @6889   10 years Don-vip fix some Sonar issues (JLS order)
(edit) @6679   10 years stoecker see #9110 - fix singular forms, even if they are useless
(edit) @6546   10 years Don-vip fix #9482, see #9423, see #6853 - fix regression from r6542: irregular …
(edit) @6507   10 years simon04 fix #9110 - i18n: fix errors in usage of plural forms
(edit) @6380   10 years Don-vip update license/copyright information
(edit) @6317   11 years Don-vip Sonar/FindBugs - Loose coupling
(edit) @6310   11 years Don-vip Sonar/FindBugs - Nested blocks of code should not be left empty
(edit) @6296   11 years Don-vip Sonar/Findbugs - Avoid commented-out lines of code, javadoc
(edit) @6246   11 years Don-vip Sonar/FindBugs - various bugfixes / violation fixes
(edit) @6215   11 years Don-vip fix #9042 - Robustness to invalid .osm files containing null coordinates
(edit) @6202   11 years Don-vip fix #2447 - Unnessary changes of a target node by dragging another …
(edit) @6084   11 years bastiK see #8902 - add missing @Override annotations (patch by shinigami)
(edit) @6069   11 years stoecker see #8853 remove tabs, trailing spaces, windows line ends, strange …
(edit) @6013   11 years Don-vip fix #8806 - NPE in SelectAction
(edit) @5991   11 years Don-vip see #8752 - update distance text in status line when rescaling ways
(edit) @5909   11 years stoecker fix all remaining javadoc warnings
(edit) @5735   11 years Don-vip fix #8116 (forgot the other cases)
(edit) @5734   11 years Don-vip fix #8116 - Update status line message when mouse button is released …
(edit) @5653   11 years Don-vip Fix #8128 - NPE while dragging object
(edit) @5447   12 years Don-vip Select action: only repaint MapView when needed (here, the repaint() …
(edit) @5446   12 years Don-vip Select action: only repaint MapView when needed
(edit) @5443   12 years akks see #7888: Ctrl-Drag moves the node/way under cursor; fix dragging …
Note: See TracRevisionLog for help on using the revision log.