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