⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addressbean.java

📁 iReport-0.4.1-src是iReport的源代码,iReport是一个开源的报表项目,可以生成PDF等格式报表
💻 JAVA
字号:
/* * AddressBean.java * * Created on 8 luglio 2004, 2.19 */package it.businesslogic.ireport.examples.beans;/** * * @author  Administrator */public class AddressBean {        private String street;        private String country;        private String state;        /** Creates a new instance of AddressBean */    public AddressBean() {    }        /**     * Getter for property country.     * @return Value of property country.     */    public java.lang.String getCountry() {        return country;    }        /**     * Setter for property country.     * @param country New value of property country.     */    public void setCountry(java.lang.String country) {        this.country = country;    }        /**     * Getter for property state.     * @return Value of property state.     */    public java.lang.String getState() {        return state;    }        /**     * Setter for property state.     * @param state New value of property state.     */    public void setState(java.lang.String state) {        this.state = state;    }        /**     * Getter for property street.     * @return Value of property street.     */    public java.lang.String getStreet() {        return street;    }        /**     * Setter for property street.     * @param street New value of property street.     */    public void setStreet(java.lang.String street) {        this.street = street;    }    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -