collectioncacheentry.java
来自「好东西,hibernate-3.2.0,他是一开元的树杖hibernate-3.」· Java 代码 · 共 44 行
JAVA
44 行
//$Id: CollectionCacheEntry.java 6838 2005-05-20 19:50:07Z oneovthafew $
package org.hibernate.cache.entry;
import java.io.Serializable;
import org.hibernate.collection.PersistentCollection;
import org.hibernate.persister.collection.CollectionPersister;
import org.hibernate.util.ArrayHelper;
/**
* @author Gavin King
*/
public class CollectionCacheEntry implements Serializable {
private final Serializable state;
public Serializable[] getState() {
//TODO: assumes all collections disassemble to an array!
return (Serializable[]) state;
}
public CollectionCacheEntry(PersistentCollection collection, CollectionPersister persister) {
this.state = collection.disassemble(persister);
}
CollectionCacheEntry(Serializable state) {
this.state = state;
}
public void assemble(
final PersistentCollection collection,
final CollectionPersister persister,
final Object owner
) {
collection.initializeFromCache(persister, state, owner);
collection.afterInitialize();
}
public String toString() {
return "CollectionCacheEntry" + ArrayHelper.toString( getState() );
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?