package ca.josephroque.bowlingcompanion.wrapper;
/**
* Created by Joseph Roque on 2015-07-22. Offers methods for retrieving a name, average and id from an object.
*/
public interface NameAverageId
extends DeletableData {
/**
* Gets the name for this object.
*
* @return a name for the object
*/
String getName();
/**
* Gets the average for this object.
*
* @return an average for this object
*/
float getAverage();
/**
* Gets the id for this object.
*
* @return an id for this object
*/
long getId();
}