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