On 11/3/06, Vincent <[EMAIL PROTECTED]> wrote: [...]
private boolean cached = false; private value = null;
private Object value = null;
private RuntimeException rte = null;
public String getValue()
{
if (!cached)
{
try
{
Need appropriate synchronization. Take care, John

