|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| package org.apache.tapestry.pageload; |
|
16 |
| |
|
17 |
| import java.util.Iterator; |
|
18 |
| |
|
19 |
| import org.apache.hivemind.ApplicationRuntimeException; |
|
20 |
| import org.apache.tapestry.IComponent; |
|
21 |
| import org.apache.tapestry.spec.IComponentSpecification; |
|
22 |
| import org.apache.tapestry.spec.IParameterSpecification; |
|
23 |
| |
|
24 |
| |
|
25 |
| |
|
26 |
| |
|
27 |
| |
|
28 |
| |
|
29 |
| |
|
30 |
| |
|
31 |
| public class VerifyRequiredParametersVisitor implements IComponentVisitor |
|
32 |
| { |
|
33 |
| |
|
34 |
| |
|
35 |
| |
|
36 |
2940
| public void visitComponent(IComponent component)
|
|
37 |
| { |
|
38 |
2940
| IComponentSpecification spec = component.getSpecification();
|
|
39 |
| |
|
40 |
2940
| Iterator i = spec.getRequiredParameters().iterator();
|
|
41 |
| |
|
42 |
2940
| while (i.hasNext())
|
|
43 |
| { |
|
44 |
1584
| IParameterSpecification parameterSpec = (IParameterSpecification) i.next();
|
|
45 |
| |
|
46 |
1584
| String name = parameterSpec.getParameterName();
|
|
47 |
| |
|
48 |
1584
| if (component.getBinding(name) == null)
|
|
49 |
3
| throw new ApplicationRuntimeException(PageloadMessages.requiredParameterNotBound(
|
|
50 |
| name, |
|
51 |
| component), component, component.getLocation(), null); |
|
52 |
| } |
|
53 |
| } |
|
54 |
| |
|
55 |
| } |