blob: 7509d647924594680447ee2da64cf5694dd79c2e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.examples.databinding.model;
import java.util.Date;
import org.eclipse.jface.examples.databinding.ModelObject;
public class Account extends ModelObject {
private String country;
private String firstName;
private String lastName;
private String state;
private String phone;
private Date expiryDate;
public void setFirstName(String string) {
String oldValue = firstName;
firstName = string;
firePropertyChange("firstName", oldValue, string);
}
public void setLastName(String string) {
String oldValue = lastName;
lastName = string;
firePropertyChange("lastName", oldValue, string);
}
public void setState(String string) {
String oldValue = state;
state = string;
firePropertyChange("state", oldValue, string);
}
public void setPhone(String string) {
String oldValue = phone;
phone = string;
firePropertyChange("phone", oldValue, phone);
}
public void setCountry(String string) {
Object oldValue = country;
country = string;
firePropertyChange("country", oldValue, string);
}
public String getCountry() {
return country;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public String getState() {
return state;
}
public String getPhone() {
return phone;
}
public Date getExpiryDate() {
return expiryDate;
}
public void setExpiryDate(Date expiryDate) {
firePropertyChange("expiryDate", this.expiryDate,
this.expiryDate = expiryDate);
}
}