precollectionupdateevent.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 before a collection is updated * * @author Gail Badner */public class PreCollectionUpdateEvent extends AbstractCollectionEvent {	public PreCollectionUpdateEvent(CollectionPersister collectionPersister,									PersistentCollection collection,									EventSource source) {		super( collectionPersister, collection, source,				getLoadedOwnerOrNull( collection, source ),				getLoadedOwnerIdOrNull( collection, source ) );	}}

⌨️ 快捷键说明

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