1 package fr.ifremer.reefdb.ui.swing.content.manage.filter.location.element;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 import fr.ifremer.quadrige3.ui.swing.ApplicationUI;
28 import fr.ifremer.reefdb.dto.referential.LocationDTO;
29 import fr.ifremer.reefdb.ui.swing.content.manage.filter.element.FilterElementUI;
30 import java.awt.LayoutManager;
31 import jaxx.runtime.JAXXContext;
32 import jaxx.runtime.JAXXObjectDescriptor;
33 import jaxx.runtime.JAXXUtil;
34 import org.apache.commons.logging.Log;
35 import org.apache.commons.logging.LogFactory;
36
37 public class FilterElementLocationUI extends FilterElementUI<LocationDTO> {
38
39
40
41
42
43 private static final String $jaxxObjectDescriptor = "H4sIAAAAAAAAAI1Ry0rDQBS9DVZBEUFBCiL42E8+oCupFipBQSlUspomN3VKMhlnbjRuxE/wE3Tv0p3f4c5fEPEHxEnTpwo6u7lnzplzz3l8g6rRsN3nec50JkkkyA73Op3jbh8D2kcTaKEo1VCeigOOD0vheG4Idn2voLtDuttIE5VKlFPsugeLhq5jNOeIRLA5ywiMcU/HcD1XmR6pjk39pnr/8e7chbcPDkCuCnd2la2/WJNN5jxwREiwan+65G7MZc/a0EL2rN/lYtaIuTFHPMELuIEFD+YV11aMYOf/Kw80BvxcEaxEIibUBzEm9nm7RXAWaSYibe+aacQo7LJMMHNlbbAglWSfsYRL3kNWclmcBpxEKhmWKqw5rekN0XZLKZvHxkweNmk2SXoSRcWHqs7smKDm/yznxEJlLbVvtRSCA/Rzfe3l+fWpOeoCvgDfgsIPWwIAAA==";
44 private static final Log log = LogFactory.getLog(FilterElementLocationUI.class);
45 private static final long serialVersionUID = 1L;
46
47
48
49
50
51 private boolean allComponentsCreated;
52
53
54
55
56
57 protected FilterElementLocationUI filterElementUI = this;
58 protected final FilterElementLocationUIHandler handler = createHandler();
59
60
61
62
63
64 public FilterElementLocationUI(ApplicationUI param0) {
65 super(param0);
66 $initialize();
67 }
68
69 public FilterElementLocationUI(LayoutManager param0, boolean param1) {
70 super(param0 ,param1);
71 $initialize();
72 }
73
74 public FilterElementLocationUI(JAXXContext param0, LayoutManager param1, boolean param2) {
75 super(param0 ,param1 ,param2);
76 $initialize();
77 }
78
79 public FilterElementLocationUI(boolean param0) {
80 super(param0);
81 $initialize();
82 }
83
84 public FilterElementLocationUI(JAXXContext param0, boolean param1) {
85 super(param0 ,param1);
86 $initialize();
87 }
88
89 public FilterElementLocationUI() {
90 $initialize();
91 }
92
93 public FilterElementLocationUI(JAXXContext param0) {
94 super(param0);
95 $initialize();
96 }
97
98 public FilterElementLocationUI(LayoutManager param0) {
99 super(param0);
100 $initialize();
101 }
102
103 public FilterElementLocationUI(JAXXContext param0, LayoutManager param1) {
104 super(param0 ,param1);
105 $initialize();
106 }
107
108
109
110
111
112 public static JAXXObjectDescriptor $getJAXXObjectDescriptor() {
113 return JAXXUtil.decodeCompressedJAXXObjectDescriptor($jaxxObjectDescriptor);
114 }
115
116
117
118
119
120 public FilterElementLocationUIHandler getHandler() {
121 return handler;
122 }
123
124
125
126
127
128 protected FilterElementLocationUIHandler createHandler() {
129 return new FilterElementLocationUIHandler();
130 }
131
132
133
134
135
136 private void $completeSetup() {
137 allComponentsCreated = true;
138 if (log.isDebugEnabled()) {
139 log.debug(this);
140 }
141 }
142
143 private void $initialize() {
144 if (allComponentsCreated) {
145 return;
146 }
147 if (log.isDebugEnabled()) {
148 log.debug(this);
149 }
150 handler.beforeInit(this);
151 $objectMap.put("filterElementUI", filterElementUI);
152
153 setName("filterElementUI");
154
155 $completeSetup();
156 handler.afterInit(this);
157 }
158
159 }