|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
SetPropertyRule.java | 100% | 80% | 100% | 86.4% |
|
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.hivemind.schema.rules;
|
|
16 |
|
|
17 |
import org.apache.commons.logging.Log;
|
|
18 |
import org.apache.commons.logging.LogFactory;
|
|
19 |
import org.apache.hivemind.Element;
|
|
20 |
import org.apache.hivemind.ErrorHandler;
|
|
21 |
import org.apache.hivemind.schema.SchemaProcessor;
|
|
22 |
import org.apache.hivemind.schema.Translator;
|
|
23 |
import org.apache.hivemind.util.PropertyUtils;
|
|
24 |
|
|
25 |
/**
|
|
26 |
* Used to set a property of an object to a literal value.
|
|
27 |
*
|
|
28 |
* @author Howard Lewis Ship
|
|
29 |
*/
|
|
30 |
public class SetPropertyRule extends BaseRule |
|
31 |
{ |
|
32 |
private static final Log LOG = LogFactory.getLog(SetPropertyRule.class); |
|
33 |
|
|
34 |
private String _propertyName;
|
|
35 |
private String _value;
|
|
36 |
private Translator _smartTranslator;
|
|
37 |
|
|
38 | 362 |
public void begin(SchemaProcessor processor, Element element) |
39 |
{ |
|
40 | 362 |
String value = RuleUtils.processText(processor, element, _value); |
41 |
|
|
42 | 362 |
Object target = processor.peek(); |
43 |
|
|
44 | 362 |
try
|
45 |
{ |
|
46 | 362 |
if (_smartTranslator == null) |
47 | 130 |
_smartTranslator = RuleUtils.getTranslator(processor, "smart");
|
48 |
|
|
49 | 362 |
Class propertyType = PropertyUtils.getPropertyType(target, _propertyName); |
50 |
|
|
51 | 362 |
Object finalValue = |
52 |
_smartTranslator.translate( |
|
53 |
processor.getContributingModule(), |
|
54 |
propertyType, |
|
55 |
value, |
|
56 |
element.getLocation()); |
|
57 |
|
|
58 | 362 |
PropertyUtils.write(target, _propertyName, finalValue); |
59 |
} |
|
60 |
catch (Exception ex)
|
|
61 |
{ |
|
62 | 0 |
ErrorHandler eh = processor.getContributingModule().getErrorHandler(); |
63 |
|
|
64 | 0 |
String message = RulesMessages.unableToSetProperty(_propertyName, target, ex); |
65 |
|
|
66 | 0 |
eh.error(LOG, message, element.getLocation(), ex); |
67 |
} |
|
68 |
|
|
69 |
} |
|
70 |
|
|
71 | 1641 |
public void setPropertyName(String string) |
72 |
{ |
|
73 | 1641 |
_propertyName = string; |
74 |
} |
|
75 |
|
|
76 | 1641 |
public void setValue(String string) |
77 |
{ |
|
78 | 1641 |
_value = string; |
79 |
} |
|
80 |
|
|
81 | 7 |
public String getPropertyName()
|
82 |
{ |
|
83 | 7 |
return _propertyName;
|
84 |
} |
|
85 |
|
|
86 | 7 |
public String getValue()
|
87 |
{ |
|
88 | 7 |
return _value;
|
89 |
} |
|
90 |
|
|
91 |
} |
|
92 |
|
|