BuddylistEntry.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:3k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.client;
  19. public class BuddylistEntry {
  20.     private String name;
  21.     private int cid;
  22.     private int channel;
  23.     private boolean visible;
  24.     /**
  25.      * 
  26.      * @param name
  27.      * @param characterId
  28.      * @param channel should be -1 if the buddy is offline
  29.      * @param visible
  30.      */
  31.     public BuddylistEntry(String name, int characterId, int channel, boolean visible) {
  32.         super();
  33.         this.name = name;
  34.         this.cid = characterId;
  35.         this.channel = channel;
  36.         this.visible = visible;
  37.     }
  38.     /**
  39.      * @return the channel the character is on. If the character is offline returns -1.
  40.      */
  41.     public int getChannel() {
  42.         return channel;
  43.     }
  44.     public void setChannel(int channel) {
  45.         this.channel = channel;
  46.     }
  47.     public boolean isOnline() {
  48.         return channel >= 0;
  49.     }
  50.     public void setOffline() {
  51.         channel = -1;
  52.     }
  53.     public String getName() {
  54.         return name;
  55.     }
  56.     public int getCharacterId() {
  57.         return cid;
  58.     }
  59.     public void setVisible(boolean visible) {
  60.         this.visible = visible;
  61.     }
  62.     public boolean isVisible() {
  63.         return visible;
  64.     }
  65.     @Override
  66.     public int hashCode() {
  67.         final int prime = 31;
  68.         int result = 1;
  69.         result = prime * result + cid;
  70.         return result;
  71.     }
  72.     @Override
  73.     public boolean equals(Object obj) {
  74.         if (this == obj) {
  75.             return true;
  76.         }
  77.         if (obj == null) {
  78.             return false;
  79.         }
  80.         if (getClass() != obj.getClass()) {
  81.             return false;
  82.         }
  83.         final BuddylistEntry other = (BuddylistEntry) obj;
  84.         if (cid != other.cid) {
  85.             return false;
  86.         }
  87.         return true;
  88.     }
  89. }