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

org.jorigin.identification.Identified 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 identified by an integer number.
 * @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 Identified {

	/**
	 * Get the identification of the object an an integer.
	 * @return the identification of the object an an integer.
	 * @see #setIdentification(int)
	 */
	public int getIdentification();
	
    /**
     * Set the identification of the object as an integer.
     * @param indentifier the identification of the object an an integer.
     * @see #getIdentification()
     */
	public void setIdentification(int indentifier);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy