org.jorigin.identification.Named Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcommon Show documentation
Show all versions of jcommon Show documentation
A java common package that enable to deal with various functionalities
package org.jorigin.identification;
import org.jorigin.Common;
/**
* An interface that describe an object that can be named.
* @author Julien Seinturier - COMEX S.A. - [email protected] - https://github.com/jorigin/jeometry
* @version {@value Common#version} - b{@value Common#BUILD}
* @since 1.0.9
*/
public interface Named {
/**
* Get the name of the object.
* @return the name of the object.
* @see #setName(String)
*/
public String getName();
/**
* Set the name of the object.
* @param name the name of the object.
* @see #getName()
*/
public void setName(String name);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy