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

nyla.solutions.global.data.Numbered Maven / Gradle / Ivy

Go to download

Nyla Solutions Global Java API provides support for basic application utilities (application configuration, data encryption, debugger and text processing).

The newest version!
package nyla.solutions.global.data;

import java.io.Serializable;

/**
 * 
 * Numbered represents an object that has a number
 * 
* @author Gregory Green * 8 Erie off 90552 * @version 1.0 */ public interface Numbered extends Serializable, Comparable { /** * * @return the number */ public int getNumber(); /** * Set the number * @param aNumber the number to set */ //public void setNumber(int aNumber); }