Package com.uwyn.drone.protocol.commands

Examples of com.uwyn.drone.protocol.commands.Names


        if (!seens_waiting.contains(seen))
        {
          seens_waiting.add(seen);
         
          // request the current list of names in the channel
          bot.send(new Names(channel.getName()));
        }
      }
    }
  }
View Full Code Here


        if (!message_seen.getNicks().contains(nick))
        {
          message_seen.getNicks().add(nick);
         
          // request the current list of names in the channel
          bot.send(new Names(channel.getName()));
        }
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.uwyn.drone.protocol.commands.Names

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.