|
|||||||||||||||||||
30 day Evaluation License registered to hlship@comcast.net Your 30 day evaluation period has expired. Please visit http://www.cenqua.com to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
AbstractBeanInitializer.java | - | 66.7% | 100% | 77.8% |
|
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 | abstract public class AbstractBeanInitializer extends BaseLocatable implements IBeanInitializer | |
30 | { | |
31 | protected String _propertyName; | |
32 | ||
33 | 4 | public String getPropertyName() |
34 | { | |
35 | 4 | return _propertyName; |
36 | } | |
37 | ||
38 | /** @since 3.0 * */ | |
39 | ||
40 | 9 | public void setPropertyName(String propertyName) |
41 | { | |
42 | 9 | _propertyName = propertyName; |
43 | } | |
44 | ||
45 | 3 | protected void setBeanProperty(Object bean, Object value) |
46 | { | |
47 | 3 | try |
48 | { | |
49 | 3 | PropertyUtils.write(bean, _propertyName, value); |
50 | } | |
51 | 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 | } | |
61 | ||
62 | } | |
63 | } |
|