1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.myfaces.tobago.component;
21
22 import javax.faces.component.UIColumn;
23 import javax.faces.context.FacesContext;
24 import org.apache.commons.lang.ArrayUtils;
25 import org.apache.commons.lang.StringUtils;
26 import org.apache.myfaces.tobago.internal.util.Deprecation;
27 import org.apache.myfaces.tobago.renderkit.MarginValues;
28 import org.apache.myfaces.tobago.renderkit.SpacingValues;
29 import org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer;
30 import javax.el.ELException;
31 import javax.faces.FacesException;
32 import java.util.ArrayList;
33 import java.util.List;
34 import javax.el.MethodExpression;
35 import javax.el.ValueExpression;
36
37
38
39
40
41
42 public class UIColumnEvent
43 extends UIColumn implements ColumnEvent {
44
45 public static final String COMPONENT_TYPE = "org.apache.myfaces.tobago.ColumnEvent";
46
47 public static final String COMPONENT_FAMILY = "";
48
49
50 enum PropertyKeys {
51 event,
52 }
53
54 public String getFamily() {
55 return COMPONENT_FAMILY;
56 }
57
58
59 public java.lang.String getEvent() {
60 return (java.lang.String) getStateHelper().eval(PropertyKeys.event);
61 }
62
63 public void setEvent(java.lang.String event) {
64 getStateHelper().put(PropertyKeys.event, event);
65 }
66
67
68
69 }