source: josm/trunk/src/org/openstreetmap/josm/gui/io/ConfigurationParameterRequestHandler.java@ 12663

Last change on this file since 12663 was 12452, checked in by bastiK, 7 years ago

see #14794 - javadoc for the josm.gui.io package

  • Property svn:eol-style set to native
File size: 624 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.io;
3
4/**
5 * Handler, that will take action when the user clicks one of two hyperlinks
6 * in the upload dialog.
7 */
8public interface ConfigurationParameterRequestHandler {
9 /**
10 * Handle the event when user clicks the "configure changeset" hyperlink.
11 */
12 void handleChangesetConfigurationRequest();
13
14 /**
15 * Handle the event when user clicks the "advanced configuration" hyperlink.
16 * The advanced configuration tab contains upload strategy parameters.
17 */
18 void handleUploadStrategyConfigurationRequest();
19}
Note: See TracBrowser for help on using the repository browser.