📄 address.java
字号:
/* * Address.java * * Created on November 29, 2001, 9:31 AM */package com.sams.jxta.vcard;/** * * @author Administrator */public class Address { protected String type=""; protected String pobox=""; protected String extadd=""; protected String street=""; protected String city=""; protected String state=""; protected String postalCode=""; protected String country=""; /** Creates new Address */ public Address() { } /** Getter for property street. * @return Value of property street. */ public String getStreet() { return this.street; } /** Setter for property street. * @param street New value of property street. */ public void setStreet(String street) { this.street = street; } /** Getter for property state. * @return Value of property state. */ public String getState() { return this.state; } /** Setter for property state. * @param state New value of property state. */ public void setState(String state) { this.state = state; } /** Getter for property postalCode. * @return Value of property postalCode. */ public String getPostalCode() { return this.postalCode; } /** Setter for property postalCode. * @param postalCode New value of property postalCode. */ public void setPostalCode(String postalCode) { this.postalCode = postalCode; } /** Getter for property country. * @return Value of property country. */ public String getCountry() { return this.country; } /** Setter for property country. * @param country New value of property country. */ public void setCountry(String country) { this.country = country; } /** Getter for property city. * @return Value of property city. */ public String getCity() { return this.city; } /** Setter for property city. * @param city New value of property city. */ public void setCity(String city) { this.city = city; } /** Getter for property type. * @return Value of property type. */ public java.lang.String getType() { return this.type; } /** Setter for property type. * @param type New value of property type. */ public void setType(java.lang.String type) { this.type = type; } /** Getter for property pobox. * @return Value of property pobox. */ public java.lang.String getPobox() { return this.pobox; } /** Setter for property pobox. * @param pobox New value of property pobox. */ public void setPobox(java.lang.String pobox) { this.pobox = pobox; } /** Getter for property extadd. * @return Value of property extadd. */ public java.lang.String getExtadd() { return this.extadd; } /** Setter for property extadd. * @param extadd New value of property extadd. */ public void setExtadd(java.lang.String extadd) { this.extadd = extadd; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -