HHH-15099 - Improve handling of associations marked with @NotFound
- Javadoc improvements for `@NotFound`-related tests
This commit is contained in:
parent
d52ebfb41d
commit
ceb7df0c51
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
*
|
||||||
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
||||||
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for how {@link org.hibernate.annotations.NotFound} mappings
|
||||||
|
* work with bytecode enhancement.
|
||||||
|
*
|
||||||
|
* See tests in {@link org.hibernate.orm.test.notfound} for tests
|
||||||
|
* specific to {@link org.hibernate.annotations.NotFound} mappings
|
||||||
|
*
|
||||||
|
* @author Steve Ebersole
|
||||||
|
*/
|
||||||
|
package org.hibernate.orm.test.bytecode.enhancement.lazy.notfound;
|
|
@ -0,0 +1,17 @@
|
||||||
|
/*
|
||||||
|
* Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
*
|
||||||
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
||||||
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tests for {@link org.hibernate.annotations.NotFound} mappings
|
||||||
|
*
|
||||||
|
* See also {@link org.hibernate.orm.test.bytecode.enhancement.lazy.notfound} for
|
||||||
|
* tests related to how {@link org.hibernate.annotations.NotFound} mappings work
|
||||||
|
* with bytecode enhancement
|
||||||
|
*
|
||||||
|
* @author Steve Ebersole
|
||||||
|
*/
|
||||||
|
package org.hibernate.orm.test.notfound;
|
Loading…
Reference in New Issue