individualcustomers.java
来自「CustomerInformationSystem 顾客的信息系统设计」· Java 代码 · 共 99 行
JAVA
99 行
package uml;
public class IndividualCustomers {
/**
* @uml.property name="telephone_number"
*/
private int telephone_number;
/**
* Getter of the property <tt>telephone_number</tt>
* @return Returns the telephone_number.
* @uml.property name="telephone_number"
*/
public int getTelephone_number() {
return telephone_number;
}
/**
* Setter of the property <tt>telephone_number</tt>
* @param telephone_number The telephone_number to set.
* @uml.property name="telephone_number"
*/
public void setTelephone_number(int telephone_number) {
this.telephone_number = telephone_number;
}
/**
* @uml.property name="name"
*/
private String name = "";
/**
* Getter of the property <tt>name</tt>
* @return Returns the name.
* @uml.property name="name"
*/
public String getName() {
return name;
}
/**
* Setter of the property <tt>name</tt>
* @param name The name to set.
* @uml.property name="name"
*/
public void setName(String name) {
this.name = name;
}
/**
* @uml.property name="email"
*/
private String email = "";
/**
* Getter of the property <tt>email</tt>
* @return Returns the email.
* @uml.property name="email"
*/
public String getEmail() {
return email;
}
/**
* Setter of the property <tt>email</tt>
* @param email The email to set.
* @uml.property name="email"
*/
public void setEmail(String email) {
this.email = email;
}
/**
* @uml.property name="home"
*/
private String home = "";
/**
* Getter of the property <tt>home</tt>
* @return Returns the home.
* @uml.property name="home"
*/
public String getHome() {
return home;
}
/**
* Setter of the property <tt>home</tt>
* @param home The home to set.
* @uml.property name="home"
*/
public void setHome(String home) {
this.home = home;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?