001    package net.sf.tacos.model;
002    
003    import java.util.List;
004    
005    /**
006     * @author phraktle
007     */
008    public interface IContentProvider {
009    
010        /**
011         * @return
012         */
013        public List getElements();
014    
015    }