Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @Override
- public boolean equals(Object arg0) {
- if (Book.class.isInstance(arg0)) {
- return this.author.equals(((Book) arg0).author) &&
- this.year.equals(((Book) arg0).year) &&
- this.title.equals(((Book) arg0).title);
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment