initializecollectionevent.java
来自「一个Java持久层类库」· Java 代码 · 共 22 行
JAVA
22 行
//$Id: InitializeCollectionEvent.java 14313 2008-02-06 07:46:52Z gbadner $package org.hibernate.event;import org.hibernate.collection.PersistentCollection;/** * An event that occurs when a collection wants to be * initialized * * @author Gavin King */public class InitializeCollectionEvent extends AbstractCollectionEvent { public InitializeCollectionEvent(PersistentCollection collection, EventSource source ) { super( getLoadedCollectionPersister( collection, source ), collection, source, getLoadedOwnerOrNull( collection, source ), getLoadedOwnerIdOrNull( collection, source ) ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?