/*
* Generated by XDoclet - Do not edit!
*/
package org.openxava.test.model;
/**
* Data object for SellerLevel.
*/
public class SellerLevelData
extends java.lang.Object
implements java.io.Serializable
{
private static final long serialVersionUID = 1L;
private java.lang.String id;
private java.lang.String _Description;
public SellerLevelData()
{
}
public SellerLevelData( SellerLevelData otherData )
{
setId(otherData.getId());
set_Description(otherData.get_Description());
}
public org.openxava.test.model.SellerLevelKey getPrimaryKey() {
org.openxava.test.model.SellerLevelKey pk = new org.openxava.test.model.SellerLevelKey(this.getId());
return pk;
}
public java.lang.String getId()
{
return this.id;
}
public void setId( java.lang.String id )
{
this.id = id;
}
public java.lang.String get_Description()
{
return this._Description;
}
public void set_Description( java.lang.String _Description )
{
this._Description = _Description;
}
public String toString()
{
StringBuffer str = new StringBuffer("{");
str.append("id=" + getId() + " " + "_Description=" + get_Description());
str.append('}');
return(str.toString());
}
public boolean equals( Object pOther )
{
if( pOther instanceof SellerLevelData )
{
SellerLevelData lTest = (SellerLevelData) pOther;
boolean lEquals = true;
if( this.id == null )
{
lEquals = lEquals && ( lTest.id == null );
}
else
{
lEquals = lEquals && this.id.equals( lTest.id );
}
if( this._Description == null )
{
lEquals = lEquals && ( lTest._Description == null );
}
else
{
lEquals = lEquals && this._Description.equals( lTest._Description );
}
return lEquals;
}
else
{
return false;
}
}
public int hashCode()
{
int result = 17;
result = 37*result + ((this.id != null) ? this.id.hashCode() : 0);
result = 37*result + ((this._Description != null) ? this._Description.hashCode() : 0);
return result;
}
}
|