001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.gui.tagging.ac;
003
004import org.openstreetmap.josm.data.tagging.ac.AutoCompletionItem;
005
006/**
007 * An auto-completing ComboBox.
008 *
009 * @author guilhem.bonnefille@gmail.com
010 * @since 272
011 * @deprecated Use the generic type {@link AutoCompComboBox} instead.  Eg.
012 *             {@code AutoCompComboBox<AutoCompletionItem>} or {@code AutoCompComboBox<String>}.
013 */
014@Deprecated
015public class AutoCompletingComboBox extends AutoCompComboBox<AutoCompletionItem> {
016}