16 lines
218 B
Java
16 lines
218 B
Java
package ch.gtache.fro;
|
|
|
|
/**
|
|
* Represents a bird family
|
|
*/
|
|
@FunctionalInterface
|
|
public interface BirdFamily {
|
|
|
|
/**
|
|
* Returns the name of the family
|
|
*
|
|
* @return The name
|
|
*/
|
|
String name();
|
|
}
|