1 | public boolean equals(Object o) {↵ | | 1 | public boolean equals(Object o) {↵
|
2 | if (this == o) return true;↵ | | 2 | if (this == o) return true;↵
|
3 | if (!(o instanceof InnerKey)) return false;↵ | | 3 | if (!(o instanceof OuterKey)) return false;↵
|
|
4 | final InnerKey cidSuperID = (InnerKey) o;↵ | | 4 | final OuterKey cidDetailID = (OuterKey) o;↵
|
|
5 | if (akey != null ? !akey.equals(cidSuperID.akey) : cidSuperID.akey != null) return false;↵ | | 5 | if (detailId != null ? !detailId.equals(cidDetailID.detailId) : cidDetailID.detailId != null) return false;↵
|
6 | if (bkey != null ? !bkey.equals(cidSuperID.bkey) : cidSuperID.bkey != null) return false;↵ | | 6 | if (master != null ? !master.equals(cidDetailID.master) : cidDetailID.master != null) return false;↵
|
|
7 | return true;↵ | | 7 | return true;↵
|
8 | | | 8 |
|