DinnerViewModel.java :  » Database-Persistance » objectdinner » info » gamlor » icoodb » web » dto » Android Open Source

Android Open Source » Database Persistance » objectdinner 
objectdinner » info » gamlor » icoodb » web » dto » DinnerViewModel.java
package info.gamlor.icoodb.web.dto;

/**
 * The complete dinner, intended for editing a dinner
 *
 * @author roman.stoffel@gamlor.info
 * @since 10.08.2010
 */
public class DinnerViewModel extends DinnerViewModelBase {
    private String description = "";
    private String contactPhone = "";
    private String country = "";

    public DinnerViewModel() {
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public String getContactPhone() {
        return contactPhone;
    }

    public void setContactPhone(String contactPhone) {
        this.contactPhone = contactPhone;
    }

    public String getCountry() {
        return country;
    }

    public void setCountry(String country) {
        this.country = country;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.