Package com.dthielke.herochat

Examples of com.dthielke.herochat.Channel


  public boolean equals(Object other)
  {
    if (other == this) return true;
    if (other == null) return false;
    if (!(other instanceof Channel)) return false;
    Channel channel = (Channel)other;
    return (this.getName().equalsIgnoreCase(channel.getName())) || (this.getName().equalsIgnoreCase(channel.getNick()));
  }
View Full Code Here

TOP

Related Classes of com.dthielke.herochat.Channel

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.