资源简介
内附配置录像,源码。
代码片段和文件信息
/*
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized
* by MyEclipse Hibernate tool integration.
*
* Created Thu Apr 14 21:57:25 CST 2005 by MyEclipse Hibernate Tool.
*/
package com.sonic;
import java.io.Serializable;
/**
* A class that represents a row in the USERLIST table.
* You can customize the behavior of this class by editing the class {@link Userlist()}.
* WARNING: DO NOT EDIT THIS FILE. This is a generated file that is synchronized * by MyEclipse Hibernate tool integration.
*/
public abstract class AbstractUserlist
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.Long id;
/** The value of the simple username property. */
private java.lang.String username;
/** The value of the simple userpwd property. */
private java.lang.String userpwd;
/**
* Simple constructor of AbstractUserlist instances.
*/
public AbstractUserlist()
{
}
/**
* Constructor of AbstractUserlist instances given a simple primary key.
* @param id
*/
public AbstractUserlist(java.lang.Long id)
{
this.setId(id);
}
/**
* Return the simple primary key value that identifies this object.
* @return java.lang.Long
*/
public java.lang.Long getId()
{
return id;
}
/**
* Set the simple primary key value that identifies this object.
* @param id
*/
public void setId(java.lang.Long 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 USERPWD column.
* @return java.lang.String
*/
public java.lang.String getUserpwd()
{
return this.userpwd;
}
/**
* Set the value of the USERPWD column.
* @param userpwd
*/
public void setUserpwd(java.lang.String userpwd)
{
this.userpwd = userpwd;
}
/**
* Implementation of the equals comparison on the basis of equality of the primary key values.
* @param rhs
* @return boolean
*/
public boolean equals(object rhs)
{
if (rhs == null)
return false;
if (! (rhs instanceof Userlist))
return false;
Userlist that = (Userlist) rhs;
if (this.getId() != null && that.getId() != null)
{
if (! this.getId().equals(that.getId()))
{
return false;
}
}
return true;
}
/*
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3601 2005-04-14 21:55 oracle2\.classpath
文件 714 2005-04-14 21:57 oracle2\.myhibernatedata
文件 297 2005-04-14 21:51 oracle2\.myme
文件 356 2005-04-14 21:51 oracle2\.mystrutsdata
文件 1632 2005-04-14 22:03 oracle2\.project
文件 3509 2005-04-14 21:57 oracle2\src\com\sonic\AbstractUserlist.java
文件 1360 2005-04-14 21:58 oracle2\src\com\sonic\HibernateUtil.java
文件 2253 2005-04-14 22:00 oracle2\src\com\sonic\struts\action\LoginAction.java
文件 85 2005-04-14 21:51 oracle2\src\com\sonic\struts\ApplicationResources.properties
文件 2703 2005-04-14 21:55 oracle2\src\com\sonic\struts\HibernateSessionFactory.java
文件 858 2005-04-14 21:57 oracle2\src\com\sonic\Userlist.hbm.xm
文件 671 2005-04-14 21:57 oracle2\src\com\sonic\Userlist.java
文件 986 2005-04-14 21:57 oracle2\src\hibernate.cfg.xm
文件 686 2005-04-14 22:02 oracle2\WebRoot\index.jsp
文件 39 2005-04-14 21:51 oracle2\WebRoot\me
文件 32 2005-04-14 22:03 oracle2\WebRoot\WEB-INF\.struts-config.mex
文件 1678 2005-04-14 21:57 oracle2\WebRoot\WEB-INF\classes\com\sonic\AbstractUserlist.class
文件 2180 2005-04-14 21:58 oracle2\WebRoot\WEB-INF\classes\com\sonic\HibernateUtil.class
文件 2782 2005-04-14 22:00 oracle2\WebRoot\WEB-INF\classes\com\sonic\struts\action\LoginAction.class
文件 85 2005-04-14 21:51 oracle2\WebRoot\WEB-INF\classes\com\sonic\struts\ApplicationResources.properties
文件 1868 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\classes\com\sonic\struts\HibernateSessionFactory.class
文件 443 2005-04-14 21:57 oracle2\WebRoot\WEB-INF\classes\com\sonic\Userlist.class
文件 858 2005-04-14 21:57 oracle2\WebRoot\WEB-INF\classes\com\sonic\Userlist.hbm.xm
文件 986 2005-04-14 21:57 oracle2\WebRoot\WEB-INF\classes\hibernate.cfg.xm
文件 737884 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\lib\ant-1.5.3.jar
文件 671546 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\lib\ant-optional-1.5.3.jar
文件 348666 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\lib\c3p0-0.8.4.5.jar
文件 307930 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\lib\cglib-full-2.0.2.jar
文件 1936596 2005-04-14 21:55 oracle2\WebRoot\WEB-INF\lib\classes12.jar
文件 118726 2005-04-14 21:51 oracle2\WebRoot\WEB-INF\lib\commons-beanutils.jar
............此处省略19个文件信息
评论
共有 条评论