git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/graph2/trunk@144595 13f79535-47bb-0310-9956-ffa450edef68
31 lines
521 B
Java
31 lines
521 B
Java
package org.apache.commons.graph.dependency;
|
|
|
|
import org.apache.commons.graph.*;
|
|
|
|
/**
|
|
* Description of the Class
|
|
*/
|
|
public class DependencyVertex
|
|
implements Vertex
|
|
{
|
|
private Object value;
|
|
|
|
/**
|
|
* Constructor for the DependencyVertex object
|
|
*
|
|
* @param value
|
|
*/
|
|
public DependencyVertex(Object value)
|
|
{
|
|
this.value = value;
|
|
}
|
|
|
|
/**
|
|
* Gets the value attribute of the DependencyVertex object
|
|
*/
|
|
public Object getValue()
|
|
{
|
|
return value;
|
|
}
|
|
}
|