Package org.openstreetmap.josm.gui.dialogs

Examples of org.openstreetmap.josm.gui.dialogs.ConflictDialog


    // repaint to make sure new data is displayed properly.
    Main.map.mapView.repaint();

    if (visitor.conflicts.isEmpty())
      return;
    final ConflictDialog dlg = Main.map.conflictDialog;
    dlg.add(visitor.conflicts);
    JOptionPane.showMessageDialog(Main.parent,
        tr("There were conflicts during import."));
    if (!dlg.isVisible())
      dlg.action.actionPerformed(new ActionEvent(this, 0, ""));
  }
View Full Code Here


        addToggleDialog(selectionListDialog = new SelectionListDialog());
        addToggleDialog(relationListDialog = new RelationListDialog());
        addToggleDialog(new CommandStackDialog());
        addToggleDialog(new UserListDialog());
        addToggleDialog(new HistoryDialog(), true);
        addToggleDialog(conflictDialog = new ConflictDialog());
        addToggleDialog(validatorDialog = new ValidatorDialog());
        addToggleDialog(filterDialog = new FilterDialog());
        addToggleDialog(new ChangesetDialog(), true);
        addToggleDialog(new MapPaintDialog());
        toolBarToggle.setFloatable(false);
View Full Code Here

TOP

Related Classes of org.openstreetmap.josm.gui.dialogs.ConflictDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.