FileDocCategorySizeDatePackage
RentABike.javaAPI DocExample255Sat Apr 23 18:00:26 BST 2005com.springbook

RentABike.java

package com.springbook;

import java.util.List;

public interface RentABike {
   List getBikes();
   Bike getBike(String serialNo);
   void setStoreName(String name);
   void saveBike(Bike bike);
   void deleteBike(Bike bike);
   String getStoreName();
}