postcollectionupdateevent.java
来自「一个Java持久层类库」· Java 代码 · 共 22 行
JAVA
22 行
//$Id: $package org.hibernate.event;import org.hibernate.collection.PersistentCollection;import org.hibernate.persister.collection.CollectionPersister;/** * An event that occurs after a collection is updated * * @author Gail Badner */public class PostCollectionUpdateEvent extends AbstractCollectionEvent { public PostCollectionUpdateEvent(CollectionPersister collectionPersister, PersistentCollection collection, EventSource source) { super( collectionPersister, collection, source, getLoadedOwnerOrNull( collection, source ), getLoadedOwnerIdOrNull( collection, source ) ); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?