1
2
3
4 package org.rcfaces.core.internal.capability;
5
6 import org.rcfaces.core.component.iterator.IAdditionalInformationIterator;
7
8
9
10
11
12
13 public interface IAdditionalInformationComponent {
14
15
16
17 void showAdditionalInformation(Object rowValue);
18
19
20
21
22 void showAllAdditionalInformations();
23
24
25
26
27 void hideAdditionalInformation(Object rowValue);
28
29
30
31
32 void hideAllAdditionalInformations();
33
34 IAdditionalInformationIterator listAdditionalInformations();
35 }