- Timestamp:
- 2017-07-04T13:57:53+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/io
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/AbstractUploadTask.java
r10413 r12452 37 37 import org.openstreetmap.josm.tools.date.DateUtils; 38 38 39 /** 40 * Abstract base class for the task of uploading primitives via OSM API. 41 * 42 * Mainly handles conflicts and certain error situations. 43 */ 39 44 public abstract class AbstractUploadTask extends PleaseWaitRunnable { 40 45 -
trunk/src/org/openstreetmap/josm/gui/io/ConfigurationParameterRequestHandler.java
r8510 r12452 2 2 package org.openstreetmap.josm.gui.io; 3 3 4 /** 5 * Handler, that will take action when the user clicks one of two hyperlinks 6 * in the upload dialog. 7 */ 4 8 public interface ConfigurationParameterRequestHandler { 9 /** 10 * Handle the event when user clicks the "configure changeset" hyperlink. 11 */ 5 12 void handleChangesetConfigurationRequest(); 6 13 14 /** 15 * Handle the event when user clicks the "advanced configuration" hyperlink. 16 * The advanced configuration tab contains upload strategy parameters. 17 */ 7 18 void handleUploadStrategyConfigurationRequest(); 8 19 } -
trunk/src/org/openstreetmap/josm/gui/io/CredentialDialog.java
r10791 r12452 41 41 import org.openstreetmap.josm.tools.WindowGeometry; 42 42 43 /** 44 * Dialog box to request username and password from the user. 45 * 46 * The credentials can be for the OSM API (basic authentication), a different 47 * host or an HTTP proxy. 48 */ 43 49 public class CredentialDialog extends JDialog { 44 50 -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java
r11544 r12452 59 59 import org.openstreetmap.josm.tools.WindowGeometry; 60 60 61 /** 62 * Dialog that pops up when the user closes a layer with modified data. 63 * 64 * It asks for confirmation that all modification should be discarded and offers 65 * to save the layers to file or upload to server, depending on the type of layer. 66 */ 61 67 public class SaveLayersDialog extends JDialog implements TableModelListener { 62 68 -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersModel.java
r10647 r12452 14 14 import org.openstreetmap.josm.gui.layer.OsmDataLayer; 15 15 16 /** 17 * Table model for the {@link SaveLayersTable} in the {@link SaveLayersDialog}. 18 */ 16 19 public class SaveLayersModel extends DefaultTableModel { 17 20 public static final String MODE_PROP = SaveLayerInfo.class.getName() + ".mode"; -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersTable.java
r8836 r12452 10 10 import org.openstreetmap.josm.gui.io.SaveLayersModel.Mode; 11 11 12 /** 13 * A table that displays the list of modified layers in the {@link SaveLayersDialog}. 14 */ 12 15 class SaveLayersTable extends JTable implements PropertyChangeListener { 13 16 SaveLayersTable(SaveLayersModel model) { -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersTableColumnModel.java
r11848 r12452 18 18 import org.openstreetmap.josm.tools.Utils; 19 19 20 /** 21 * Table column model for the {@link SaveLayersTable} in the {@link SaveLayersDialog}. 22 */ 20 23 class SaveLayersTableColumnModel extends DefaultTableColumnModel { 21 24 /** small renderer class that handles the "should be uploaded/saved" texts. */ -
trunk/src/org/openstreetmap/josm/gui/io/UploadAndSaveProgressRenderer.java
r9996 r12452 15 15 import org.openstreetmap.josm.gui.progress.ProgressRenderer; 16 16 17 /** 18 * A {@link ProgressRenderer} used for upload/save action in the {@link SaveLayersDialog}. 19 */ 17 20 class UploadAndSaveProgressRenderer extends JPanel implements ProgressRenderer, PropertyChangeListener { 18 21 -
trunk/src/org/openstreetmap/josm/gui/io/UploadDialog.java
r11553 r12452 214 214 ); 215 215 216 217 216 // users can click on either of two links in the upload parameter 218 217 // summary handler. This installs the handler for these two events.
Note:
See TracChangeset
for help on using the changeset viewer.