1 | |
|
2 | |
|
3 | |
|
4 | |
package org.apache.tiles.freemarker.template; |
5 | |
|
6 | |
|
7 | |
|
8 | |
public class TilesFMModelRepository { |
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
private PutListAttributeFMModel putListAttribute; |
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
private InsertAttributeFMModel insertAttribute; |
19 | |
|
20 | |
|
21 | |
|
22 | |
|
23 | |
private AddAttributeFMModel addAttribute; |
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
private InsertDefinitionFMModel insertDefinition; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
private DefinitionFMModel definition; |
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
private InsertTemplateFMModel insertTemplate; |
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
private GetAsStringFMModel getAsString; |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
private ImportAttributeFMModel importAttribute; |
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
private PutAttributeFMModel putAttribute; |
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
private SetCurrentContainerFMModel setCurrentContainer; |
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
private AddListAttributeFMModel addListAttribute; |
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | 1 | public TilesFMModelRepository() { |
69 | 1 | putListAttribute = new PutListAttributeFMModel(new org.apache.tiles.template.PutListAttributeModel()); |
70 | 1 | insertAttribute = new InsertAttributeFMModel(new org.apache.tiles.template.InsertAttributeModel()); |
71 | 1 | addAttribute = new AddAttributeFMModel(new org.apache.tiles.template.AddAttributeModel()); |
72 | 1 | insertDefinition = new InsertDefinitionFMModel(new org.apache.tiles.template.InsertDefinitionModel()); |
73 | 1 | definition = new DefinitionFMModel(new org.apache.tiles.template.DefinitionModel()); |
74 | 1 | insertTemplate = new InsertTemplateFMModel(new org.apache.tiles.template.InsertTemplateModel()); |
75 | 1 | getAsString = new GetAsStringFMModel(new org.apache.tiles.template.GetAsStringModel()); |
76 | 1 | importAttribute = new ImportAttributeFMModel(new org.apache.tiles.template.ImportAttributeModel()); |
77 | 1 | putAttribute = new PutAttributeFMModel(new org.apache.tiles.template.PutAttributeModel()); |
78 | 1 | setCurrentContainer = new SetCurrentContainerFMModel(new org.apache.tiles.template.SetCurrentContainerModel()); |
79 | 1 | addListAttribute = new AddListAttributeFMModel(new org.apache.tiles.template.AddListAttributeModel()); |
80 | 1 | } |
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
public PutListAttributeFMModel getPutListAttribute() { |
88 | 0 | return putListAttribute; |
89 | |
} |
90 | |
|
91 | |
|
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
public InsertAttributeFMModel getInsertAttribute() { |
97 | 0 | return insertAttribute; |
98 | |
} |
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
public AddAttributeFMModel getAddAttribute() { |
106 | 0 | return addAttribute; |
107 | |
} |
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
public InsertDefinitionFMModel getInsertDefinition() { |
115 | 0 | return insertDefinition; |
116 | |
} |
117 | |
|
118 | |
|
119 | |
|
120 | |
|
121 | |
|
122 | |
|
123 | |
public DefinitionFMModel getDefinition() { |
124 | 0 | return definition; |
125 | |
} |
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | |
public InsertTemplateFMModel getInsertTemplate() { |
133 | 0 | return insertTemplate; |
134 | |
} |
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
public GetAsStringFMModel getGetAsString() { |
142 | 0 | return getAsString; |
143 | |
} |
144 | |
|
145 | |
|
146 | |
|
147 | |
|
148 | |
|
149 | |
|
150 | |
public ImportAttributeFMModel getImportAttribute() { |
151 | 0 | return importAttribute; |
152 | |
} |
153 | |
|
154 | |
|
155 | |
|
156 | |
|
157 | |
|
158 | |
|
159 | |
public PutAttributeFMModel getPutAttribute() { |
160 | 0 | return putAttribute; |
161 | |
} |
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
|
168 | |
public SetCurrentContainerFMModel getSetCurrentContainer() { |
169 | 0 | return setCurrentContainer; |
170 | |
} |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
public AddListAttributeFMModel getAddListAttribute() { |
178 | 0 | return addListAttribute; |
179 | |
} |
180 | |
} |