001    package edu.nrao.sss.catalog;
002    
003    import edu.nrao.sss.util.Nameable;
004    
005    /**
006     * A nameable catalog item.
007     * <p>
008     * <b>Version Info:</b>
009     * <table style="margin-left:2em">
010     *   <tr><td>$Revision$</td></tr>
011     *   <tr><td>$Date$</td></tr>
012     *   <tr><td>$Author$ (last person to modify)</td></tr>
013     * </table></p>
014     * 
015     * @author David M. Harland
016     * @since 2009-04-16
017     */
018    public interface NameableCatalogItem<I extends CatalogItem<I>>
019      extends Nameable, CatalogItem<I>
020    {
021    
022    }