(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / ExternalProvidedInterfaceNode.java
index d4cef89afe73aee3e3f0d5784038a67a6dde5cf7..7f615ec9dcc8d2b2f432d820859d26996dfcc926 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.
@@ -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;
@@ -20,35 +20,40 @@ import org.wamblee.system.core.ProvidedInterface;
 import org.wamblee.system.graph.Node;
 
 /**
- * Represents an external provided interface of a container. 
+ * Represents an external provided interface of a container.
+ * 
  * @author Erik Brakkee
- *
  */
 public class ExternalProvidedInterfaceNode implements Node {
+    private Component component;
 
-    private Component component; 
-    private ProvidedInterface provided; 
-    
-    public ExternalProvidedInterfaceNode(Component aComponent, ProvidedInterface aProvided) {
-        component = aComponent; 
-        provided = aProvided; 
+    private ProvidedInterface provided;
+
+    /**
+     * Creates a new ExternalProvidedInterfaceNode object.
+     * 
+     */
+    public ExternalProvidedInterfaceNode(Component aComponent,
+        ProvidedInterface aProvided) {
+        component = aComponent;
+        provided = aProvided;
     }
-    
+
     @Override
     public String getName() {
-        return provided.getName(); 
+        return provided.getName();
     }
-    
+
     public Component getComponent() {
         return component;
     }
-    
+
     public ProvidedInterface getProvided() {
         return provided;
     }
-    
+
     @Override
     public String toString() {
-        return component.getQualifiedName() + ":" + provided; 
+        return component.getQualifiedName() + ":" + provided;
     }
 }