Called by each Aircraft
when there is a message
to pass to the air traffic controller.
The method prepends the call sign to the message before passing
it to any Observers registered.
if( (o instanceof Aircraft) && (message instanceof String) )
{ setChanged();
notifyObservers( ((Aircraft)o).getData().callSign + ": " + message );
}