blob: 5e576b4959fb936c9067090d78747a19c497a265 (
about) (
plain)
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
50
51
52
53
54
55
56
|
package au.id.zancanaro.javacheck.statem;
public class GeneratedCommand<State, Args, Result> {
private final int id;
private final Command<State, Args, Result> command;
private final Args args;
public GeneratedCommand(int id, Command<State, Args, Result> command, Args args) {
this.id = id;
this.command = command;
this.args = args;
}
public int getId() {
return id;
}
public Command<State, Args, Result> getCommand() {
return command;
}
public Args getArgs() {
return args;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
GeneratedCommand that = (GeneratedCommand) o;
if (args != null ? !args.equals(that.args) : that.args != null)
return false;
if (command != null ? !command.equals(that.command) : that.command != null)
return false;
return true;
}
@Override
public int hashCode() {
int result = command != null ? command.hashCode() : 0;
result = 31 * result + (args != null ? args.hashCode() : 0);
return result;
}
@Override
public String toString() {
return "GeneratedCommand{" +
"id=" + id +
", command=" + command +
", args=" + args +
'}';
}
}
|