001// License: GPL. For details, see LICENSE file. 002package org.openstreetmap.josm.gui.conflict.pair; 003 004/** 005 * Enumeration of roles entry lists play in {@link AbstractListMergeModel} 006 */ 007public enum ListRole { 008 MY_ENTRIES, 009 MERGED_ENTRIES, 010 THEIR_ENTRIES 011}