code style improvements.
[utils] / system / general / src / main / java / org / wamblee / system / core / AbstractComponent.java
index 7c4c75da27b1fbc26e28326fd017ab4dc818cb3e..c7145cdf20fb37fb02ba472221faf00c0f1f437f 100644 (file)
@@ -1,18 +1,18 @@
 /*
- * Copyright 2007 the original author or authors.
- *
+ * Copyright 2005-2010 the original author or authors.
+ * 
  * Licensed 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.wamblee.system.core;
 
 import org.apache.commons.logging.Log;
@@ -155,14 +155,14 @@ public abstract class AbstractComponent<Type> implements Component<Type> {
 
     private void checkNotStartedInterfaces() {
         if (remaining.get().size() > 0) {
-            String notProvided = "";
+            StringBuffer notProvided = new StringBuffer();
 
-            for (ProvidedInterface provided : remaining.get()) {
-                notProvided += ("\nComponent " + getQualifiedName() +
-                    " did not start interface " + provided);
+            for (ProvidedInterface providedIntf : remaining.get()) {
+                notProvided.append("\nComponent " + getQualifiedName() +
+                    " did not start interface " + providedIntf);
             }
 
-            throw new SystemAssemblyException(notProvided);
+            throw new SystemAssemblyException(notProvided.toString());
         }
     }
 
@@ -218,9 +218,9 @@ public abstract class AbstractComponent<Type> implements Component<Type> {
     }
 
     public ProvidedInterface findProvidedInterface(String aName) {
-        for (ProvidedInterface provided : getProvidedInterfaces()) {
-            if (provided.getName().equals(aName)) {
-                return provided;
+        for (ProvidedInterface providedIntf : getProvidedInterfaces()) {
+            if (providedIntf.getName().equals(aName)) {
+                return providedIntf;
             }
         }
 
@@ -228,9 +228,9 @@ public abstract class AbstractComponent<Type> implements Component<Type> {
     }
 
     public RequiredInterface findRequiredInterface(String aName) {
-        for (RequiredInterface required : getRequiredInterfaces()) {
-            if (required.getName().equals(aName)) {
-                return required;
+        for (RequiredInterface requiredIntf : getRequiredInterfaces()) {
+            if (requiredIntf.getName().equals(aName)) {
+                return requiredIntf;
             }
         }