// File: BikePool_object_representation.java
// Time-stamp: "2005-08-18 14:38:55 calvanese"
// Purpose: Written exam 28/6/2005 - BSC in Production Engineering
//          BikePool: representation of the objects of the class

public class BikePool {

  // representation of the objects
  private String name;
  private Bike[] pool;

  // pubblic methods

}
