package SampleDatabase;

/* SampleDatabase/EmployeeAddressTable_Row.java
 *
 * Copyright (c) 1999 Chris Studholme <chris.studholme@utoronto.ca>
 *
 * May be copied or modified under the terms of the GNU General Public
 * License.  See COPYING for more information.
 */

/**
 * <p>See TableTemplate for information about this class.
 *
 * @author chris.studholme@utoronto.ca
 */

class EmployeeAddressTable_Row {
    
    public String SSN;
    public String FirstName;
    public String LastName;
    public String Address;
    public String City;
    public String State;

    public EmployeeAddressTable_Row(String ssn, String first, 
				    String last, String addr, 
				    String city, String state) {
	SSN=ssn;
	FirstName=first;
	LastName=last;
	Address=addr;
	City=city;
	State=state;
    }

};
