StudentPK.java
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:0k
源码类别:

Java编程

开发平台:

Java

  1. package bible.ejb.entity.bmp;
  2. import java.io.Serializable;
  3. public class StudentPK implements Serializable
  4. {
  5.   public String id;
  6.   public int hashCode() {
  7.     return id.hashCode();
  8.   }
  9.   public boolean equals(Object that)
  10.   {
  11.     if (that == null || !(that instanceof StudentPK))
  12.       return false;
  13.     String otherId = ((StudentPK) that).id;
  14.     return id.equals(otherId);
  15.   }
  16. }