1 /*
2 * $Id: ICellImageCapability.java,v 1.1 2007/04/20 13:43:05 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 *
8 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
9 * @version $Revision: 1.1 $ $Date: 2007/04/20 13:43:05 $
10 */
11 public interface ICellImageCapability {
12
13 /**
14 * Returns an url string pointing to the default image.
15 *
16 * @return image url
17 */
18 String getDefaultCellImageURL();
19
20 /**
21 * Sets an url string pointing to the default image.
22 *
23 * @param defaultCellImageURL
24 * image url
25 */
26 void setDefaultCellImageURL(String defaultCellImageURL);
27
28 /**
29 * Returns an url string pointing to the image.
30 *
31 * @return image url
32 */
33 String getCellImageURL();
34
35 /**
36 * Sets an url string pointing to the image.
37 *
38 * @param cellImageURL
39 * image url for the cell
40 */
41 void setCellImageURL(String cellImageURL);
42 }