package com.bexp;
import org.JWrapper.*;
public class ObjHandleAccessAdapter
extends JAccessAdapter
{
com.bexp.ejb.ObjHandle handle;
public ObjHandleAccessAdapter(com.bexp.ejb.ObjHandle _handle)
{
super(_handle.getObjClass());
handle = _handle;
}
public ObjHandleAccessAdapter(com.bexp.ejb.ObjHandle _handle, boolean _rw)
{
super(_handle.getObjClass());
handle = _handle;
RW = _rw;
}
public Obj_t get() throws Exception
{ return handle.getObj(); }
protected void _set(Obj_t obj) throws Exception
{ handle.setObj(obj); }
public com.bexp.ejb.ObjHandle getHandle()
{ return handle; }
}
|