Package com.massivecraft.factions

Examples of com.massivecraft.factions.FactionEqualsPredictate


 
  // CONVENIENCE SEND MESSAGE
 
  public boolean sendMessage(String message)
  {
    return Mixin.message(new FactionEqualsPredictate(this), message);
  }
View Full Code Here


    return Mixin.message(new FactionEqualsPredictate(this), message);
  }
 
  public boolean sendMessage(String... messages)
  {
    return Mixin.message(new FactionEqualsPredictate(this), messages);
  }
View Full Code Here

    return Mixin.message(new FactionEqualsPredictate(this), messages);
  }
 
  public boolean sendMessage(Collection<String> messages)
  {
    return Mixin.message(new FactionEqualsPredictate(this), messages);
  }
View Full Code Here

 
  // CONVENIENCE MSG
 
  public boolean msg(String msg)
  {
    return Mixin.msg(new FactionEqualsPredictate(this), msg);
  }
View Full Code Here

    return Mixin.msg(new FactionEqualsPredictate(this), msg);
  }
 
  public boolean msg(String msg, Object... args)
  {
    return Mixin.msg(new FactionEqualsPredictate(this), msg, args);
  }
View Full Code Here

    return Mixin.msg(new FactionEqualsPredictate(this), msg, args);
  }
 
  public boolean msg(Collection<String> msgs)
  {
    return Mixin.msg(new FactionEqualsPredictate(this), msgs);
  }
View Full Code Here

TOP

Related Classes of com.massivecraft.factions.FactionEqualsPredictate

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.