Interstage Application Server/Interstage Web Server J2EE ユーザーズガイド
目次 索引 前ページ次ページ

第3部 EJB編> 第13章 Entity Beanの実装> 13.9 Primary Keyクラスの作成

13.9.1 CMPの記述例

package Sample;

public class SampleBeanPrimaryKey implements java.io.Serializable
{
      public Integer code;

      public SampleBeanPrimaryKey()
      {
      }

public boolean equals(Object obj) { if (obj == null) return false; if (!(obj instanceof SampleBeanPrimaryKey)) return false; SampleBeanPrimaryKey pk = (SampleBeanPrimaryKey)obj; boolean b = (code == null)?(pk.code == null):code.equals(pk.code); return b; }
      public int hashCode()
      {
          String temp = String.valueOf(code);
          return temp.hashCode();
      }
 }

目次 索引 前ページ次ページ

Copyright 2008 FUJITSU LIMITED