?? contactinfo.java
字號:
package apusic.myshop.util;public class ContactInfo implements java.io.Serializable { private String name; private String phone; private String email; private String address; private String province; private String city; private String zip; private String country; public ContactInfo(String name, String phone, String email, String address, String province, String city, String zip, String country) { this.name = name; this.phone = phone; this.email = email; this.address = address; this.province = province; this.city = city; this.zip = zip; this.country = country; } public String getName() { return name; } public String getPhone() { return phone; } public String getEmail() { return email; } public String getAddress() { return address; } public String getProvince() { return province; } public String getCity() { return city; } public String getZip() { return zip; } public String getCountry() { return country; }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -