copyright messages updated in all java filees.
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / ProvidedInterfaceNode.java
index 206bdc9f846c7c139920e1d70f8ff38954b10d18..f4a4989e736313606e37ec4a3754756b2a772fc4 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2008 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.
@@ -20,34 +20,40 @@ import org.wamblee.system.core.ProvidedInterface;
 import org.wamblee.system.graph.Node;
 
 /**
- * Provided interface node. 
+ * Provided interface node.
+ * 
  * @author Erik Brakkee
  */
 public class ProvidedInterfaceNode implements Node {
-    
-    private Component component; 
+    private Component component;
+
     private ProvidedInterface provided;
-    
-    public ProvidedInterfaceNode(Component aComponent, ProvidedInterface aProvided) {
-        component = aComponent; 
-        provided = aProvided; 
+
+    /**
+     * Creates a new ProvidedInterfaceNode object.
+     * 
+     */
+    public ProvidedInterfaceNode(Component aComponent,
+        ProvidedInterface aProvided) {
+        component = aComponent;
+        provided = aProvided;
     }
 
     @Override
     public String getName() {
-        return component.getQualifiedName() + ":" + provided.getName(); 
+        return component.getQualifiedName() + ":" + provided.getName();
     }
 
     public ProvidedInterface getProvided() {
         return provided;
     }
-    
+
     public Component getComponent() {
         return component;
     }
-    
+
     @Override
     public String toString() {
-        return component.getQualifiedName() + ":" + provided; 
+        return component.getQualifiedName() + ":" + provided;
     }
 }