* Selects the next available address entry.
*/
public void selectNextEntry() {
Selection currentSelection = getCurrentSelection();
net.suberic.pooka.AddressMatcher matcher = getNewMessageUI().getSelectedProfile().getAddressMatcher();
AddressBookEntry newValue = matcher.getNextMatch(currentSelection.text);
if (newValue != null) {
replaceAddressText(currentSelection, newValue.getID());
}
}