summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java
diff options
context:
space:
mode:
authorramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2009-01-28 10:45:52 +0000
committerramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2009-01-28 10:45:52 +0000
commit107201a98e9cd4ef8ebf7e785d5d3d8e7792d187 (patch)
tree2c15295ccdbc2698e339946697dd3f42949e2697 /branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java
parentab830bb318a95f46748f45afcc5706c15f1f9f3c (diff)
Fixes for TUSCANY-2771
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738433 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java')
-rw-r--r--branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java b/branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java
index 39e1286f32..c60fdb86a9 100644
--- a/branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java
+++ b/branches/sca-java-1.x/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/xml/SpringPropertyElement.java
@@ -50,12 +50,12 @@ public class SpringPropertyElement {
this.ref = ref;
}
- public List<String> getProperties() {
- return values;
+ public List<String> getValues() {
+ return this.values;
}
- public void addProperty(String value) {
- values.add(value);
+ public void addValue(String value) {
+ this.values.add(value);
}
} // end class SpringPropertyElement