View Javadoc

1   /*
2    * $Id: IAdditionalInformationComponent.java,v 1.2 2007/07/19 12:12:04 oeuillot Exp $
3    */
4   package org.rcfaces.core.internal.capability;
5   
6   import org.rcfaces.core.component.iterator.IAdditionalInformationIterator;
7   
8   /**
9    * 
10   * @author Olivier Oeuillot (latest modification by $Author: oeuillot $)
11   * @version $Revision: 1.2 $ $Date: 2007/07/19 12:12:04 $
12   */
13  public interface IAdditionalInformationComponent {
14      /**
15       * 
16       */
17      void showAdditionalInformation(Object rowValue);
18  
19      /**
20       * Show all additional informations.
21       */
22      void showAllAdditionalInformations();
23  
24      /**
25       * 
26       */
27      void hideAdditionalInformation(Object rowValue);
28  
29      /**
30       * Hide all shown additional informations.
31       */
32      void hideAllAdditionalInformations();
33  
34      IAdditionalInformationIterator listAdditionalInformations();
35  }