net.openhft.chronicle.testframework.function.HasName Maven / Gradle / Ivy
package net.openhft.chronicle.testframework.function;
public interface HasName {
/**
* Returns the name of this object.
*
* @return name
*/
String name();
}