|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Class Summary | |
|---|---|
| UjoPropertyAccessor | A support for the Hibernate framework. |
| UjoPropertyGetter | A support for the Hibernate framework. |
| UjoPropertySetter | A support for the Hibernate framework. |
The Hibernate support.
<hibernate-mapping
package="performance.test"
default-access="org.ujoframework.hibernateSupport.UjoPropertyAccessor"
>
<class name="Order" table="MY_ORDER" >
...
public static final Property<Order,Long> ID = newProperty("id", Long.class); public static final Property<Order,Date> DATE = newProperty("myDate", Date.class); public Long getId() { return ID.of(this); } public Date getMyDate() { return DATE.of(this); }
|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||