SuperMan.java
上传用户:hensond
上传日期:2021-12-27
资源大小:817k
文件大小:1k
- package com.company.builder;
- /**
- * @author cbf4Life cbf4life@126.com
- * I'm glad to share my knowledge with you all.
- */
- public class SuperMan {
-
- //超人的躯体
- private String body;
- //超人的特殊技能
- private String specialTalent;
- //超人的标志
- private String specialSymbol;
-
- public String getBody() {
- return body;
- }
- public void setBody(String body) {
- this.body = body;
- }
- public String getSpecialTalent() {
- return specialTalent;
- }
- public void setSpecialTalent(String specialTalent) {
- this.specialTalent = specialTalent;
- }
- public String getSpecialSymbol() {
- return specialSymbol;
- }
- public void setSpecialSymbol(String specialSymbol) {
- this.specialSymbol = specialSymbol;
- }
-
- }