001    package data.stdforms.descriptiveformsheet;
002    
003    /**
004     * Interface describing records which's description could be displayed automatically
005     * via a DescriptiveFormSheet. Records (such as CatalogItems or StockItems) will have
006     * to implement this.
007     * 
008     * @author Thomas Ryssel
009     * @since 3.3
010     * 
011     * @see data.stdforms.DescriptiveFormSheet
012     */
013    public interface Descriptive {
014    
015            /**
016             * Get the description of this record.
017             * 
018             * @return The record's description.
019             */
020            public String getDescription();
021    }