/*
 * @(#)Record.java	1.0 2004/07/13
 */

import java.io.*;
      
/**
 * Base class for any record with member variable primaryKey.
 */
public class Record implements Serializable{
	/** The primary key of the record */
	public Integer primaryKey;

	public Record(Integer k) {
		primaryKey = k;
	}
	
	/** Provides a text version of records's fields */
	public String toString() {
		return primaryKey.toString();
	}
}

