2002-03-17 16:28:12 +00:00

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();
}