File tree Expand file tree Collapse file tree 4 files changed +40
-303
lines changed
src/main/java/com/github/theholywaffle/teamspeak3/example Expand file tree Collapse file tree 4 files changed +40
-303
lines changed Original file line number Diff line number Diff line change 30
30
import com .github .theholywaffle .teamspeak3 .TS3Config ;
31
31
import com .github .theholywaffle .teamspeak3 .TS3Query ;
32
32
import com .github .theholywaffle .teamspeak3 .api .TextMessageTargetMode ;
33
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelCreateEvent ;
34
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelDeletedEvent ;
33
35
import com .github .theholywaffle .teamspeak3 .api .event .ChannelDescriptionEditedEvent ;
34
36
import com .github .theholywaffle .teamspeak3 .api .event .ChannelEditedEvent ;
37
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelMovedEvent ;
38
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelPasswordChangedEvent ;
35
39
import com .github .theholywaffle .teamspeak3 .api .event .ClientJoinEvent ;
36
40
import com .github .theholywaffle .teamspeak3 .api .event .ClientLeaveEvent ;
37
41
import com .github .theholywaffle .teamspeak3 .api .event .ClientMovedEvent ;
@@ -101,6 +105,22 @@ public void onChannelDescriptionChanged(
101
105
ChannelDescriptionEditedEvent e ) {
102
106
103
107
}
108
+
109
+ public void onChannelCreate (ChannelCreateEvent e ) {
110
+
111
+ }
112
+
113
+ public void onChannelDeleted (ChannelDeletedEvent e ) {
114
+
115
+ }
116
+
117
+ public void onChannelMoved (ChannelMovedEvent e ) {
118
+
119
+ }
120
+
121
+ public void onChannelPasswordChanged (ChannelPasswordChangedEvent e ) {
122
+
123
+ }
104
124
});
105
125
}
106
126
Original file line number Diff line number Diff line change 29
29
import com .github .theholywaffle .teamspeak3 .TS3Api ;
30
30
import com .github .theholywaffle .teamspeak3 .TS3Config ;
31
31
import com .github .theholywaffle .teamspeak3 .TS3Query ;
32
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelCreateEvent ;
33
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelDeletedEvent ;
32
34
import com .github .theholywaffle .teamspeak3 .api .event .ChannelDescriptionEditedEvent ;
33
35
import com .github .theholywaffle .teamspeak3 .api .event .ChannelEditedEvent ;
36
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelMovedEvent ;
37
+ import com .github .theholywaffle .teamspeak3 .api .event .ChannelPasswordChangedEvent ;
34
38
import com .github .theholywaffle .teamspeak3 .api .event .ClientJoinEvent ;
35
39
import com .github .theholywaffle .teamspeak3 .api .event .ClientLeaveEvent ;
36
40
import com .github .theholywaffle .teamspeak3 .api .event .ClientMovedEvent ;
@@ -94,6 +98,22 @@ public void onChannelDescriptionChanged(
94
98
// ...
95
99
96
100
}
101
+
102
+ public void onChannelCreate (ChannelCreateEvent e ) {
103
+
104
+ }
105
+
106
+ public void onChannelDeleted (ChannelDeletedEvent e ) {
107
+
108
+ }
109
+
110
+ public void onChannelMoved (ChannelMovedEvent e ) {
111
+
112
+ }
113
+
114
+ public void onChannelPasswordChanged (ChannelPasswordChangedEvent e ) {
115
+
116
+ }
97
117
});
98
118
99
119
}
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments