📄 emj000003.java
字号:
package jm.entity.game.player;
import jm.framework.gui.JMEntity;
/**
* <p>Title: 职业技能</p>
*
* <p>Copyright: Copyright (c) 2004-2007</p>
*
* <p>Company: 1SHome</p>
*
* <p>@author Spook</p>
*
* @since 1.3.2
* @see JDK 1.5.0.6
*/
public class EMJ000003 implements JMEntity {
/** 职业技能编号*/
private String vocationSkillID = null;
/** 职业编号*/
private String vocationID = null;
/** 玩家角色编号*/
private String playerRoleID = null;
/** 职业技能等级*/
private String levels = null;
/** 职业技能经验*/
private String experience = null;
/** 奇偶行区分 */
private String rowsKb = null;
/**
* clear
*/
public void clear () {
/* 职业技能编号*/
this.vocationSkillID = null;
/* 职业编号*/
this.vocationID = null;
/* 玩家角色编号*/
this.playerRoleID = null;
/* 职业技能等级*/
this.levels = null;
/* 职业技能经验*/
this.experience = null;
}
/**
* 获得存储器内容
*
* @return 存储器内容
*/
public String getItems () {
return "VocationSkillID;VocationID;PlayerRoleID;Levels;Experience";
}
/**
* toString
*/
public String toString () {
return "SC000400:"
/* 职业技能编号*/
+ " vocationSkillID =" + this.vocationSkillID + ", "
/* 职业编号*/
+ " vocationID =" + this.vocationID + ", "
/* 玩家角色编号*/
+ " playerRoleID =" + this.playerRoleID + ", "
/* 职业技能等级*/
+ " levels =" + this.levels + ", "
/* 职业技能经验*/
+ " experience =" + this.experience + ", "
;
}
/**
* 获取职业技能编号
*
* @return VocationSkillID 职业技能编号
*/
public String getVocationSkillID () {
return this.vocationSkillID;
}
/**
* 获取职业编号
*
* @return VocationID 职业编号
*/
public String getVocationID () {
return this.vocationID;
}
/**
* 获取玩家角色编号
*
* @return PlayerRoleID 玩家角色编号
*/
public String getPlayerRoleID () {
return this.playerRoleID;
}
/**
* 获取职业技能等级
*
* @return Levels 职业技能等级
*/
public String getLevels () {
return this.levels;
}
/**
* 获取职业技能经验
*
* @return Experience 职业技能经验
*/
public String getExperience () {
return this.experience;
}
/**
* 获得奇偶行区分
*
* @return 奇偶行区分
*/
public String getRowsKb () {
return rowsKb;
}
/**
* 设置职业技能编号
*
* @param VocationSkillID 职业技能编号
*/
public void setVocationSkillID (String VocationSkillID) {
this.vocationSkillID = VocationSkillID;
}
/**
* 设置职业编号
*
* @param VocationID 职业编号
*/
public void setVocationID (String VocationID) {
this.vocationID = VocationID;
}
/**
* 设置玩家角色编号
*
* @param PlayerRoleID 玩家角色编号
*/
public void setPlayerRoleID (String PlayerRoleID) {
this.playerRoleID = PlayerRoleID;
}
/**
* 设置职业技能等级
*
* @param Levels 职业技能等级
*/
public void setLevels (String Levels) {
this.levels = Levels;
}
/**
* 设置职业技能经验
*
* @param Experience 职业技能经验
*/
public void setExperience (String Experience) {
this.experience = Experience;
}
/**
* 设置奇偶行区分
*
* @param string 奇偶行区分
*/
public void setRowsKb (String RowsKb) {
this.rowsKb = RowsKb;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -