AccordionAdapter.java
01 /*
02  * Copyright 2008-2016 the original author or authors.
03  *
04  * Licensed under the Apache License, Version 2.0 (the "License");
05  * you may not use this file except in compliance with the License.
06  * You may obtain a copy of the License at
07  *
08  *     http://www.apache.org/licenses/LICENSE-2.0
09  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package griffon.pivot.support.adapters;
17 
18 import griffon.core.CallableWithArgs;
19 import org.apache.pivot.wtk.Component;
20 
21 /**
22  @author Andres Almiray
23  @since 2.0.0
24  */
25 public class AccordionAdapter implements GriffonPivotAdapter, org.apache.pivot.wtk.AccordionListener {
26     private CallableWithArgs<Void> panelsRemoved;
27     private CallableWithArgs<Void> panelInserted;
28     private CallableWithArgs<Void> headerDataRendererChanged;
29 
30     public CallableWithArgs<Void> getPanelsRemoved() {
31         return this.panelsRemoved;
32     }
33 
34     public CallableWithArgs<Void> getPanelInserted() {
35         return this.panelInserted;
36     }
37 
38     public CallableWithArgs<Void> getHeaderDataRendererChanged() {
39         return this.headerDataRendererChanged;
40     }
41 
42 
43     public void setPanelsRemoved(CallableWithArgs<Void> panelsRemoved) {
44         this.panelsRemoved = panelsRemoved;
45     }
46 
47     public void setPanelInserted(CallableWithArgs<Void> panelInserted) {
48         this.panelInserted = panelInserted;
49     }
50 
51     public void setHeaderDataRendererChanged(CallableWithArgs<Void> headerDataRendererChanged) {
52         this.headerDataRendererChanged = headerDataRendererChanged;
53     }
54 
55 
56     public void panelsRemoved(org.apache.pivot.wtk.Accordion arg0, int arg1, org.apache.pivot.collections.Sequence<Component> arg2) {
57         if (panelsRemoved != null) {
58             panelsRemoved.call(arg0, arg1, arg2);
59         }
60     }
61 
62     public void panelInserted(org.apache.pivot.wtk.Accordion arg0, int arg1) {
63         if (panelInserted != null) {
64             panelInserted.call(arg0, arg1);
65         }
66     }
67 
68     public void headerDataRendererChanged(org.apache.pivot.wtk.Accordion arg0, org.apache.pivot.wtk.Button.DataRenderer arg1) {
69         if (headerDataRendererChanged != null) {
70             headerDataRendererChanged.call(arg0, arg1);
71         }
72     }
73 
74 }