Examples of requiresUploadToServer()


Examples of org.openstreetmap.josm.gui.layer.ModifiableLayer.requiresUploadToServer()

        for (Layer l: selectedLayers) {
            if (!(l instanceof ModifiableLayer)) {
                continue;
            }
            ModifiableLayer odl = (ModifiableLayer)l;
            if ((odl.requiresSaveToFile() || (odl.requiresUploadToServer() && !odl.isUploadDiscouraged())) && odl.isModified()) {
                layersWithUnmodifiedChanges.add(odl);
            }
        }
        if (exit) {
            dialog.prepareForSavingAndUpdatingLayersBeforeExit();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.