Package sk.vrto.web.events

Examples of sk.vrto.web.events.ContactUpdatedEvent


    public void editContact(Contact contact) {
        if (view.getViewPopup().isEditMode()) {
            contact.setName(view.getViewPopup().getNameField().getValue().toString());
            contactRepository.update(contact);
            view.getViewPopup().disableEditMode();
            eventBus.post(new ContactUpdatedEvent(contact, this));
        } else {
            view.getViewPopup().enableEditMode();
        }
    }
View Full Code Here

TOP

Related Classes of sk.vrto.web.events.ContactUpdatedEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.