package serial;


/*-----------------------------------------------------------------------------
 * File: SerDemoObject.java
 * Function: Example object used by SendStream/ReadStream example
 *
 * Copyright (c) 1997,1998 Solutions Consulting, All Rights Reserved.
 *---------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
 * Solutions Consulting makes no representations or warranties about the
 * suitability of the software, either express or implied, including but
 * not limited to the implied warranties of merchantability, fitness for
 * a particular purpose, or non-infringement. Solutions Consulting shall
 * not be liable for any damages suffered by licensee as a result of
 * using, modifying or distributing this software or its derivatives.
 *---------------------------------------------------------------------------*/

import java.io.*;

public class SerDemoObject implements Serializable {
	int i = 32;
	float f = (float)98.13;
	String s = "This is the SerDemoObject object";

	public SerDemoObject() {
	}

	public void show() {
		System.out.println("int i="+i);
		System.out.println("float f="+f);
		System.out.println("String s="+s);
	}
}
