(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 31 Jul 2010 17:33:24 +0000 (17:33 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Sat, 31 Jul 2010 17:33:24 +0000 (17:33 +0000)
86 files changed:
system/general/src/main/java/org/wamblee/system/adapters/ClassAdapter.java
system/general/src/main/java/org/wamblee/system/adapters/ClassConfiguration.java
system/general/src/main/java/org/wamblee/system/adapters/DefaultContainer.java
system/general/src/main/java/org/wamblee/system/adapters/FixedValueProvider.java
system/general/src/main/java/org/wamblee/system/adapters/ObjectAdapter.java
system/general/src/main/java/org/wamblee/system/adapters/ObjectConfiguration.java
system/general/src/main/java/org/wamblee/system/adapters/ParameterValues.java
system/general/src/main/java/org/wamblee/system/adapters/RequiredInterfaceProvider.java
system/general/src/main/java/org/wamblee/system/adapters/SetterConfiguration.java
system/general/src/main/java/org/wamblee/system/adapters/ValueProvider.java
system/general/src/main/java/org/wamblee/system/components/ORMappingConfig.java
system/general/src/main/java/org/wamblee/system/components/PropertyComponent.java
system/general/src/main/java/org/wamblee/system/container/Container.java
system/general/src/main/java/org/wamblee/system/core/AbstractComponent.java
system/general/src/main/java/org/wamblee/system/core/Component.java
system/general/src/main/java/org/wamblee/system/core/DefaultProvidedInterface.java
system/general/src/main/java/org/wamblee/system/core/DefaultRequiredInterface.java
system/general/src/main/java/org/wamblee/system/core/NamedInterface.java
system/general/src/main/java/org/wamblee/system/core/ProvidedInterface.java
system/general/src/main/java/org/wamblee/system/core/ProvidedInterfaceImplementation.java
system/general/src/main/java/org/wamblee/system/core/RequiredInterface.java
system/general/src/main/java/org/wamblee/system/core/Scope.java
system/general/src/main/java/org/wamblee/system/core/SystemAssemblyException.java
system/general/src/main/java/org/wamblee/system/graph/CompositeEdgeFilter.java
system/general/src/main/java/org/wamblee/system/graph/DefaultEdge.java
system/general/src/main/java/org/wamblee/system/graph/DefaultNode.java
system/general/src/main/java/org/wamblee/system/graph/Edge.java
system/general/src/main/java/org/wamblee/system/graph/EdgeFactory.java
system/general/src/main/java/org/wamblee/system/graph/EdgeFilter.java
system/general/src/main/java/org/wamblee/system/graph/EdgeSelector.java
system/general/src/main/java/org/wamblee/system/graph/Graph.java
system/general/src/main/java/org/wamblee/system/graph/Node.java
system/general/src/main/java/org/wamblee/system/graph/Visitor.java
system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyProvidedVisitor.java
system/general/src/main/java/org/wamblee/system/graph/component/CheckExternallyRequiredVisitor.java
system/general/src/main/java/org/wamblee/system/graph/component/CheckRequiredProvidedMultiplicityVisitor.java
system/general/src/main/java/org/wamblee/system/graph/component/CheckStartupDependenciesVisitor.java
system/general/src/main/java/org/wamblee/system/graph/component/ComponentGraph.java
system/general/src/main/java/org/wamblee/system/graph/component/ComponentNode.java
system/general/src/main/java/org/wamblee/system/graph/component/ConnectExternalProvidedProvidedFilter.java
system/general/src/main/java/org/wamblee/system/graph/component/ConnectRequiredExternallyRequiredEdgeFilter.java
system/general/src/main/java/org/wamblee/system/graph/component/ExternalProvidedInterfaceNode.java
system/general/src/main/java/org/wamblee/system/graph/component/ExternalRequiredInterfaceNode.java
system/general/src/main/java/org/wamblee/system/graph/component/LinkVisitor.java
system/general/src/main/java/org/wamblee/system/graph/component/ProvidedInterfaceNode.java
system/general/src/main/java/org/wamblee/system/graph/component/RequiredInterfaceNode.java
system/general/src/main/java/org/wamblee/system/graph/component/RequiredProvidedEdgeFactory.java
system/general/src/main/java/org/wamblee/system/graph/component/package-info.java
system/general/src/main/java/org/wamblee/system/graph/package-info.java
system/general/src/test/java/org/wamblee/system/adapters/AdapterTestCase.java
system/general/src/test/java/org/wamblee/system/adapters/ClassAdapterTest.java
system/general/src/test/java/org/wamblee/system/adapters/ClassConfigurationTest.java
system/general/src/test/java/org/wamblee/system/adapters/ConstructorConfigurationTest.java
system/general/src/test/java/org/wamblee/system/adapters/DefaultContainerTest.java
system/general/src/test/java/org/wamblee/system/adapters/ObjectAdapterTest.java
system/general/src/test/java/org/wamblee/system/adapters/SetterConfigurationTest.java
system/general/src/test/java/org/wamblee/system/adapters/X1.java
system/general/src/test/java/org/wamblee/system/adapters/X10.java
system/general/src/test/java/org/wamblee/system/adapters/X11.java
system/general/src/test/java/org/wamblee/system/adapters/X2.java
system/general/src/test/java/org/wamblee/system/adapters/X3.java
system/general/src/test/java/org/wamblee/system/adapters/X4.java
system/general/src/test/java/org/wamblee/system/adapters/X5.java
system/general/src/test/java/org/wamblee/system/adapters/X6.java
system/general/src/test/java/org/wamblee/system/adapters/X7.java
system/general/src/test/java/org/wamblee/system/adapters/X8.java
system/general/src/test/java/org/wamblee/system/adapters/X9.java
system/general/src/test/java/org/wamblee/system/components/DatabaseComponent.java
system/general/src/test/java/org/wamblee/system/components/DatabaseComponentFactory.java
system/general/src/test/java/org/wamblee/system/container/Application.java
system/general/src/test/java/org/wamblee/system/container/ContainerTest.java
system/general/src/test/java/org/wamblee/system/core/AbstractComponentTest.java
system/general/src/test/java/org/wamblee/system/core/DefaultInterfaceDescriptorTest.java
system/general/src/test/java/org/wamblee/system/core/DefaultRequiredInterfaceTest.java
system/general/src/test/java/org/wamblee/system/core/DefaultScopeTest.java
system/general/src/test/java/org/wamblee/system/core/Environment.java
system/general/src/test/java/org/wamblee/system/core/IntegerComponent.java
system/general/src/test/java/org/wamblee/system/core/RequiredInterfaceComparator.java
system/general/src/test/java/org/wamblee/system/core/StringComponent.java
system/general/src/test/java/org/wamblee/system/graph/CompositeEdgeFilterTest.java
system/general/src/test/java/org/wamblee/system/graph/GraphTest.java
system/general/src/test/java/org/wamblee/system/graph/MyEdgeFactory.java
system/general/src/test/java/org/wamblee/system/graph/MyNode.java
system/general/src/test/java/org/wamblee/system/graph/component/ConnectExternalProvidedProvidedEdgeFilterTest.java
system/general/src/test/java/org/wamblee/system/graph/component/ConnectRequiredExternallyRequiredEdgeFilterTest.java
system/general/src/test/java/org/wamblee/system/graph/component/ConnectRequiredProvidedEdgeFilterTest.java

index 6bfa03f12efbe083d7834db6cd7ad0d01cc2dfa9..fbac6341ad5081e022f053a09c8beee11b2923fb 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.AbstractComponent;
index 31e09f9286aa2b31bcb0e44f6efcceedfc7f7189..7ed7d8250d43e0ceb2e80da73911afda30e30a20 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.DefaultProvidedInterface;
index a09507aee3afd549c39b1aa1fe6d2d313c9147dd..fb6e0e24e5c5c9705d603bc63955f790a5067af2 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.container.Container;
index 4cbe97b23496fef22c336a7453159938ce89c5b2..b1ea1cc5de479603f3cd8361e877284c0e193d5c 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.Scope;
index 19fd39b96846610a8357fec12cce9b244d5dcac7..3777b7da0361bd571b04066c4b7b4ef79bb1ba19 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.AbstractComponent;
index 51a902463424f24629713f0daefe9bd7c08bbaaf..52374b03934858185614656d09b8cd6516f3b168 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.RequiredInterface;
index 27ed495c72909c6f6f7213fb67f56f30b82bb93c..2f6f12de0c0f3d6da71f5512e54f44b138e28684 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.DefaultRequiredInterface;
index 1fd3462584dd37c5403d1350edb9b3d5c312a8cb..4f81c932ddff278ee0a1b40312940a6275c94500 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.RequiredInterface;
index 7c7adda30fb80d4a70bd6db98b6c011544460d94..18fde542b0050ede0ea92acbdde55093ccfc8cda 100644 (file)
@@ -215,7 +215,8 @@ public class SetterConfiguration {
 
             throw new IllegalArgumentException(
                 "Multiple setters found in class '" + clazz.getName() +
-                    " that accept type '" + aType.getName() + "': " + settersString);
+                    " that accept type '" + aType.getName() + "': " +
+                    settersString);
         }
 
         Method method = result.get(0);
index d8f802386671436e11ad139b8932553d6245565e..ace7564df24d586b0f44635f7d33771da1b1a174 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.Scope;
index 6aad44a11910837f1c5b416a251fcd357e4c2bd7..5575619bda14c8c13664aa5893fc398daf95e5a0 100644 (file)
@@ -12,7 +12,7 @@
  * 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.components;
 
 public class ORMappingConfig {
index f64c2f093f217838901fc7072d059c263ba6a67b..d5fbb43a3b25dbb7e61d99d48a9d111096f90ea6 100644 (file)
@@ -12,7 +12,7 @@
  * 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.components;
 
 import org.wamblee.io.InputResource;
index a7d19e6c761be637611d08e8edfc26d6ef95dfad..2baaa2021ab18be7c979ff5fbeee64c2c52577bc 100644 (file)
@@ -12,7 +12,7 @@
  * 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.container;
 
 import java.util.ArrayList;
@@ -42,7 +42,8 @@ import org.wamblee.system.graph.component.ConnectRequiredProvidedEdgeFilter;
  * @author Erik Brakkee
  */
 public class Container extends AbstractComponent<Scope> {
-    private static final Logger LOG = Logger.getLogger(Container.class.getName());
+    private static final Logger LOG = Logger.getLogger(Container.class
+        .getName());
 
     private List<Component> components;
 
@@ -367,8 +368,9 @@ public class Container extends AbstractComponent<Scope> {
             } catch (SystemAssemblyException e) {
                 throw e;
             } catch (RuntimeException e) {
-                LOG.log(Level.WARNING, getQualifiedName() + ": could not start '" +
-                    component.getQualifiedName() + "'", e);
+                LOG.log(Level.WARNING, getQualifiedName() +
+                    ": could not start '" + component.getQualifiedName() + "'",
+                    e);
                 stopAlreadyStartedComponents(started, aScope);
                 throw e;
             }
@@ -406,8 +408,10 @@ public class Container extends AbstractComponent<Scope> {
                 Component component = aStarted.get(i);
                 aStarted.get(i).stop(aScope.getRuntime(component));
             } catch (Throwable t) {
-                LOG.log(Level.WARNING, getQualifiedName() + ": error stopping " +
-                    aStarted.get(i).getQualifiedName(), t);
+                LOG
+                    .log(Level.WARNING, getQualifiedName() +
+                        ": error stopping " +
+                        aStarted.get(i).getQualifiedName(), t);
             }
         }
     }
index b986d40be865da3f44186f778193e298010278c2..aea2bd6b5cebd7e5bbf804d7044cc0ca2904764e 100644 (file)
@@ -12,7 +12,7 @@
  * 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 java.util.ArrayList;
@@ -26,7 +26,8 @@ import java.util.logging.Logger;
  * 
  */
 public abstract class AbstractComponent<Type> implements Component<Type> {
-    private static final Logger LOG = Logger.getLogger(AbstractComponent.class.getName());
+    private static final Logger LOG = Logger.getLogger(AbstractComponent.class
+        .getName());
 
     private ThreadLocal<List<ProvidedInterface>> remaining;
 
index e3a45b69c2837ec8bde1b29d76235492bc4d2d56..4ffeadf73b954bda01774b02839c87baea6a1c1c 100644 (file)
@@ -12,7 +12,7 @@
  * 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 java.util.List;
index b45a19dd1985747b70f6ccfd1034d85bff018456..1297d363b7337e23599424a5a0ba2b28983a62bc 100644 (file)
@@ -12,7 +12,7 @@
  * 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 java.util.ArrayList;
index b538a22a95188adfeb358b9b1b34219f283ab853..9810d79f2d6d43e133533367a34bb71715aabf2a 100644 (file)
@@ -12,7 +12,7 @@
  * 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.wamblee.reflection.ReflectionUtils;
index f71e004c6ac9ebadc653bf11b6cedb679e2c9528..4d400a5a54e055156ce3d068a0311342cc495064 100644 (file)
@@ -12,7 +12,7 @@
  * 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;
 
 /**
index b40011a51eeb2d24e6c40477ce70e625dfe06c48..be6aa6f0d96e90ececfe7cd81f6060928c4f3151 100644 (file)
  * 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;
 
-
 /**
  * Represents an interface provided by a component. Different component objects
  * should never share ProvidedInterface instances!
index 61c80c7aeacc17680d622c2acab655e368e9cbdb..f6a6485f8a556ff9e7637a436e11ddbf3fbb04ed 100644 (file)
@@ -12,7 +12,7 @@
  * 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;
 
 /**
index bd61469e40e2c40e0b2056c40e9618035d641f1b..76977d6cff20805c53ff507a869ed824b2e1238b 100644 (file)
@@ -12,7 +12,7 @@
  * 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;
 
 /**
index 25c52e4da166f0fd80cf3f856ffeadedc2729ff5..cc862e3e8b2807aa412ce99842b1089f6b8d3bf7 100644 (file)
@@ -12,7 +12,7 @@
  * 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 java.util.List;
index 054edf877c93b1be1538b7d277da1ae933563f37..78866a0240011c62c31142f38efe29add6d26d45 100644 (file)
@@ -12,7 +12,7 @@
  * 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;
 
 /**
index effec0c0a7bbd66e4e80080f78f085d93f4e529c..f74e5a3c21af10a37a880a3bf4724996fc6e26bf 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import java.util.ArrayList;
index 48fea5126f3a5fb01265ae17a330bd390de4c543..fd70f1f3047b73c9a4ee50ed7282457afa257a56 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index 86fda2675b5ded6d069683a3812368264a0967e4..98c106a17a03a2b086b9942e0658d9ada399252f 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index 1ea905d2552f06ef712e607ec891c10075d4f577..c84a6f1c7bf7e32e6b328ea83bbd7fb59bea449a 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index 6a76e8fce65217e0ced323646b74ccbb594fd1d8..b522d20524fc99f42a9c882dfcbd574a48495d49 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import java.util.List;
index d19977f8db1a76219ae9b4daa69aecb38b29a3c0..a88d0fc83fc41415c5a3346527df0524fa68bf80 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index b403c897aacbddc64ce024029bd0ba584e59ff8b..1dd083dca0850e69c54d29f63b46364eb4656e7c 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index d01bc4056e6bbf8d49dc1b8d497fa70aa26ccd5c..9078b92014438ab69ded3e1d67c7f8147f1450de 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import java.util.ArrayList;
index 754e8010ebdba1d66175e544902cd262557a6686..e576b826d14d4549a4ce8ba1fdc936f8912d35dd 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index 1db6ef131705d5c2047fedd17700595711a033ae..0489ca01e89cba99dd3bfa03ef54cc8ac5b1f59a 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 /**
index b68c6003238766adc5ae2c151b4c690155fb367c..0d2db6216dcf6113e0102f460005817af10cad1d 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.SystemAssemblyException;
index 15b5f9b118618909b89290007744e0f84f4f696c..67343161f66290f5b71384e65971c0131a968f13 100644 (file)
  * 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.graph.component;
 
-
 import org.wamblee.system.core.SystemAssemblyException;
 import org.wamblee.system.graph.Edge;
 import org.wamblee.system.graph.Graph;
@@ -32,7 +31,8 @@ import java.util.logging.Logger;
  * @author Erik Brakkee
  */
 public class CheckExternallyRequiredVisitor implements Visitor {
-    private static final Logger LOG = Logger.getLogger(CheckExternallyRequiredVisitor.class.getName());
+    private static final Logger LOG = Logger
+        .getLogger(CheckExternallyRequiredVisitor.class.getName());
 
     private Graph graph;
 
index fc8eaf27608dd4a218d0a6c842c7d83e7a87e619..ae14ead872ea65d6f662819a43afa0efbe12f4be 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.SystemAssemblyException;
index c865b8b7bc972b05493097b926a487c8af661ee1..dcc8498989b4ce784a43d70ed92ecfbb453c6752 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.SystemAssemblyException;
index 3032df0c7b4543cc0f7d8ba570adbc73e966c1bf..6333dec4f7bfc72fd4d75a7b8fd6d9f99a3c5b22 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.general.Pair;
index 3656d6b6ec401cbcb620b6f65edf253b6bc3df6a..0269690f9c8d4503340b4cc78201b8f758ca8536 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.Component;
index 7bd1756f282afee2f17a3cc3fa0a6a082649b928..92ba1d11dc691cc9d25a826b5ff16e345e14c489 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.graph.Edge;
index 04677473840b59e794ddfce2ffe18be2fceb1c6b..4428284ab170870ca02a31de4f2d0bc57d7a9995 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.graph.Edge;
index bc465cb7853ca3d07b7b266a686045c13d9344f9..7f615ec9dcc8d2b2f432d820859d26996dfcc926 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.Component;
index 1baf0559e935ccc72c90bbbfd586ee83b0619702..c33942a67ab78094c04327ef82d92078a4d3a6e9 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.Component;
index 79f021c5e34ef63638e0d8407625257d3ca758e5..4c24df4a338cfd6de7078321735fdeddd3e8b5a0 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.ProvidedInterface;
index f4a4989e736313606e37ec4a3754756b2a772fc4..ab5f7c6e0968fdd1aaacee4e70e9ac6299704a5f 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.Component;
index 454ebce2cc0bc87cc841f881cf2c78ffb1eedc36..6b3d8aac08a89c54a63acfac98e630e1ae3730a9 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.core.Component;
index 0af63d34361faa10713d5284ce0491d3395d047b..9c8c038ec0a86b08571a1533edbc11f723ea0590 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import org.wamblee.system.graph.DefaultEdge;
index d0651340dd0dc63ef1bfb2262a0a20fea836ad2b..6711cb6dd104f704e7200d447dcc383cfe137c85 100644 (file)
@@ -12,7 +12,6 @@
  * 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.graph.component;
 
-
index 7fe76541effc66b803044138acf9a3f111f8d37f..f73e48739a281282951496791ef817a14a301ae0 100644 (file)
@@ -12,6 +12,6 @@
  * 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.graph;
 
index 7ca8b96b2cad1ce176a5f41ab3811a0080e083bc..2b132f102b973344887b512d68fbaebb063fbc59 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import junit.framework.TestCase;
@@ -33,18 +33,18 @@ public class AdapterTestCase extends TestCase {
 
     private Scope scope;
 
-    protected Scope getScope() {  
-        return scope; 
+    protected Scope getScope() {
+        return scope;
     }
-    
+
     public static EventTracker<String> getEventTracker() {
         return EVENT_TRACKER;
     }
-    
-    private static void setEventTracker(EventTracker<String> aTracker) { 
+
+    private static void setEventTracker(EventTracker<String> aTracker) {
         EVENT_TRACKER = aTracker;
     }
-    
+
     @Override
     protected void setUp() throws Exception {
         super.setUp();
index 1a6f9b581447da3e769985d751a63bff7a695b42..e2c146cb752f6fa075ffbafa4233029ab19d6875 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.container.Container;
index 24a8bae8cd97f122c9e923186c3ff27322365e5c..6211d133e6c36d728171fae793c9cfb3b4c258e4 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import java.util.Collections;
index ee57526f3aa1db0c2a66ea3cb9f25a2bb3469697..3e5f5aa42dc685c4f040cd8062ef2494918a388b 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import java.util.List;
@@ -55,7 +55,7 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
         try {
             ConstructorConfiguration config = new ConstructorConfiguration(
                 X2.class).greedy();
-            ignoredVariable(config);        
+            ignoredVariable(config);
         } catch (SystemAssemblyException e) {
             // e.printStackTrace();
             return;
@@ -63,8 +63,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
 
         fail();
     }
-    
-    private static void ignoredVariable(Object aObject) { 
+
+    private static void ignoredVariable(Object aObject) {
         // for findbugs.
     }
 
@@ -95,9 +95,8 @@ public class ConstructorConfigurationTest extends AdapterTestCase {
         Scope scope = getScope();
         config.create(scope);
 
-        AssertionUtils.assertEquals(new String[] { "x1(bla)" },
-            AdapterTestCase.getEventTracker().getEvents(Thread.currentThread())
-                .toArray());
+        AssertionUtils.assertEquals(new String[] { "x1(bla)" }, AdapterTestCase
+            .getEventTracker().getEvents(Thread.currentThread()).toArray());
     }
 
     public void testOptionalValueProvided() {
index e405b565a554635dffab74f988cb28dfe5e0f2f4..a3709c9553a1262a572c79e55325e200357573a1 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.core.Scope;
@@ -66,8 +66,8 @@ public class DefaultContainerTest extends AdapterTestCase {
 
         Scope scope = container.start();
         AssertionUtils.assertEquals(new String[] { "x1(hello)", "x4(x1)",
-            "x8.setX4(x4)" }, getEventTracker().getEvents(Thread.currentThread())
-            .toArray());
+            "x8.setX4(x4)" }, getEventTracker().getEvents(
+            Thread.currentThread()).toArray());
 
         Object obj1 = scope.getRuntime("x1");
         assertTrue(obj1 instanceof X1);
index a0e477cf0734fb0f18b06a10f5f9e50aad6cc289..ea381ca9b32bd3c0c7291656b037d7163b17532f 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import org.wamblee.system.container.Container;
@@ -54,8 +54,8 @@ public class ObjectAdapterTest extends AdapterTestCase {
 
         Scope scope = container.start();
         AssertionUtils.assertEquals(new String[] { "x1(hello)", "x4(x1)",
-            "x8.setX4(x4)" }, getEventTracker().getEvents(Thread.currentThread())
-            .toArray());
+            "x8.setX4(x4)" }, getEventTracker().getEvents(
+            Thread.currentThread()).toArray());
 
         Object obj1 = scope.getRuntime(x1Adapter);
         assertTrue(obj1 instanceof X1);
index b9b2ac6c0540f0a909ca47153554db15223dabfd..b38b66c866d1a1c0d45cc8663a73d14d3ea1692e 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 import java.lang.reflect.Method;
index 622268347e4a39a6af5a74fad4a80b2cda42f3a9..4781519f22864655610bdc43aeb82dfe839f7b61 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 787c9968c5fe470a052a9ebfc1e7a1292e38bdf0..08a343a9ea844d3fd504af665bf85ec1184117ae 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index fa59d97a875f7b1c7038f76ed1ce79cdebd4bcf5..b6a9b56f4428dbd5b3501ecd78fea208b1c97e09 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 987a4ee0a8db84281b88a5d902731cc6a94f74fc..ea8747c3971e0cfa8e2a0cf9ec55ca471da32625 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 60f9e10e08f6e6d2d8b84b77b40cee9ea53ce09c..7c84caeaa663666f857822661ee6b7e9e5d340d8 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 25ab539454667216e8475b053c4d5ecf3bc027c7..113347329333c3cae76cf36b8cc54a95c81e4923 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 3efd316af8efb3e43f7c9bd611a197b01a1ba89a..4f243e5a694a6a9963f6a06f1da7ff50076fe950 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
@@ -32,8 +32,8 @@ public class X5 {
     }
 
     public void setValue(String aValue) {
-        AdapterTestCase.getEventTracker().eventOccurred("x5.setValue(" + aValue +
-            ")");
+        AdapterTestCase.getEventTracker().eventOccurred(
+            "x5.setValue(" + aValue + ")");
         value = aValue;
     }
 
index d21b856a6ba24db128cad633f62852d54aa1ef71..8999e21a70fa66f7482c9b32145bb8848328b9df 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 00d9d46c42caa43eee7bb1d7962e157be11654bc..7f10210ff37dd5f334b5dce5a3f0d17555821cb9 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index 5b507e1b4be522ed09115a7108917d8b9b420df2..cdc0e85a83569e5e01ff4e48b3009a0cc8dd594f 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index a63ca5db67576ee062235320dd0315fe7c7b7b2b..c83a33f134d23e5c16d672bfc7740bf36e6477bf 100644 (file)
@@ -12,7 +12,7 @@
  * 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.adapters;
 
 /**
index fc941724e9a2b215edd45313ba435f4032c3a79b..d2e21a229172b7a8401d595611d46d44853c964c 100644 (file)
@@ -12,7 +12,7 @@
  * 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.components;
 
 import java.util.Properties;
index a91ecb70b9b9c8ef960593d8be857e979c12d5be..d3a5ef33353179a991b3944de24443c74f668c0d 100644 (file)
@@ -12,7 +12,7 @@
  * 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.components;
 
 import org.wamblee.system.container.Container;
index 37f7964e72dfe51e6591c0e637656fadb2457c0b..b02f9357870e587b7557c578e5572adda003e48c 100644 (file)
@@ -12,7 +12,7 @@
  * 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.container;
 
 import org.wamblee.system.core.AbstractComponent;
index 01f8a35f7c93b7685a109e638878849a2eb48a56..cbd623e9e963e3ba050552615905da069b455685 100644 (file)
@@ -12,7 +12,7 @@
  * 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.container;
 
 import java.io.Serializable;
@@ -219,7 +219,7 @@ public class ContainerTest extends TestCase {
             Component<?> comp = new Application();
             Container system = new Container("top").addComponent(comp);
             Container system2 = new Container("top2").addComponent(comp);
-            
+
             ignoredVariable(system);
             ignoredVariable(system2);
         } catch (SystemAssemblyException e) {
@@ -228,8 +228,8 @@ public class ContainerTest extends TestCase {
 
         fail();
     }
-    
-    private static void ignoredVariable(Object aObject) { 
+
+    private static void ignoredVariable(Object aObject) {
         // for findbugs.
     }
 
index 8402b280963d126090039a355ab5de65822a2a81..3bc4f2339319c4ba3899dff89f21ff700ad072f4 100644 (file)
@@ -12,7 +12,7 @@
  * 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 junit.framework.TestCase;
index 4b868bffd0812d297b3c0b1e5536a122944b0d7b..d9b90578acefe8572d6c55bcb75a162834e982a1 100644 (file)
@@ -12,7 +12,7 @@
  * 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 junit.framework.TestCase;
index a29c2e7b933342e9158091e0499f4895cff2b773..4be843a05f34d83cf5b8d4923f0e2fec074f5701 100644 (file)
@@ -12,7 +12,7 @@
  * 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 junit.framework.TestCase;
index 5ad4dd588a10c0e38f8471d0f9f0ea0b376e28bf..6584c528721f7ce9eb402bd55c5b34ea4f8e58f1 100644 (file)
@@ -12,7 +12,7 @@
  * 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 junit.framework.TestCase;
index 901801bca0173a606dbb0c4b02b2ebd26fc73b71..62dd60fc874dd78c09d8694233801edc09d67ec2 100644 (file)
@@ -12,7 +12,7 @@
  * 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.wamblee.test.EventTracker;
index 20b5a625c1a857515a8628bbce3573db27e3873f..0c45c75ddb117796e72f1075bf15c1ad9d4d2317 100644 (file)
@@ -12,7 +12,7 @@
  * 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.wamblee.test.EventTracker;
index 79bd2c1a11ac37e3eb7f296393a29371d0bd248d..73d50a6cf42df402e7e7f8e16c2ca4fa529b1094 100644 (file)
@@ -12,7 +12,7 @@
  * 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 java.io.Serializable;
@@ -25,7 +25,7 @@ import java.util.Comparator;
  */
 public class RequiredInterfaceComparator implements
     Comparator<RequiredInterface>, Serializable {
-    
+
     private static final long serialVersionUID = 7631587103378238574L;
 
     @Override
index 46777c497f830fa55131059a34a0fbe409ea1faf..1fa2f3521188373f59f71d502510b1d279025521 100644 (file)
@@ -12,7 +12,7 @@
  * 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.wamblee.test.EventTracker;
index 3f16953126642eea043257b17e285c781bd7c115..042b8edfa677a0a4c59a9490b8a2946425e7d8f7 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import junit.framework.TestCase;
index 4fd75a55ebf1d585590b431175a23686a170ed42..23c18da9c659cae3a9b3eeaa314bb514fd0ffe6a 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import junit.framework.TestCase;
index fef2f058c1af3d34338f95bfc941d13f0eda3afe..a22625ea97216e2de873d0e39e52898f1bb612bf 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph;
 
 import java.util.ArrayList;
index b058896781a9d9474c1f03f9f1fa1cdaf62a3cdd..b47f47977e6473fe1c735f334ca76db632bd9d60 100644 (file)
@@ -48,7 +48,7 @@ public class MyNode extends DefaultNode {
         }
         return Arrays.equals(ports, ((MyNode) aObj).ports);
     }
-    
+
     @Override
     public int hashCode() {
         return super.hashCode();
index 1c5358fb8a1abb639bb196077cb174d99f6aedbc..2d9db01cdb972fb66ef118516e102199c58f8813 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import junit.framework.TestCase;
index bf92e0931e874b96f5e4db0a0b0734c7320ee862..dba77f642ae4569302ee3b595acbaeebec3cf6d1 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import junit.framework.TestCase;
index 90c318b04ccd6cdc92ef27f45e0157262c1a7d01..53621c91c63bbe40999e56e8e252aebe38625945 100644 (file)
@@ -12,7 +12,7 @@
  * 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.graph.component;
 
 import junit.framework.TestCase;
@@ -84,8 +84,8 @@ public class ConnectRequiredProvidedEdgeFilterTest extends TestCase {
             }
         }, IllegalArgumentException.class);
     }
-    
-    private static final void ignoredVariable(Object aObject) { 
+
+    private static final void ignoredVariable(Object aObject) {
         // for findbugs.
     }