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.internal.taglib.declaration;
21
22 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
23 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
24
25 public interface HasMargins {
26
27
28
29
30 @TagAttribute
31 @UIComponentTagAttribute(
32 type = "org.apache.myfaces.tobago.layout.Measure",
33 defaultCode = "getMargin() != null\n"
34 + " ? getMargin()\n"
35 + " : ((MarginValues)getRenderer(getFacesContext())).getMarginLeft(getFacesContext(), this)")
36 void setMarginLeft(String margin);
37
38
39
40
41 @TagAttribute
42 @UIComponentTagAttribute(
43 type = "org.apache.myfaces.tobago.layout.Measure",
44 defaultCode = "getMargin() != null\n"
45 + " ? getMargin()\n"
46 + " : ((MarginValues)getRenderer(getFacesContext())).getMarginRight(getFacesContext(), this)")
47 void setMarginRight(String margin);
48
49
50
51
52 @TagAttribute
53 @UIComponentTagAttribute(
54 type = "org.apache.myfaces.tobago.layout.Measure",
55 defaultCode = "getMargin() != null\n"
56 + " ? getMargin()\n"
57 + " : ((MarginValues)getRenderer(getFacesContext())).getMarginTop(getFacesContext(), this)")
58 void setMarginTop(String margin);
59
60
61
62
63 @TagAttribute
64 @UIComponentTagAttribute(
65 type = "org.apache.myfaces.tobago.layout.Measure",
66 defaultCode = "getMargin() != null\n"
67 + " ? getMargin()\n"
68 + " : ((MarginValues)getRenderer(getFacesContext())).getMarginBottom(getFacesContext(), this)")
69 void setMarginBottom(String margin);
70
71 }