Package com.github.theholywaffle.teamspeak3.api.wrapper

Examples of com.github.theholywaffle.teamspeak3.api.wrapper.Binding


public class CChannelFind extends Command {

  public CChannelFind(String pattern) {
    super("channelfind");
    add(new KeyValueParam("pattern",pattern));
  }
View Full Code Here


public class CClientInfo extends Command {

  public CClientInfo(int clientId) {
    super("clientinfo");
    add(new KeyValueParam("clid", clientId));
  }
View Full Code Here

public class CServerStart extends Command{

  public CServerStart(int id) {
    super("serverstart");
    add(new KeyValueParam("sid",id+""));
  }
View Full Code Here

public class CGM extends Command {

  public CGM(String message) {
    super("gm");
    add(new KeyValueParam("msg", message));
  }
View Full Code Here

public class CClientPermList extends Command{

  public CClientPermList(int clientDBId) {
    super("clientpermlist");
    add(new KeyValueParam("cldbid",clientDBId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

public class CChannelGroupClientList extends Command {

  public CChannelGroupClientList(int channelId, int clientDBId, int groupId) {
    super("channelgroupclientlist");
    if (channelId > 0) {
      add(new KeyValueParam("cid", channelId));
    }
    if (clientDBId > 0) {
      add(new KeyValueParam("cldbid", clientDBId));
    }
    if (groupId > 0) {
      add(new KeyValueParam("cgid", groupId));
    }
  }
View Full Code Here

public class CSendTextMessage extends Command {

  public CSendTextMessage(int targetMode, int targetId, String message) {
    super("sendtextmessage");
    add(new KeyValueParam("targetmode", targetMode));
    add(new KeyValueParam("target", targetId));
    add(new KeyValueParam("msg", message));
  }
View Full Code Here

    this(id, true);
  }

  public CServerGroupDel(int id, boolean forced) {
    super("servergroupdel");
    add(new KeyValueParam("sgid", id));
    add(new KeyValueParam("force", forced ? "1" : "0"));
  }
View Full Code Here

public class CMessageDel extends Command{

  public CMessageDel(int messageId) {
    super("messagedel");
    add(new KeyValueParam("msgid",messageId+""));
  }
View Full Code Here

public class CServerGroupsByClientId extends Command{

  public CServerGroupsByClientId(int clientDBId) {
    super("servergroupsbyclientid");
    add(new KeyValueParam("cldbid", clientDBId+""));
  }
View Full Code Here

TOP

Related Classes of com.github.theholywaffle.teamspeak3.api.wrapper.Binding

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.