From: Gavin K. <ga...@ap...> - 2002-10-04 17:29:07
|
> ( object instanceof HibernateProxy ) && ( (HibernateProxy) > object ).isUninitialized() Of course, you noticed my mistake, its really: ( object instanceof HibernateProxy ) && ( (HibernateProxy) object ).isUninitialized_() (trailing underscore) so that the methods of the Proxy are less likely to conflict with the names of methods of the persistent class... |