View Javadoc

1   /*
2    * $Id: ICellToolTipTextCapability.java,v 1.2 2007/04/30 08:28:57 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.2 $ $Date: 2007/04/30 08:28:57 $
10   */
11  public interface ICellToolTipTextCapability {
12  
13      /**
14       * Returns a string value containing the text that will appear when the
15       * pointer hover the component.
16       * 
17       * @return default tool tip text
18       */
19      String getCellDefaultToolTipText();
20  
21      /**
22       * Sets a string value containing the text that will appear when the pointer
23       * hover the component.
24       * 
25       * @param cellDefaultToolTipText
26       *            default tool tip text
27       */
28      void setCellDefaultToolTipText(String cellDefaultToolTipText);
29  
30      /**
31       * Returns a string value containing the text that will appear when the
32       * pointer hover the component.
33       * 
34       * @return tool tip text
35       */
36      String getCellToolTipText();
37  
38      /**
39       * Sets a string value containing the text that will appear when the pointer
40       * hover the component.
41       * 
42       * @param cellToolTipText
43       *            tool tip text
44       */
45      void setCellToolTipText(String cellToolTipText);
46  }