FileDocCategorySizeDatePackage
AddressBookEntryKey.javaAPI DocExample1043Sun Jul 06 01:05:36 BST 2003antipatterns.ejbs

AddressBookEntryKey

public final class AddressBookEntryKey extends Object implements Serializable
Created Feb 1, 2003 4:16:41 PM Code generated by the Sun ONE Studio EJB Builder
author
jon

Fields Summary
public int
entryId
Constructors Summary
public AddressBookEntryKey()

public AddressBookEntryKey(int entryId)

        this.entryId = entryId;
    
Methods Summary
public booleanequals(java.lang.Object otherOb)

see
java.lang.Object#equals(java.lang.Object)

        
        if (this == otherOb) {
            return true;
        }
        if (!(otherOb instanceof antipatterns.ejbs.AddressBookEntryKey)) {
            return false;
        }
        antipatterns.ejbs.AddressBookEntryKey other = (antipatterns.ejbs.AddressBookEntryKey) otherOb;
        return (
        
        (entryId == other.entryId)
        
        );
    
public inthashCode()

see
java.lang.Object#hashCode()

        return (
        
        ((int) entryId)
        
        );