1 /*
2 * $Id: IExpandImageCapability.java,v 1.3 2007/05/24 12:26:17 oeuillot Exp $
3 */
4 package org.rcfaces.core.component.capability;
5
6 /**
7 * An url string pointing to an image used for the expanded state.
8 *
9 * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
10 * @version $Revision: 1.3 $ $Date: 2007/05/24 12:26:17 $
11 */
12 public interface IExpandImageCapability extends IStatesImageCapability {
13
14 /**
15 * Returns the url string pointing to an image used for the expanded state.
16 *
17 * @return url
18 */
19 String getExpandedImageURL();
20
21 /**
22 * Sets the url string pointing to an image used for the expanded state.
23 *
24 * @param url
25 * url for image
26 */
27 void setExpandedImageURL(String url);
28
29 }