git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/sandbox/graph2/trunk@144595 13f79535-47bb-0310-9956-ffa450edef68
13 lines
198 B
Java
13 lines
198 B
Java
package org.apache.commons.graph;
|
|
|
|
/**
|
|
* Description of the Interface
|
|
*/
|
|
public interface Named
|
|
{
|
|
/**
|
|
* Gets the name attribute of the Named object
|
|
*/
|
|
public String getName();
|
|
}
|