Copyright © 2001 Qusay H. Mahmoud
The Serializable interface
lIt is a marker interface (empty interface)
l    public interface Serializable {
l    }
lIt is part of the java.io package
lIt is merely used to inform the JVM that you want the object to be serialized lTherefore, your Java objects must implement the Serializable interface to be serialized
l