File
Doc
Category
Size
Date
Package
Dimension.java
API Doc
Hibernate 3.2.5
495
Tue May 08 16:56:00 BST 2007
org.hibernate.test.sql.hand
Dimension
java.lang.Object
public class Dimension extends Object
Used to mimic some tests from the JPA testsuite...
author
Steve Ebersole
Fields Summary
private Long
id
private int
length
private int
width
Constructors Summary
public Dimension
()
public Dimension
(
int
length,
int
width)
this.length = length; this.width = width;
Methods Summary
public
java.lang.Long
getId
()
return id;
public
int
getLength
()
return length;
public
int
getWidth
()
return width;
Java Code Source