Package it.freedomotic.gwtclient.client.widgets.ContactDatabase

Examples of it.freedomotic.gwtclient.client.widgets.ContactDatabase.ContactInfo


        });
        createButton.addClickHandler(new ClickHandler() {
            public void onClick(ClickEvent event) {
                int categoryIndex = categoryBox.getSelectedIndex();
                Category category = categories[categoryIndex];
                contactInfo = new ContactInfo(category);
                contactInfo.setFirstName(firstNameBox.getText());
                contactInfo.setLastName(lastNameBox.getText());
                contactInfo.setAddress(addressBox.getText());
                contactInfo.setBirthday(birthdayBox.getValue());
                ContactDatabase.get().addContact(contactInfo);
View Full Code Here


    });
    createButton.addClickHandler(new ClickHandler() {
      public void onClick(ClickEvent event) {
        int categoryIndex = categoryBox.getSelectedIndex();
        Category category = categories[categoryIndex];
        contactInfo = new ContactInfo(category);
        contactInfo.setFirstName(firstNameBox.getText());
        contactInfo.setLastName(lastNameBox.getText());
        contactInfo.setAddress(addressBox.getText());
        contactInfo.setBirthday(birthdayBox.getValue());
        ContactDatabase.get().addContact(contactInfo);
View Full Code Here

TOP

Related Classes of it.freedomotic.gwtclient.client.widgets.ContactDatabase.ContactInfo

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.