FileDocCategorySizeDatePackage
RentABike.javaAPI DocExample195Fri Apr 22 11:18:34 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);
   String getStoreName();
}