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

游戏

开发平台:

Java

  1. /*
  2. This file was written by "StellarAshes" <stellar_dust@hotmail.com> 
  3. as a part of the Guild package for
  4. the OdinMS Maple Story Server
  5. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  6. Matthias Butz <matze@odinms.de>
  7. Jan Christian Meyer <vimes@odinms.de>
  8. This program is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU Affero General Public License version 3
  10. as published by the Free Software Foundation. You may not use, modify
  11. or distribute this program under any other version of the
  12. GNU Affero General Public License.
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU Affero General Public License for more details.
  17. You should have received a copy of the GNU Affero General Public License
  18. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  19.  */
  20. package net.sf.odinms.net.world.guild;
  21. public class MapleGuildSummary implements java.io.Serializable {
  22.     public static final long serialVersionUID = 3565477792085301248L;
  23.     private String name;
  24.     private short logoBG;
  25.     private byte logoBGColor;
  26.     private short logo;
  27.     private byte logoColor;
  28.     private int allianceId;
  29.     public MapleGuildSummary(MapleGuild g) {
  30.         name = g.getName();
  31.         logoBG = (short) g.getLogoBG();
  32.         logoBGColor = (byte) g.getLogoBGColor();
  33.         logo = (short) g.getLogo();
  34.         logoColor = (byte) g.getLogoColor();
  35.         allianceId = g.getAllianceId();
  36.     }
  37.     public String getName() {
  38.         return name;
  39.     }
  40.     public short getLogoBG() {
  41.         return logoBG;
  42.     }
  43.     public byte getLogoBGColor() {
  44.         return logoBGColor;
  45.     }
  46.     public short getLogo() {
  47.         return logo;
  48.     }
  49.     public byte getLogoColor() {
  50.         return logoColor;
  51.     }
  52.     public int getAllianceId() {
  53.         return allianceId;
  54.     }
  55. }