forked from igortereshchenko/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAuthor.java
More file actions
49 lines (34 loc) · 999 Bytes
/
Author.java
File metadata and controls
49 lines (34 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package LessonObject;
/**
* Created by student on 19.03.2018.
*/
public class Author implements Cloneable{
private String name;
public void setName(String name){ this.name = name;}
public String getName(){return name;}
public Author(String name){
this.name = name;
}
public String toString(){
return "Author: "+name;
}
public boolean equals(Object obj){
if (obj instanceof Author){
Author otherAuthor = (Author)obj;
return this.name == otherAuthor.getName();
}
else{
System.out.println("Error: "+obj.toString() + " and "+this.toString()+ " is not comparable");
return false;
}
}
public Author clone() throws CloneNotSupportedException
{
Author returnAuthor = (Author)super.clone();
returnAuthor.setName(returnAuthor.getName()+" cloned");
return returnAuthor;
}
public int hashCode(){
return 1;
}
}