/* * Generated by XDoclet - Do not edit! */ package org.jboss.test.cmp2.cmrtree.ejb; /** * Primary key for B. */ public class BPK extends java.lang.Object implements java.io.Serializable { private int _hashCode = 0; private StringBuffer _toStringValue = null; public int majorId; public java.lang.String minorId; public BPK() { } public BPK( int majorId,java.lang.String minorId ) { this.majorId = majorId; this.minorId = minorId; } public int getMajorId() { return majorId; } public java.lang.String getMinorId() { return minorId; } public void setMajorId(int majorId) { this.majorId = majorId; _hashCode = 0; } public void setMinorId(java.lang.String minorId) { this.minorId = minorId; _hashCode = 0; } public int hashCode() { if( _hashCode == 0 ) { _hashCode += (int)this.majorId; if (this.minorId != null) _hashCode += this.minorId.hashCode(); } return _hashCode; } public boolean equals(Object obj) { if( !(obj instanceof org.jboss.test.cmp2.cmrtree.ejb.BPK) ) return false; org.jboss.test.cmp2.cmrtree.ejb.BPK pk = (org.jboss.test.cmp2.cmrtree.ejb.BPK)obj; boolean eq = true; if( obj == null ) { eq = false; } else { eq = eq && this.majorId == pk.majorId; if( this.minorId == null && ((org.jboss.test.cmp2.cmrtree.ejb.BPK)obj).getMinorId() == null ) { eq = true; } else { if( this.minorId == null || ((org.jboss.test.cmp2.cmrtree.ejb.BPK)obj).getMinorId() == null ) { eq = false; } else { eq = eq && this.minorId.equals( pk.minorId ); } } } 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(this.majorId).append('.'); _toStringValue.append(this.minorId).append('.'); _toStringValue.append(']'); } return _toStringValue.toString(); } }