(no commit message)
[utils] / system / general / src / main / java / org / wamblee / system / graph / component / ProvidedInterfaceNode.java
index 2fb2c0f7ec5280d62eb90231aaada36fb61e1fc3..ab5f7c6e0968fdd1aaacee4e70e9ac6299704a5f 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,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 ProvidedInterface _provided;
-    
-    public ProvidedInterfaceNode(Component aComponent, ProvidedInterface aProvided) {
-        _component = aComponent; 
-        _provided = aProvided; 
+    private Component component;
+
+    private ProvidedInterface provided;
+
+    /**
+     * 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;
+        return provided;
     }
-    
+
     public Component getComponent() {
-        return _component;
+        return component;
     }
-    
+
     @Override
     public String toString() {
-        return _component.getQualifiedName() + ":" + _provided; 
+        return component.getQualifiedName() + ":" + provided;
     }
 }