FileDocCategorySizeDatePackage
RentABikeAssembler.javaAPI DocExample274Fri Apr 22 11:00:42 BST 2005None

RentABikeAssembler.java

public class RentABikeAssembler {
   public static final void main(String[] args) {
      CommandLineView clv = new CommandLineView();
      RentABike rentaBike = new ArrayListRentABike("Bruce's bikes");
      clv.setRentABike(rentaBike);
      clv.printAllBikes();
   }
}