Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
AbstractBeanInitializer |
|
| 1.6666666666666667;1.667 |
1 | // Copyright 2004, 2005 The Apache Software Foundation | |
2 | // | |
3 | // Licensed under the Apache License, Version 2.0 (the "License"); | |
4 | // you may not use this file except in compliance with the License. | |
5 | // You may obtain a copy of the License at | |
6 | // | |
7 | // http://www.apache.org/licenses/LICENSE-2.0 | |
8 | // | |
9 | // Unless required by applicable law or agreed to in writing, software | |
10 | // distributed under the License is distributed on an "AS IS" BASIS, | |
11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 | // See the License for the specific language governing permissions and | |
13 | // limitations under the License. | |
14 | ||
15 | package org.apache.tapestry.bean; | |
16 | ||
17 | import org.apache.hivemind.ApplicationRuntimeException; | |
18 | import org.apache.hivemind.impl.BaseLocatable; | |
19 | import org.apache.hivemind.util.PropertyUtils; | |
20 | import org.apache.tapestry.Tapestry; | |
21 | ||
22 | /** | |
23 | * Base class for initializing a property of a JavaBean. | |
24 | * | |
25 | * @author Howard Lewis Ship | |
26 | * @since 1.0.5 | |
27 | */ | |
28 | ||
29 | 0 | public abstract class AbstractBeanInitializer extends BaseLocatable implements IBeanInitializer |
30 | { | |
31 | protected String _propertyName; | |
32 | ||
33 | public String getPropertyName() | |
34 | { | |
35 | 0 | return _propertyName; |
36 | } | |
37 | ||
38 | /** @since 3.0 * */ | |
39 | ||
40 | public void setPropertyName(String propertyName) | |
41 | { | |
42 | 0 | _propertyName = propertyName; |
43 | 0 | } |
44 | ||
45 | protected void setBeanProperty(Object bean, Object value) | |
46 | { | |
47 | try | |
48 | { | |
49 | 0 | PropertyUtils.write(bean, _propertyName, value); |
50 | } | |
51 | 0 | catch (ApplicationRuntimeException ex) |
52 | { | |
53 | 0 | String message = Tapestry.format( |
54 | "AbstractBeanInitializer.unable-to-set-property", | |
55 | _propertyName, | |
56 | bean, | |
57 | value); | |
58 | ||
59 | 0 | throw new ApplicationRuntimeException(message, getLocation(), ex); |
60 | 0 | } |
61 | ||
62 | 0 | } |
63 | } |