用Java实现的23个常用设计模式源代码

源代码在线查看: simple.java

软件大小: 12795 K
上传用户: haorenkv3
关键词: Java 设计模式 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				//$Id: Simple.java,v 1.1.2.1 2003/11/08 02:25:30 oneovthafew Exp $				package org.hibernate.test;								public class Simple {					private String name;					private String address;					private int count;					private java.util.Date date;					private Float number;					private Simple other;									private Long parent;											public Simple(int c) {						count=c;					}					public Simple() {}										public void init() {						name="Someone With Along Name";						address="1234 Some Street, Some City, Victoria, 3000, Austraya";						count=69;						date=new java.sql.Date(666);						number=new Float(55.8);					}					/**					 * Gets the name					 * @return Returns a String					 */					public String getName() {						return name;					}					/**					 * Sets the name					 * @param name The name to set					 */					public void setName(String name) {						this.name = name;					}										/**					 * Gets the address					 * @return Returns a String					 */					public String getAddress() {						return address;					}					/**					 * Sets the address					 * @param address The address to set					 */					public void setAddress(String address) {						this.address = address;					}										/**					 * Gets the count					 * @return Returns a int					 */					public int getCount() {						return count;					}					/**					 * Sets the count					 * @param count The count to set					 */					public void setCount(int count) {						this.count = count;					}										/**					 * Gets the date					 * @return Returns a java.util.Date					 */					public java.util.Date getDate() {						return date;					}					/**					 * Sets the date					 * @param date The date to set					 */					public void setDate(java.util.Date date) {						this.date = date;					}									/**					 * Gets the pay number					 * @return Returns a Float					 */					public Float getPay() {						return number;					}										/**					 * Sets the pay number					 * @param number The Pay to set					 */					public void setPay(Float number) {						this.number = number;					}										/**					 * Returns the other.					 * @return Simple					 */					public Simple getOther() {						return other;					}										/**					 * Sets the other.					 * @param other The other to set					 */					public void setOther(Simple other) {						this.other = other;					}									}																																			

相关资源