Examples of OptionParam


Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

  public CClientDBList(int begin, int amount, boolean count) {
    super("clientdblist");
    add(new KeyValueParam("start", begin+""));
    add(new KeyValueParam("duration", amount+""));
    if(count){
      add(new OptionParam("count"));
    }
   
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

  public CClientDBFind(String pattern, boolean uid) {
    super("clientdbfind");
    add(new KeyValueParam("pattern", pattern));
    if (uid) {
      add(new OptionParam("uid"));
    }
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CServerGroupPermList extends Command {

  public CServerGroupPermList(int id) {
    super("servergrouppermlist");
    add(new KeyValueParam("sgid", id));
    add(new OptionParam("permsid"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CClientPermList extends Command{

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

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CClientList extends Command{

  public CClientList() {
    super("clientlist");
    add(new OptionParam("uid"));
    add(new OptionParam("away"));
    add(new OptionParam("voice"));
    add(new OptionParam("times"));
    add(new OptionParam("groups"));
    add(new OptionParam("info"));
    add(new OptionParam("icon"));
    add(new OptionParam("country"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

  public CChannelClientPermList(int channelId, int clientDBId) {
    super("channelclientpermlist");
    add(new KeyValueParam("cid",channelId));
    add(new KeyValueParam("cldbid",clientDBId));
    add(new OptionParam("permsid"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CChannelGroupPermList extends Command{

  public CChannelGroupPermList(int groupId) {
    super("channelgrouppermlist");
    add(new KeyValueParam("cgid",groupId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CChannelList extends Command{

  public CChannelList() {
    super("channellist");
    add(new OptionParam("topic"));
    add(new OptionParam("flags"));
    add(new OptionParam("voice"));
    add(new OptionParam("limits"));
    add(new OptionParam("icon"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CChannelPermList extends Command {

  public CChannelPermList(int channelId) {
    super("channelpermlist");
    add(new KeyValueParam("cid",channelId+""));
    add(new OptionParam("permsid"));
  }
View Full Code Here

Examples of com.github.theholywaffle.teamspeak3.commands.parameter.OptionParam

public class CServerGroupClientList extends Command {

  public CServerGroupClientList(int groupId) {
    super("servergroupclientlist");
    add(new KeyValueParam("sgid",groupId+""));
    add(new OptionParam("names"));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.