KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > test > usercollection > PersistentMyList


1 package org.hibernate.test.usercollection;
2
3 import org.hibernate.collection.PersistentList;
4 import org.hibernate.engine.SessionImplementor;
5
6 public class PersistentMyList extends PersistentList implements IMyList {
7
8     public PersistentMyList(SessionImplementor session) {
9         super(session);
10     }
11
12     public PersistentMyList(SessionImplementor session, IMyList list) {
13         super(session, list);
14     }
15
16     
17     
18 }
19
Popular Tags