Changeset 8836 in josm for trunk/src/org/openstreetmap/josm/gui/conflict
- Timestamp:
- 2015-10-08T00:22:36+02:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/conflict
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/pair/ListMerger.java
r8512 r8836 435 435 class CopyStartLeftAction extends CopyAction { 436 436 437 publicCopyStartLeftAction() {437 CopyStartLeftAction() { 438 438 super(/* ICON(dialogs/conflict/)*/ "copystartleft", tr("> top"), 439 439 tr("Copy my selected nodes to the start of the merged node list")); … … 457 457 class CopyEndLeftAction extends CopyAction { 458 458 459 publicCopyEndLeftAction() {459 CopyEndLeftAction() { 460 460 super(/* ICON(dialogs/conflict/)*/ "copyendleft", tr("> bottom"), 461 461 tr("Copy my selected elements to the end of the list of merged elements.")); … … 479 479 class CopyBeforeCurrentLeftAction extends CopyAction { 480 480 481 publicCopyBeforeCurrentLeftAction() {481 CopyBeforeCurrentLeftAction() { 482 482 super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentleft", tr("> before"), 483 483 tr("Copy my selected elements before the first selected element in the list of merged elements.")); … … 509 509 class CopyAfterCurrentLeftAction extends CopyAction { 510 510 511 publicCopyAfterCurrentLeftAction() {511 CopyAfterCurrentLeftAction() { 512 512 super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentleft", tr("> after"), 513 513 tr("Copy my selected elements after the first selected element in the list of merged elements.")); … … 535 535 class CopyStartRightAction extends CopyAction { 536 536 537 publicCopyStartRightAction() {537 CopyStartRightAction() { 538 538 super(/* ICON(dialogs/conflict/)*/ "copystartright", tr("< top"), 539 539 tr("Copy their selected element to the start of the list of merged elements.")); … … 553 553 class CopyEndRightAction extends CopyAction { 554 554 555 publicCopyEndRightAction() {555 CopyEndRightAction() { 556 556 super(/* ICON(dialogs/conflict/)*/ "copyendright", tr("< bottom"), 557 557 tr("Copy their selected elements to the end of the list of merged elements.")); … … 571 571 class CopyBeforeCurrentRightAction extends CopyAction { 572 572 573 publicCopyBeforeCurrentRightAction() {573 CopyBeforeCurrentRightAction() { 574 574 super(/* ICON(dialogs/conflict/)*/ "copybeforecurrentright", tr("< before"), 575 575 tr("Copy their selected elements before the first selected element in the list of merged elements.")); … … 597 597 class CopyAfterCurrentRightAction extends CopyAction { 598 598 599 publicCopyAfterCurrentRightAction() {599 CopyAfterCurrentRightAction() { 600 600 super(/* ICON(dialogs/conflict/)*/ "copyaftercurrentright", tr("< after"), 601 601 tr("Copy their selected element after the first selected element in the list of merged elements")); … … 623 623 class CopyAllLeft extends AbstractAction implements Observer, PropertyChangeListener { 624 624 625 publicCopyAllLeft() {625 CopyAllLeft() { 626 626 ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallleft"); 627 627 putValue(Action.SMALL_ICON, icon); … … 652 652 class CopyAllRight extends AbstractAction implements Observer, PropertyChangeListener { 653 653 654 publicCopyAllRight() {654 CopyAllRight() { 655 655 ImageIcon icon = ImageProvider.get("dialogs/conflict", "useallright"); 656 656 putValue(Action.SMALL_ICON, icon); … … 681 681 class MoveUpMergedAction extends AbstractAction implements ListSelectionListener { 682 682 683 publicMoveUpMergedAction() {683 MoveUpMergedAction() { 684 684 ImageIcon icon = ImageProvider.get("dialogs/conflict", "moveup"); 685 685 putValue(Action.SMALL_ICON, icon); … … 715 715 class MoveDownMergedAction extends AbstractAction implements ListSelectionListener { 716 716 717 publicMoveDownMergedAction() {717 MoveDownMergedAction() { 718 718 ImageIcon icon = ImageProvider.get("dialogs/conflict", "movedown"); 719 719 putValue(Action.SMALL_ICON, icon); … … 749 749 class RemoveMergedAction extends AbstractAction implements ListSelectionListener { 750 750 751 publicRemoveMergedAction() {751 RemoveMergedAction() { 752 752 ImageIcon icon = ImageProvider.get("dialogs/conflict", "remove"); 753 753 putValue(Action.SMALL_ICON, icon); -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/properties/PropertiesMerger.java
r8785 r8836 392 392 393 393 class KeepMyCoordinatesAction extends AbstractAction implements Observer { 394 publicKeepMyCoordinatesAction() {394 KeepMyCoordinatesAction() { 395 395 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeepmine")); 396 396 putValue(Action.SHORT_DESCRIPTION, tr("Keep my coordinates")); … … 409 409 410 410 class KeepTheirCoordinatesAction extends AbstractAction implements Observer { 411 publicKeepTheirCoordinatesAction() {411 KeepTheirCoordinatesAction() { 412 412 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeeptheir")); 413 413 putValue(Action.SHORT_DESCRIPTION, tr("Keep their coordinates")); … … 426 426 427 427 class UndecideCoordinateConflictAction extends AbstractAction implements Observer { 428 publicUndecideCoordinateConflictAction() {428 UndecideCoordinateConflictAction() { 429 429 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagundecide")); 430 430 putValue(Action.SHORT_DESCRIPTION, tr("Undecide conflict between different coordinates")); … … 443 443 444 444 class KeepMyDeletedStateAction extends AbstractAction implements Observer { 445 publicKeepMyDeletedStateAction() {445 KeepMyDeletedStateAction() { 446 446 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeepmine")); 447 447 putValue(Action.SHORT_DESCRIPTION, tr("Keep my deleted state")); … … 460 460 461 461 class KeepTheirDeletedStateAction extends AbstractAction implements Observer { 462 publicKeepTheirDeletedStateAction() {462 KeepTheirDeletedStateAction() { 463 463 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagkeeptheir")); 464 464 putValue(Action.SHORT_DESCRIPTION, tr("Keep their deleted state")); … … 477 477 478 478 class UndecideDeletedStateConflictAction extends AbstractAction implements Observer { 479 publicUndecideDeletedStateConflictAction() {479 UndecideDeletedStateConflictAction() { 480 480 putValue(Action.SMALL_ICON, ImageProvider.get("dialogs/conflict", "tagundecide")); 481 481 putValue(Action.SHORT_DESCRIPTION, tr("Undecide conflict between deleted state")); -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/tags/TagMerger.java
r8510 r8836 270 270 */ 271 271 class KeepMineAction extends AbstractAction implements ListSelectionListener { 272 publicKeepMineAction() {272 KeepMineAction() { 273 273 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagkeepmine"); 274 274 if (icon != null) { … … 302 302 */ 303 303 class KeepTheirAction extends AbstractAction implements ListSelectionListener { 304 publicKeepTheirAction() {304 KeepTheirAction() { 305 305 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagkeeptheir"); 306 306 if (icon != null) { … … 339 339 private final Set<Adjustable> synchronizedAdjustables; 340 340 341 publicAdjustmentSynchronizer() {341 AdjustmentSynchronizer() { 342 342 synchronizedAdjustables = new HashSet<>(); 343 343 } … … 400 400 class UndecideAction extends AbstractAction implements ListSelectionListener { 401 401 402 publicUndecideAction() {402 UndecideAction() { 403 403 ImageIcon icon = ImageProvider.get("dialogs/conflict", "tagundecide"); 404 404 if (icon != null) { -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java
r8540 r8836 406 406 class CancelAction extends AbstractAction { 407 407 408 publicCancelAction() {408 CancelAction() { 409 409 putValue(Action.SHORT_DESCRIPTION, tr("Cancel conflict resolution")); 410 410 putValue(Action.NAME, tr("Cancel")); … … 465 465 private double dividerLocation; 466 466 467 publicAutoAdjustingSplitPane(int newOrientation) {467 AutoAdjustingSplitPane(int newOrientation) { 468 468 super(newOrientation); 469 469 addPropertyChangeListener(JSplitPane.DIVIDER_LOCATION_PROPERTY, this); -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueCellEditor.java
r8540 r8836 196 196 * Construct a new {@link EditorCellRenderer}. 197 197 */ 198 publicEditorCellRenderer() {198 EditorCellRenderer() { 199 199 setOpaque(true); 200 200 } -
trunk/src/org/openstreetmap/josm/gui/conflict/tags/RelationMemberConflictResolver.java
r8510 r8836 154 154 155 155 class ApplyRoleAction extends AbstractAction { 156 publicApplyRoleAction() {156 ApplyRoleAction() { 157 157 putValue(NAME, tr("Apply")); 158 158 putValue(SMALL_ICON, ImageProvider.get("ok"));
Note:
See TracChangeset
for help on using the changeset viewer.