You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2008/03/13 11:13:31 UTC

svn commit: r636699 - in /incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest: PropertyComponent.java PropertyComponentImpl.java

Author: antelder
Date: Thu Mar 13 03:13:29 2008
New Revision: 636699

URL: http://svn.apache.org/viewvc?rev=636699&view=rev
Log:
Fix line end style, no code changes

Modified:
    incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponent.java
    incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponentImpl.java

Modified: incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponent.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponent.java?rev=636699&r1=636698&r2=636699&view=diff
==============================================================================
--- incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponent.java (original)
+++ incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponent.java Thu Mar 13 03:13:29 2008
@@ -1,113 +1,113 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.    
- */
-
-package org.apache.tuscany.sca.itest;
-
-import java.util.Collection;
-
-import commonj.sdo.DataObject;
-
-/**
- * It is an Interface which has method declarations. Methods which are to be accessed as a service are declared in this
- * interface. Implementation for these methods is provided in PropertyComponentImpl Class
- */
-public interface PropertyComponent {
-
-    /**
-     * This is a method to get a value for a property name 'location' from the sca runtime environment. It is
-     * implemented in the class PropertyComponentImpl
-     */
-    public String getLocation();
-
-    /**
-     * This is a method to get a value for a property name 'year' from the sca runtime environment. It is implemented in
-     * the class PropertyComponentImpl
-     */
-    public String getYear();
-
-    /**
-     * This method is used to test injecting a primitive String Array
-     * 
-     * @return The injected array
-     */
-    public String[] getDaysOfTheWeek();
-
-    /**
-     * This method is used to test injecting an Object Integer Array
-     * 
-     * @return The injected array
-     */
-    public Integer[] getIntegerNumbers();
-
-    /**
-     * This method is used to test injecting an int Array
-     * 
-     * @return The injected array
-     */
-    public int[] getIntNumbers();
-
-    /**
-     * This method is used to test injecting an Object Array
-     * 
-     * @return The injected array
-     */
-    public DataObject[] getSdoArrayProperty();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-
-    public ComplexPropertyBean getComplexPropertyOne();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-    public ComplexPropertyBean getComplexPropertyTwo();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-    public ComplexPropertyBean getComplexPropertyThree();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-    public Collection<ComplexPropertyBean> getComplexPropertyFour();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-    public DataObject getSdoProperty();
-
-    /**
-     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
-     * PropertyComponentImpl
-     */
-    public DataObject getCustomerSdo();
-    
-    /**
-     * @return
-     */
-    public String getLocationFromComponentContext();
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+
+package org.apache.tuscany.sca.itest;
+
+import java.util.Collection;
+
+import commonj.sdo.DataObject;
+
+/**
+ * It is an Interface which has method declarations. Methods which are to be accessed as a service are declared in this
+ * interface. Implementation for these methods is provided in PropertyComponentImpl Class
+ */
+public interface PropertyComponent {
+
+    /**
+     * This is a method to get a value for a property name 'location' from the sca runtime environment. It is
+     * implemented in the class PropertyComponentImpl
+     */
+    public String getLocation();
+
+    /**
+     * This is a method to get a value for a property name 'year' from the sca runtime environment. It is implemented in
+     * the class PropertyComponentImpl
+     */
+    public String getYear();
+
+    /**
+     * This method is used to test injecting a primitive String Array
+     * 
+     * @return The injected array
+     */
+    public String[] getDaysOfTheWeek();
+
+    /**
+     * This method is used to test injecting an Object Integer Array
+     * 
+     * @return The injected array
+     */
+    public Integer[] getIntegerNumbers();
+
+    /**
+     * This method is used to test injecting an int Array
+     * 
+     * @return The injected array
+     */
+    public int[] getIntNumbers();
+
+    /**
+     * This method is used to test injecting an Object Array
+     * 
+     * @return The injected array
+     */
+    public DataObject[] getSdoArrayProperty();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+
+    public ComplexPropertyBean getComplexPropertyOne();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+    public ComplexPropertyBean getComplexPropertyTwo();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+    public ComplexPropertyBean getComplexPropertyThree();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+    public Collection<ComplexPropertyBean> getComplexPropertyFour();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+    public DataObject getSdoProperty();
+
+    /**
+     * This is a method to get a property value from the sca runtime environment. It is implemented in the class
+     * PropertyComponentImpl
+     */
+    public DataObject getCustomerSdo();
+    
+    /**
+     * @return
+     */
+    public String getLocationFromComponentContext();
+}

Modified: incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponentImpl.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponentImpl.java?rev=636699&r1=636698&r2=636699&view=diff
==============================================================================
--- incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponentImpl.java (original)
+++ incubator/tuscany/java/sca/itest/properties/src/main/java/org/apache/tuscany/sca/itest/PropertyComponentImpl.java Thu Mar 13 03:13:29 2008
@@ -1,165 +1,165 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- * 
- *   http://www.apache.org/licenses/LICENSE-2.0
- * 
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied.  See the License for the
- * specific language governing permissions and limitations
- * under the License.    
- */
-
-package org.apache.tuscany.sca.itest;
-
-import java.util.Collection;
-
-import org.osoa.sca.ComponentContext;
-import org.osoa.sca.annotations.Context;
-import org.osoa.sca.annotations.Property;
-
-import com.example.customer.sdo.impl.CustomerImpl;
-import commonj.sdo.DataObject;
-
-/**
- * This class Implements the interface PropertyComponent and gives implementation for all methods which are declared in
- * that interface.
- */
-public class PropertyComponentImpl implements PropertyComponent {
-    @Context
-    protected ComponentContext context;
-    
-    @Property
-    protected CustomerImpl customerSdo;
-
-    @Property
-    protected DataObject sdoProperty;
-
-    @Property
-    protected ComplexPropertyBean complexPropertyOne;
-
-    @Property
-    protected ComplexPropertyBean complexPropertyTwo;
-
-    @Property
-    protected ComplexPropertyBean complexPropertyThree;
-
-    @Property
-    protected Collection<ComplexPropertyBean> complexPropertyFour;
-
-    @Property(name = "location")
-    protected String location;
-
-    @Property(name = "year")
-    protected String year;
-
-    @Property(name = "daysOfTheWeek")
-    protected String[] daysOfTheWeek;
-
-    @Property(name = "integerNumbers")
-    protected Integer[] integerNumbers;
-
-    @Property(name = "intNumbers")
-    protected int[] intNumbers;
-
-    @Property(name = "sdoArray")
-    protected DataObject[] sdoArray;
-
-    public String getLocation() {
-        return location;
-    }
-
-    public String getYear() {
-        return year;
-    }
-
-    public ComplexPropertyBean getComplexPropertyOne() {
-        //System.out.println(complexPropertyOne);
-        return complexPropertyOne;
-    }
-
-    public ComplexPropertyBean getComplexPropertyTwo() {
-        //System.out.println(complexPropertyTwo);
-        return complexPropertyTwo;
-    }
-
-    public ComplexPropertyBean getComplexPropertyThree() {
-        //System.out.println(complexPropertyThree);
-        return complexPropertyThree;
-    }
-
-    public Collection<ComplexPropertyBean> getComplexPropertyFour() {
-        //System.out.println(complexPropertyThree);
-        return complexPropertyFour;
-    }
-
-    public DataObject getSdoProperty() {
-        return sdoProperty;
-    }
-
-    /**
-     * It is a method which injects the property value to the variable 'sdoProperty' from the SCA runtime environment.
-     */
-    public void setSdoProperty(DataObject sdoProperty) {
-        System.out.println("Reached here da machi");
-        this.sdoProperty = sdoProperty;
-    }
-
-    public CustomerImpl getCustomerSdo() {
-        return customerSdo;
-    }
-
-    /**
-     * It is a method which injects the property value to the variable 'customerSdo' from the SCA runtime environment.
-     */
-    public void setCustomerSdo(CustomerImpl customerSdo) {
-        this.customerSdo = customerSdo;
-    }
-
-    /**
-     * This method is used to test injecting an Array
-     * 
-     * @return The injected array
-     */
-    public String[] getDaysOfTheWeek() {
-        return daysOfTheWeek;
-    }
-
-    /**
-     * This method is used to test injecting an Object Integer Array
-     * 
-     * @return The injected array
-     */
-    public Integer[] getIntegerNumbers() {
-        return integerNumbers;
-    }
-
-    /**
-     * This method is used to test injecting an int Array
-     * 
-     * @return The injected array
-     */
-    public int[] getIntNumbers() {
-        return intNumbers;
-    }
-
-    /**
-     * This method is used to test injecting an Object Array
-     * 
-     * @return The injected array
-     */
-    public DataObject[] getSdoArrayProperty() {
-        return sdoArray;
-    }
-    
-    public String getLocationFromComponentContext() {
-        return context.getProperty(String.class, "location");
-    }
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ * 
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.    
+ */
+
+package org.apache.tuscany.sca.itest;
+
+import java.util.Collection;
+
+import org.osoa.sca.ComponentContext;
+import org.osoa.sca.annotations.Context;
+import org.osoa.sca.annotations.Property;
+
+import com.example.customer.sdo.impl.CustomerImpl;
+import commonj.sdo.DataObject;
+
+/**
+ * This class Implements the interface PropertyComponent and gives implementation for all methods which are declared in
+ * that interface.
+ */
+public class PropertyComponentImpl implements PropertyComponent {
+    @Context
+    protected ComponentContext context;
+    
+    @Property
+    protected CustomerImpl customerSdo;
+
+    @Property
+    protected DataObject sdoProperty;
+
+    @Property
+    protected ComplexPropertyBean complexPropertyOne;
+
+    @Property
+    protected ComplexPropertyBean complexPropertyTwo;
+
+    @Property
+    protected ComplexPropertyBean complexPropertyThree;
+
+    @Property
+    protected Collection<ComplexPropertyBean> complexPropertyFour;
+
+    @Property(name = "location")
+    protected String location;
+
+    @Property(name = "year")
+    protected String year;
+
+    @Property(name = "daysOfTheWeek")
+    protected String[] daysOfTheWeek;
+
+    @Property(name = "integerNumbers")
+    protected Integer[] integerNumbers;
+
+    @Property(name = "intNumbers")
+    protected int[] intNumbers;
+
+    @Property(name = "sdoArray")
+    protected DataObject[] sdoArray;
+
+    public String getLocation() {
+        return location;
+    }
+
+    public String getYear() {
+        return year;
+    }
+
+    public ComplexPropertyBean getComplexPropertyOne() {
+        //System.out.println(complexPropertyOne);
+        return complexPropertyOne;
+    }
+
+    public ComplexPropertyBean getComplexPropertyTwo() {
+        //System.out.println(complexPropertyTwo);
+        return complexPropertyTwo;
+    }
+
+    public ComplexPropertyBean getComplexPropertyThree() {
+        //System.out.println(complexPropertyThree);
+        return complexPropertyThree;
+    }
+
+    public Collection<ComplexPropertyBean> getComplexPropertyFour() {
+        //System.out.println(complexPropertyThree);
+        return complexPropertyFour;
+    }
+
+    public DataObject getSdoProperty() {
+        return sdoProperty;
+    }
+
+    /**
+     * It is a method which injects the property value to the variable 'sdoProperty' from the SCA runtime environment.
+     */
+    public void setSdoProperty(DataObject sdoProperty) {
+        System.out.println("Reached here da machi");
+        this.sdoProperty = sdoProperty;
+    }
+
+    public CustomerImpl getCustomerSdo() {
+        return customerSdo;
+    }
+
+    /**
+     * It is a method which injects the property value to the variable 'customerSdo' from the SCA runtime environment.
+     */
+    public void setCustomerSdo(CustomerImpl customerSdo) {
+        this.customerSdo = customerSdo;
+    }
+
+    /**
+     * This method is used to test injecting an Array
+     * 
+     * @return The injected array
+     */
+    public String[] getDaysOfTheWeek() {
+        return daysOfTheWeek;
+    }
+
+    /**
+     * This method is used to test injecting an Object Integer Array
+     * 
+     * @return The injected array
+     */
+    public Integer[] getIntegerNumbers() {
+        return integerNumbers;
+    }
+
+    /**
+     * This method is used to test injecting an int Array
+     * 
+     * @return The injected array
+     */
+    public int[] getIntNumbers() {
+        return intNumbers;
+    }
+
+    /**
+     * This method is used to test injecting an Object Array
+     * 
+     * @return The injected array
+     */
+    public DataObject[] getSdoArrayProperty() {
+        return sdoArray;
+    }
+    
+    public String getLocationFromComponentContext() {
+        return context.getProperty(String.class, "location");
+    }
+}



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org