summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java
diff options
context:
space:
mode:
authorrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2010-07-28 21:01:00 +0000
committerrfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68>2010-07-28 21:01:00 +0000
commite01dfb8674dfc78d9af6ac60f1352d3149e6889b (patch)
tree492408746f680b0734bff54fe86fdeeec5add2ae /sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java
parentc4712a7d3ec710b46f65999f5df9f0abeb7e9f61 (diff)
Format the code based on the Tuscany eclipse formatter
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@980211 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java')
-rw-r--r--sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java20
1 files changed, 10 insertions, 10 deletions
diff --git a/sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java b/sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java
index 9ae1273592..5674c26ba3 100644
--- a/sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java
+++ b/sca-java-2.x/trunk/modules/implementation-spring/src/main/java/org/apache/tuscany/sca/implementation/spring/SpringConstructorArgElement.java
@@ -28,8 +28,8 @@ import java.util.List;
* @version $Rev$ $Date$
*/
public class SpringConstructorArgElement {
-
- private String type;
+
+ private String type;
private int autoIndex = -1;
private int index = -1;
private List<String> refs = new ArrayList<String>();
@@ -38,35 +38,35 @@ public class SpringConstructorArgElement {
public SpringConstructorArgElement(String type) {
this.type = type;
}
-
+
public String getType() {
return this.type;
}
-
+
public List<String> getRefs() {
return this.refs;
}
-
+
public void addRef(String ref) {
this.refs.add(ref);
}
-
+
public int getIndex() {
return this.index;
}
-
+
public void setIndex(int index) {
this.index = index;
}
-
+
public int getAutoIndex() {
return this.autoIndex;
}
-
+
public void setAutoIndex(int index) {
this.autoIndex = index;
}
-
+
public List<String> getValues() {
return this.values;
}