bmpaccountpk.java

来自「《J2EE编程技术》作者郝玉龙—源代码 《J2EE编程技术》作者郝玉龙—源代码」· Java 代码 · 共 62 行

JAVA
62
字号
/* * Generated by XDoclet - Do not edit! */package com.ejbstudy;/** * Primary key for BMPAccount. * @lomboz generated */public class BMPAccountPK   extends java.lang.Object   implements java.io.Serializable{   private int _hashCode = 0;   private StringBuffer _toStringValue = null;   public BMPAccountPK()   {   }   public int hashCode()   {      if( _hashCode == 0 )      {      }      return _hashCode;   }   public boolean equals(Object obj)   {      if( !(obj instanceof com.ejbstudy.BMPAccountPK) )         return false;      com.ejbstudy.BMPAccountPK pk = (com.ejbstudy.BMPAccountPK)obj;      boolean eq = true;      if( obj == null )      {         eq = false;      }      else      {      }      return eq;   }   /** @return String representation of this pk in the form of [.field1.field2.field3]. */   public String toString()   {      if( _toStringValue == null )      {         _toStringValue = new StringBuffer("[.");         _toStringValue.append(']');      }      return _toStringValue.toString();   }}

⌨️ 快捷键说明

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