Class Rider

java.lang.Object
  |
  +--Rider

public class Rider
extends Object

class Rider

Version:
1.0
Author:
JP

Constructor Summary
Rider()
          Constructor for objects of class Rider with no parameters
Rider(String myName)
          Constructor for objects of class Rider with name supplied
 
Method Summary
 void changeDown()
          calls changeGear method of Bicycle object
 void changeUp()
          calls changeGear method of Bicycle object
 void slowDown()
          calls changeRpm method of Bicycle object
 void speedUp()
          calls changeRpm method of Bicycle object
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Rider

public Rider()
Constructor for objects of class Rider with no parameters

Rider

public Rider(String myName)
Constructor for objects of class Rider with name supplied
Method Detail

changeDown

public void changeDown()
calls changeGear method of Bicycle object

changeUp

public void changeUp()
calls changeGear method of Bicycle object

slowDown

public void slowDown()
calls changeRpm method of Bicycle object

speedUp

public void speedUp()
calls changeRpm method of Bicycle object


Generated by BlueJ