/** Creates a new instance of AddressEdit */
public AddressEdit() {
super();
Services.CONTACTS.getStateLookups(new AsyncCallback() {
public void onSuccess(Object result) {
state.setOptions((List) result);
}
public void onFailure(Throwable caught) {
Window.alert("Error getting states - " +
caught.getMessage());
return;
}
});
Services.CONTACTS.getTypeLookups(new AsyncCallback() {
public void onSuccess(Object result) {
type.setOptions((List) result);
}
public void onFailure(Throwable caught) {