JSP Addressbook app for VIP Express (circa Jun 2002)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 

77 lines
1.3 KiB

// AddressListBean.java
// JavaBean for storing and manipulating address list entries.
package com.bullseyecomputing.beans;
public class AddressListBean {
private String idNumber;
private String name;
private String street;
private String city;
private String state;
private String zipcode;
private String plus4;
// idNumber accessor methods
public void setIdNumber(String id) {
idNumber = id;
}
public String getIdNumber() {
return idNumber;
}
// name accessor methods
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
// street accessor methods
public void setStreet(String street) {
this.street = street;
}
public String getStreet() {
return street;
}
// city accessor methods
public void setCity(String city) {
this.city = city;
}
public String getCity() {
return city;
}
// state accessor methods
public void setState(String state) {
this.state = state;
}
public String getState() {
return state;
}
// zipcode accessor methods
public void setZipcode(String zip) {
zipcode = zip;
}
public String getZipcode() {
return zipcode;
}
// plus4 accessor methods
public void setPlus4(String plus4) {
this.plus4 = plus4;
}
public String getPlus4() {
return plus4;
}
}