mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-26 06:48:04 +02:00
12 lines
206 B
Java
12 lines
206 B
Java
|
interface Bicycle {
|
||
|
|
||
|
// wheel revolutions per minute
|
||
|
void changeCadence(int newValue);
|
||
|
|
||
|
void changeGear(int newValue);
|
||
|
|
||
|
void speedUp(int increment);
|
||
|
|
||
|
void applyBrakes(int decrement);
|
||
|
}
|