B C R S

B

Bicycle - class Bicycle.
class Bicycle
Bicycle() - Constructor for class Bicycle
Constructor for objects of class Bicycle

C

changeDown() - Method in class Rider
calls changeGear method of Bicycle object
changeGear(int) - Method in class Bicycle
changes value of gear
changeNumberOfGears(int) - Method in class Bicycle
changes value of class variable numberOfGears
changeRpm(int) - Method in class Bicycle
changes value of rpm
changeUp() - Method in class Rider
calls changeGear method of Bicycle object

R

Rider - class Rider.
class Rider
Rider() - Constructor for class Rider
Constructor for objects of class Rider with no parameters
Rider(String) - Constructor for class Rider
Constructor for objects of class Rider with name supplied

S

slowDown() - Method in class Rider
calls changeRpm method of Bicycle object
speedUp() - Method in class Rider
calls changeRpm method of Bicycle object

B C R S

Generated by BlueJ