1 package net.sf.tacos.model; 2 3 import java.util.List; 4 5 /** 6 * @author phraktle 7 */ 8 public interface IContentProvider { 9 10 /** 11 * @return 12 */ 13 public List getElements(); 14 15 }