|
1 |
| |
|
2 |
| |
|
3 |
| |
|
4 |
| |
|
5 |
| |
|
6 |
| |
|
7 |
| |
|
8 |
| |
|
9 |
| |
|
10 |
| |
|
11 |
| |
|
12 |
| |
|
13 |
| |
|
14 |
| |
|
15 |
| package org.apache.tapestry.enhance; |
|
16 |
| |
|
17 |
| import org.apache.hivemind.ErrorLog; |
|
18 |
| import org.apache.hivemind.util.Defense; |
|
19 |
| import org.apache.tapestry.spec.IComponentSpecification; |
|
20 |
| |
|
21 |
| |
|
22 |
| |
|
23 |
| |
|
24 |
| |
|
25 |
| |
|
26 |
| |
|
27 |
| |
|
28 |
| public class InjectSpecificationWorker implements EnhancementWorker |
|
29 |
| { |
|
30 |
| public static final String SPECIFICATION_PROPERTY_NAME = "specification"; |
|
31 |
| |
|
32 |
| private ErrorLog _errorLog; |
|
33 |
| |
|
34 |
1227
| public void performEnhancement(EnhancementOperation op, IComponentSpecification spec)
|
|
35 |
| { |
|
36 |
1227
| try
|
|
37 |
| { |
|
38 |
1227
| injectSpecification(op, spec);
|
|
39 |
| } |
|
40 |
| catch (Exception ex) |
|
41 |
| { |
|
42 |
3
| _errorLog.error(EnhanceMessages.errorAddingProperty(SPECIFICATION_PROPERTY_NAME, op
|
|
43 |
| .getBaseClass(), ex), spec.getLocation(), ex); |
|
44 |
| } |
|
45 |
| } |
|
46 |
| |
|
47 |
1227
| public void injectSpecification(EnhancementOperation op, IComponentSpecification spec)
|
|
48 |
| { |
|
49 |
1227
| Defense.notNull(op, "op");
|
|
50 |
1227
| Defense.notNull(spec, "spec");
|
|
51 |
| |
|
52 |
1227
| op.claimReadonlyProperty(SPECIFICATION_PROPERTY_NAME);
|
|
53 |
| |
|
54 |
1224
| String fieldName = op.addInjectedField(
|
|
55 |
| "_$" + SPECIFICATION_PROPERTY_NAME, |
|
56 |
| IComponentSpecification.class, |
|
57 |
| spec); |
|
58 |
| |
|
59 |
1224
| EnhanceUtils.createSimpleAccessor(
|
|
60 |
| op, |
|
61 |
| fieldName, |
|
62 |
| SPECIFICATION_PROPERTY_NAME, |
|
63 |
| IComponentSpecification.class, |
|
64 |
| spec.getLocation()); |
|
65 |
| } |
|
66 |
| |
|
67 |
120
| public void setErrorLog(ErrorLog errorLog)
|
|
68 |
| { |
|
69 |
120
| _errorLog = errorLog;
|
|
70 |
| } |
|
71 |
| } |