// File: BikePool_skeleton.java
// Time-stamp: "2005-08-18 14:40:31 calvanese"
// Purpose: Written exam 28/6/2005 - BSC in Production Engineering
//          BikePool: skeleton of the class

public class BikePool {

  // representation of the objects
  private String name;
  private Bike[] pool;

  // pubblic methods

  public BikePool(String n, int size) { }
  
  public String getShop() { }
  
  public int getSize() { }
  
  public void newBike(Bike bike) { }
  
  public Bike getBike(String code) { }

  public void removeBike(String code) { }

  public int numBikes() { }
  
  public String[] bikesForWeight(int weight) { }

}
