source: josm/trunk/src/org/openstreetmap/josm/gui/conflict/tags/MultiValueDecisionType.java@ 7129

Last change on this file since 7129 was 3083, checked in by bastiK, 14 years ago

added svn:eol-style=native to source files

  • Property svn:eol-style set to native
File size: 442 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.conflict.tags;
3
4/**
5 * Represents a decision for a tag conflict due to multiple possible values.
6 *
7 *
8 */
9public enum MultiValueDecisionType {
10 /** not yet decided */
11 UNDECIDED,
12 /** keep exactly one values */
13 KEEP_ONE,
14 /** keep no value, delete the tag */
15 KEEP_NONE,
16 /** keep all values; concatenate them with ; */
17 KEEP_ALL,
18}
Note: See TracBrowser for help on using the repository browser.