package fr.mael.jiwigo.ui.mainframe; import fr.mael.jiwigo.om.Category; public interface IThumbnailPanel { /** * @return the categoryId */ public Integer getCategoryId(); /** * @param categoryId the categoryId to set */ public void setCategoryId(Integer categoryId); /** * @return the category */ public Category getCategory(); /** * @param category the category to set */ public void setCategory(Category category); }