001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.io.importexport; 003 004/** 005 * Options for ImportExport classes. Not all ImportExport classes support all options. 006 * @author Taylor Smock 007 * @since 17534 008 */ 009public enum Options { 010 /** Allow import/export of web resources */ 011 ALLOW_WEB_RESOURCES, 012 /** Record history. Primarily used in OpenFileAction */ 013 RECORD_HISTORY 014}