copyright messages updated in all java filees.
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / ExternalProvidedInterfaceNode.java
index 388012709538d607b99c8fb9e4702e55fb21a439..bc465cb7853ca3d07b7b266a686045c13d9344f9 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.
  */ 
 package org.wamblee.system.graph.component;
 
+import org.wamblee.system.core.Component;
 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 ProvidedInterface provided;
 
-    private ProvidedInterface _provided; 
-    
-    public ExternalProvidedInterfaceNode(ProvidedInterface aProvided) { 
-        _provided = aProvided; 
+    /**
+     * 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;
+        return provided;
+    }
+
+    @Override
+    public String toString() {
+        return component.getQualifiedName() + ":" + provided;
     }
 }