File
Doc
Category
Size
Date
Package
MyEntity.java
API Doc
Hibernate 3.2.5
526
Mon Nov 06 10:58:50 GMT 2006
org.hibernate.test.jpa
MyEntity
java.lang.Object
public class MyEntity extends Object
{@inheritDoc}
author
Steve Ebersole
Fields Summary
private Long
id
private String
name
private MyEntity
other
Constructors Summary
Methods Summary
public
java.lang.Long
getId
()
return id;
public
java.lang.String
getName
()
return name;
public
org.hibernate.test.jpa.MyEntity
getOther
()
return other;
public void
setId
(
java.lang.Long
id)
this.id = id;
public void
setName
(
java.lang.String
name)
this.name = name;
public void
setOther
(
org.hibernate.test.jpa.MyEntity
other)
this.other = other;
Java Code Source