资源简介
javaweb主流框架整合开发ssh个人通讯录例子
代码片段和文件信息
/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Thu Aug 23 16:46:04 CST 2007 by MyEclipse Hibernate Tool.
*/
package com.demo.hibernate.beans;
import java.io.Serializable;
/**
* A class that represents a row in the address table. You can customize the
* behavior of this class by editing the class {@link Address()}. WARNING: DO
* NOT EDIT THIS FILE. This is a generated file that is synchronized by
* MyEclipse Hibernate tool integration.
*/
public abstract class AbstractAddress implements Serializable {
/**
* The cached hash code value for this instance. Settting to 0 triggers
* re-calculation.
*/
private int hashValue = 0;
/** The composite primary key value. */
private java.lang.Integer id;
/** The value of the simple username property. */
private java.lang.String username;
/** The value of the simple name property. */
private java.lang.String name;
/** The value of the simple sex property. */
private java.lang.String sex;
/** The value of the simple mobile property. */
private java.lang.String mobile;
/** The value of the simple email property. */
private java.lang.String email;
/** The value of the simple qq property. */
private java.lang.String qq;
/** The value of the simple company property. */
private java.lang.String company;
/** The value of the simple address property. */
private java.lang.String address;
/** The value of the simple postcode property. */
private java.lang.String postcode;
/**
* Simple constructor of AbstractAddress instances.
*/
public AbstractAddress() {
}
/**
* Constructor of AbstractAddress instances given a simple primary key.
*
* @param id
*/
public AbstractAddress(java.lang.Integer id) {
this.setId(id);
}
/**
* Return the simple primary key value that identifies this object.
*
* @return java.lang.Integer
*/
public java.lang.Integer getId() {
return id;
}
/**
* Set the simple primary key value that identifies this object.
*
* @param id
*/
public void setId(java.lang.Integer id) {
this.hashValue = 0;
this.id = id;
}
/**
* Return the value of the username column.
*
* @return java.lang.String
*/
public java.lang.String getUsername() {
return this.username;
}
/**
* Set the value of the username column.
*
* @param username
*/
public void setUsername(java.lang.String username) {
this.username = username;
}
/**
* Return the value of the name column.
*
* @return java.lang.String
*/
public java.lang.String getName() {
return this.name;
}
/**
* Set the value of the name column.
*
* @param name
*/
public void setName(java.lang.String name) {
this.name = name;
}
/**
* Return the value of the sex column.
*
* @return java.lang.String
*/
publ
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2009-12-26 15:51 demo\
文件 845 2009-12-26 15:51 demo\.classpath
文件 1037 2009-12-26 15:51 demo\.project
目录 0 2009-12-26 15:51 demo\.settings\
文件 454 2009-12-26 15:51 demo\.settings\.jsdtscope
文件 330 2009-12-26 15:51 demo\.settings\org.eclipse.jdt.core.prefs
文件 414 2009-12-26 15:51 demo\.settings\org.eclipse.wst.common.component
文件 320 2009-12-26 15:51 demo\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 49 2009-12-26 15:51 demo\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2009-12-26 15:51 demo\.settings\org.eclipse.wst.jsdt.ui.superType.name
目录 0 2009-12-26 15:51 demo\build\
目录 0 2009-12-26 21:13 demo\build\classes\
目录 0 2009-12-26 21:13 demo\build\classes\com\
目录 0 2009-12-26 21:13 demo\build\classes\com\demo\
目录 0 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\
目录 0 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\beans\
文件 3082 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\beans\AbstractAddress.class
文件 1960 2009-12-26 21:13 demo\build\classes\com\demo\hibernate\beans\AbstractUser.class
文件 490 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\beans\Address.class
文件 1400 2007-11-20 14:58 demo\build\classes\com\demo\hibernate\beans\Address.hbm.xm
文件 478 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\beans\User.class
文件 884 2007-11-19 22:33 demo\build\classes\com\demo\hibernate\beans\User.hbm.xm
目录 0 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\dao\
文件 1470 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\dao\AddressDAO$1.class
文件 1535 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\dao\AddressDAO$2.class
文件 4121 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\dao\AddressDAO.class
文件 586 2009-12-26 21:17 demo\build\classes\com\demo\hibernate\dao\IAddressDAO.class
文件 437 2009-12-26 21:13 demo\build\classes\com\demo\hibernate\dao\IUserDAO.class
文件 1534 2009-12-26 21:13 demo\build\classes\com\demo\hibernate\dao\UserDAO$1.class
文件 1424 2009-12-26 21:13 demo\build\classes\com\demo\hibernate\dao\UserDAO$2.class
文件 2295 2009-12-26 21:13 demo\build\classes\com\demo\hibernate\dao\UserDAO.class
............此处省略178个文件信息
评论
共有 条评论