1
2 /**
3 IMPORTANT !!!
4
5 DO NOT EDIT THIS FILE. IT IS GENERATED FROM approriate xml file in xmlresources/gbcommands BY
6 THE JavaClassesGenerator.xslt. MODIFY THESE FILES INSTEAD OF THIS ONE.
7
8 IMPORTANT END !!!
9 */
10 package
11 cz.cuni.amis.pogamut.udk.communication.messages.gbcommands;
12 import java.util.*;
13 import javax.vecmath.*;
14 import cz.cuni.amis.pogamut.base.communication.messages.*;
15 import cz.cuni.amis.pogamut.base.communication.worldview.*;
16 import cz.cuni.amis.pogamut.base.communication.worldview.event.*;
17 import cz.cuni.amis.pogamut.base.communication.worldview.object.*;
18 import cz.cuni.amis.pogamut.base.communication.translator.event.*;
19 import cz.cuni.amis.pogamut.base3d.worldview.object.*;
20 import cz.cuni.amis.pogamut.base3d.worldview.object.event.*;
21 import cz.cuni.amis.pogamut.unreal.communication.messages.UnrealId;
22 import cz.cuni.amis.pogamut.udk.communication.messages.*;
23 import cz.cuni.amis.pogamut.udk.communication.worldview.objects.*;
24 import cz.cuni.amis.pogamut.udk.communication.translator.itemdescriptor.*;
25 import cz.cuni.amis.pogamut.udk.communication.messages.ItemType.Category;
26 import cz.cuni.amis.utils.exception.*;
27 import cz.cuni.amis.pogamut.base.communication.translator.event.IWorldObjectUpdateResult.Result;
28 import cz.cuni.amis.utils.SafeEquals;
29 import cz.cuni.amis.pogamut.multi.communication.worldview.object.*;
30
31
32 /**
33
34 Will kick GameBots Bot from the server.
35
36 Corresponding GameBots command is
37 KICK.
38
39 */
40
41 public class
42 Kick extends
43 CommandMessage
44
45 {
46
47 /**
48 Creates new instance of command Kick.
49
50 Will kick GameBots Bot from the server.
51 Corresponding GameBots message for this command is
52 KICK.
53 @param Id Id of the bot to be kicked.
54 */
55 public Kick(
56 UnrealId Id) {
57
58 this.Id = Id;
59
60 }
61
62
63 /**
64 Creates new instance of command Kick.
65
66 Will kick GameBots Bot from the server.
67 Corresponding GameBots message for this command is
68 KICK.
69 <p></p>WARNING: this is empty-command constructor, you have to use setters to fill it up!
70 */
71 public Kick() {
72 }
73
74
75 /////// Properties BEGIN
76
77 /**
78 Id of the bot to be kicked. */
79 protected
80 UnrealId Id =
81 null;
82
83
84 /**
85 Id of the bot to be kicked. */
86 public
87 UnrealId getId() {
88 return
89 Id;
90 }
91
92
93
94 /**
95 Id of the bot to be kicked. */
96 public Kick setId(UnrealId Id) {
97 this.Id = Id;
98 return this;
99 }
100
101 /////// Properties END
102
103 /////// Extra Java code BEGIN
104
105 /////// Additional code from xslt BEGIN
106
107
108
109 /////// Additional code from xslt END
110
111 /////// Extra Java from XML BEGIN
112
113 /////// Extra Java from XML END
114
115 /////// Extra Java code END
116
117
118
119 /**
120 * Cloning constructor.
121 */
122 public Kick(Kick original) {
123
124 this.Id=original.Id;
125
126 }
127
128
129
130
131 public String toString() {
132 return
133
134 toMessage();
135
136 }
137
138 public String toHtmlString() {
139 return super.toString() +
140
141 "<b>Id</b> : " +
142 String.valueOf(Id) +
143 " <br/> " +
144 "";
145 }
146
147
148
149 public String toMessage() {
150 StringBuffer buf = new StringBuffer();
151 buf.append("KICK");
152
153 if (Id != null) {
154 buf.append(" {Id " + Id.getStringId() + "}");
155 }
156
157 return buf.toString();
158 }
159
160 }
161
162