All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jorigin.identification.Named Maven / Gradle / Ivy

There is a newer version: 1.0.14
Show newest version
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