summaryrefslogtreecommitdiff
path: root/src/main/java/au/id/zancanaro/javacheck/state/GeneratedCommand.java
blob: 85f6fddddf09af6cd2390c83f3f5d458d5b59482 (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
package au.id.zancanaro.javacheck.state;

public class GeneratedCommand<S, A, R> {
    private final int id;
    private final Command<S, A, R> command;
    private final A args;

    public GeneratedCommand(int id, Command<S, A, R> command, A args) {
        this.id = id;
        this.command = command;
        this.args = args;
    }

    public int getId() {
        return id;
    }

    public Command<S, A, R> getCommand() {
        return command;
    }

    public A 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;

        return !(args != null ? !args.equals(that.args) : that.args != null)
                && !(command != null ? !command.equals(that.command) : that.command != null);

    }

    @Override
    public int hashCode() {
        int result = command != null ? command.hashCode() : 0;
        return 31 * result + (args != null ? args.hashCode() : 0);
    }

    @Override
    public String toString() {
        if (args == null) {
            return "#{" + id + "} = " + command;
        } else {
            return "#{" + id + "} = " + command + " <- " + args;
        }
    }
}