View Javadoc

1   /*
2    * $Id: ISeverityImagesCapability.java,v 1.4 2007/05/24 12:26:17 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.4 $ $Date: 2007/05/24 12:26:17 $
10   */
11  public interface ISeverityImagesCapability extends IImageCapability {
12  
13      /**
14       * Returns an url string pointing to the image used for an info message.
15       * 
16       * @return url
17       */
18      String getInfoImageURL();
19  
20      /**
21       * Sets an url string pointing to the image used for an info message.
22       * 
23       * @param infoImageURL
24       *            url
25       */
26      void setInfoImageURL(String infoImageURL);
27  
28      /**
29       * Returns an url string pointing to the image used for an error message.
30       * 
31       * @return url
32       */
33      String getErrorImageURL();
34  
35      /**
36       * Sets an url string pointing to the image used for an error message.
37       * 
38       * @param errorImageURL
39       *            url
40       */
41      void setErrorImageURL(String errorImageURL);
42  
43      /**
44       * Returns an url string pointing to the image used for an warning message.
45       * 
46       * @return url
47       */
48      String getWarnImageURL();
49  
50      /**
51       * Sets an url string pointing to the image used for an warning message.
52       * 
53       * @param warnImageURL
54       *            url
55       */
56      void setWarnImageURL(String warnImageURL);
57  
58      /**
59       * Returns an url string pointing to the image used for an fatal message.
60       * 
61       * @return url
62       */
63      String getFatalImageURL();
64  
65      /**
66       * Sets an url string pointing to the image used for an fatal message.
67       * 
68       * @param fatalImageURL
69       *            url
70       */
71      void setFatalImageURL(String fatalImageURL);
72  }