Ignore:
Timestamp:
2013-09-22T16:59:52+02:00 (11 years ago)
Author:
Don-vip
Message:

see #9032, see #4029 - Allow to load session from standard I/O mechanisms (local and remote files) + javadoc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/SessionSaveAsAction.java

    r6149 r6245  
    4242import org.openstreetmap.josm.tools.WindowGeometry;
    4343
     44/**
     45 * Saves a JOSM session
     46 * @since 4685
     47 */
    4448public class SessionSaveAsAction extends DiskAccessAction {
    4549
     
    5054    private boolean zipRequired;
    5155
     56    /**
     57     * Constructs a new {@code SessionSaveAsAction}.
     58     */
    5259    public SessionSaveAsAction() {
    5360        super(tr("Save Session As..."), "save_as", tr("Save the current session to a new file."), null, true, "save_as-session", true);
     
    134141    }
    135142
     143    /**
     144     * The "Save Session" dialog
     145     */
    136146    public class SessionSaveAsDialog extends ExtendedDialog {
    137147
     148        /**
     149         * Constructs a new {@code SessionSaveAsDialog}.
     150         */
    138151        public SessionSaveAsDialog() {
    139152            super(Main.parent, tr("Save Session"), new String[] {tr("Save As"), tr("Cancel")});
     
    229242        setEnabled(Main.isDisplayingMapView());
    230243    }
    231 
    232244}
Note: See TracChangeset for help on using the changeset viewer.