36373839404142
return arrayClass; } public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister, Serializable key) throws HibernateException { return new PersistentArrayHolder(session, persister); }
47484950515253
public Iterator getElementsIterator(Object collection) { return Arrays.asList( (Object[]) collection ).iterator(); } public PersistentCollection wrap(SessionImplementor session, Object array) { return new PersistentArrayHolder(session, array); }
59606162636465
70717273747576
58596061626364
69707172737475
56575859606162
67686970717273