⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sortedsettype.java

📁 JSP+SQL编写的人力资源管理系统
💻 JAVA
字号:
//$Id: SortedSetType.java,v 1.9.2.4 2004/01/26 04:57:09 oneovthafew Exp $package net.sf.hibernate.type;import java.util.Comparator;import net.sf.hibernate.collection.CollectionPersister;import net.sf.hibernate.collection.PersistentCollection;import net.sf.hibernate.collection.SortedSet;import net.sf.hibernate.engine.SessionImplementor;public class SortedSetType extends SetType {		private final Comparator comparator;		public SortedSetType(String role, Comparator comparator) {		super(role);		this.comparator = comparator;	}		public PersistentCollection instantiate(SessionImplementor session, CollectionPersister persister) {		SortedSet set = new SortedSet(session);		set.setComparator(comparator);		return set;	}		public Class getReturnedClass() {		return java.util.SortedSet.class;	}		public PersistentCollection wrap(SessionImplementor session, Object collection) {		return new SortedSet( session, (java.util.SortedSet) collection );	}}

⌨️ 快捷键说明

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