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

📄 permission.java

📁 介绍了hibernate的入门有一些基本常用的事例
💻 JAVA
字号:
//$Id: Permission.java,v 1.2 2005/02/12 07:27:21 steveebersole Exp $package org.hibernate.test.collection;/** * @author Gavin King */public class Permission {	private String type;	Permission() {}	public String getType() {		return type;	}	public void setType(String type) {		this.type = type;	}	public Permission(String type) {		this.type = type;	}	public boolean equals(Object that) {		if ( !(that instanceof Permission) ) return false;		Permission p = (Permission) that;		return this.type.equals(p.type);	}	public int hashCode() {		return type.hashCode();	}}

⌨️ 快捷键说明

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