1 /*
2 * $Id: IImagesItem.java,v 1.1 2007/02/02 17:33:31 oeuillot Exp $
3 */
4 package org.rcfaces.core.item;
5
6 /**
7 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
8 * @version $Revision: 1.1 $ $Date: 2007/02/02 17:33:31 $
9 */
10 public interface IImagesItem {
11 String getImageURL();
12
13 String getDisabledImageURL();
14
15 String getHoverImageURL();
16
17 String getSelectedImageURL();
18
19 String getExpandedImageURL();
20 }