/**
 * Requirements of Initializeable objects (i.e., objects that can be
 * initialized from a String representation)
 *
 * @author  Prof. David Bernstein, James Madison University
 * @version 1.0
 */
public interface Initializeable
{
    /**
     * Parse a String representation of this Object.
     *
     * @param s   The String representation
     */
    public abstract void fromString(String s);
    
}
