Class EntityWithOneToManyNotOwned
- java.lang.Object
-
- org.hibernate.testing.orm.domain.gambit.EntityWithOneToManyNotOwned
-
@Entity public class EntityWithOneToManyNotOwned extends Object
-
-
Constructor Summary
Constructors Constructor Description EntityWithOneToManyNotOwned()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addChild(EntityWithManyToOneWithoutJoinTable child)
List<EntityWithManyToOneWithoutJoinTable>
getChildren()
Integer
getId()
void
setChildren(List<EntityWithManyToOneWithoutJoinTable> children)
void
setId(Integer id)
-
-
-
Method Detail
-
getId
public Integer getId()
-
setId
public void setId(Integer id)
-
getChildren
public List<EntityWithManyToOneWithoutJoinTable> getChildren()
-
setChildren
public void setChildren(List<EntityWithManyToOneWithoutJoinTable> children)
-
addChild
public void addChild(EntityWithManyToOneWithoutJoinTable child)
-
-