package futils;

import java.io.Serializable;

public class Customer implements
    Serializable,
    Runnable {

  String s[] = {
    "Hello World",
    "This is a test of",
    "My serializer"
  };

  transient String name = "J. Doe";
  boolean hasCallerID = false;

  public void setName(String _s) {
    name = _s;
  }

  public void run() {
    System.out.println("Hello world");
  }

  public void print() {
    System.out.println(name);
    System.out.println(hasCallerID);
    for (int i = 0; i < s.length; i++)
      System.out.println(s[i]);
  }
}