// File: ParcelsToSend.skeleton
// Time-stamp: "2006-02-12 21:54:04 calvanese"
// Purpose: Written exam 8/2/2006 - BSc in Computer Science (6CFU)
//          ParcelsToSend: skeleton of the class

public class ParcelsToSend {

  // representation of the objects
  private String country;
  private String[] sequence;
  private int next;

  // pubblic methods

  public ParcelsToSend(String c, int size) { }
  
  public String getCountry() { }
  
  public int size() { }
  
  public void insertParcel(String parcel) throws ParcelsException { }

  public String nextParcel() throws ParcelsException { }

  public String sendParcel() throws ParcelsException { }

  public int numParcels() { }

  public String parcel(int pos) throws ParcelsException { }

  public int[] parcelsForAddress(String s) { }

}
