persistentmylist.java

来自「hibernate-distribution-3.3.1.GA-dist.zip」· Java 代码 · 共 19 行

JAVA
19
字号
package org.hibernate.test.usercollection.basic;import org.hibernate.collection.PersistentList;import org.hibernate.engine.SessionImplementor;public class PersistentMyList extends PersistentList implements IMyList {	public PersistentMyList(SessionImplementor session) {		super(session);	}	public PersistentMyList(SessionImplementor session, IMyList list) {		super(session, list);	}		}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?