Crossfire JXClient, Trunk
CommandExec.java
Go to the documentation of this file.
1 /*
2  * This file is part of JXClient, the Fullscreen Java Crossfire Client.
3  *
4  * JXClient is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * JXClient is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with JXClient; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  * Copyright (C) 2005-2008 Yann Chachkoff
19  * Copyright (C) 2006-2017,2019-2023 Andreas Kirschbaum
20  * Copyright (C) 2010-2012,2014-2018,2020-2023 Nicolas Weeger
21  */
22 
23 package com.realtime.crossfire.jxclient.commands;
24 
25 import org.jetbrains.annotations.NotNull;
26 import org.jetbrains.annotations.Nullable;
27 
32 public class CommandExec {
33 
37  @Nullable
38  private final Command command;
39 
43  @NotNull
44  private final String args;
45 
51  public CommandExec(@Nullable final Command command, @NotNull final String args) {
52  this.command = command;
53  this.args = args;
54  }
55 
60  @Nullable
61  public Command getCommand() {
62  return command;
63  }
64 
69  @NotNull
70  public String getArgs() {
71  return args;
72  }
73 
74  @Override
75  public int hashCode() {
76  return (command == null ? 0 : command.hashCode())+args.hashCode();
77  }
78 
79  @Override
80  public boolean equals(@Nullable final Object obj) {
81  if (obj == null || obj.getClass() != getClass()) {
82  return false;
83  }
84  final CommandExec o = (CommandExec)obj;
85  return command == o.command && args.equals(o.args);
86  }
87 
88  @NotNull
89  @Override
90  public String toString() {
91  return command+"/"+args;
92  }
93 
94 }
com.realtime.crossfire.jxclient.commands.CommandExec.args
final String args
Definition: CommandExec.java:44
com.realtime.crossfire.jxclient.commands.Command
Definition: Command.java:31
com.realtime.crossfire.jxclient.commands.CommandExec
Definition: CommandExec.java:32
com.realtime.crossfire.jxclient.commands.CommandExec.command
final Command command
Definition: CommandExec.java:38
com.realtime.crossfire.jxclient.commands.CommandExec.CommandExec
CommandExec(@Nullable final Command command, @NotNull final String args)
Definition: CommandExec.java:51
com.realtime.crossfire.jxclient.commands.CommandExec.getCommand
Command getCommand()
Definition: CommandExec.java:61
com.realtime.crossfire.jxclient.commands.CommandExec.getArgs
String getArgs()
Definition: CommandExec.java:70
com.realtime.crossfire.jxclient.commands.CommandExec.toString
String toString()
Definition: CommandExec.java:90
com.realtime.crossfire.jxclient.commands.CommandExec.hashCode
int hashCode()
Definition: CommandExec.java:75
com.realtime.crossfire.jxclient.commands.CommandExec.equals
boolean equals(@Nullable final Object obj)
Definition: CommandExec.java:80