//the user's choice, but if I were doing this program for real then that would be
//handled by some other class say, WeatherStationSetUp
//That class would get the displays to be used, and add them a list
//as I've done, and pass that list to this program
Display firstDisplay = new Display(new CurrentConditions(weatherData));
displaysToUse.add(firstDisplay.getCurrentDisplay());
weatherData.addDisplay(displaysToUse);
weatherData.setMeasurements(80, 65, 30.4f);
weatherData.setMeasurements(82, 70, 29.2f);
weatherData.setMeasurements(78, 90, 29.2f);
weatherData.deleteObserver(firstDisplay.getCurrentDisplay());
weatherData.setMeasurements(90, 60, 32.5f);
weatherData.setMeasurements(95, 75, 29.2f);
weatherData.setMeasurements(100, 90, 18.5f);
}