// Copyright (c) 1996-2002 Brian D. Carlstrom

package bdc.util;

/**
*/
public interface State
{
        // Do not have this interface change from that provided by
        // ThreadLocal.
    public void set (Object value);
    public Object get ();
}
