bag.java
来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 29 行
JAVA
29 行
//$Id: Bag.java,v 1.8 2005/02/20 03:34:49 oneovthafew Exp $package org.hibernate.mapping;import org.hibernate.type.CollectionType;import org.hibernate.type.TypeFactory;/** * A bag permits duplicates, so it has no primary key * @author Gavin King */public class Bag extends Collection { public Bag(PersistentClass owner) { super(owner); } public CollectionType getDefaultCollectionType() { return TypeFactory.bag( getRole(), getReferencedPropertyName(), isEmbedded() ); } void createPrimaryKey() { //create an index on the key columns?? } public Object accept(ValueVisitor visitor) { return visitor.accept(this); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?