Changes
Page history
Update Custom-Base-Entity.md
authored
Sep 29, 2023
by
Ticxo
Show whitespace changes
Inline
Side-by-side
API/Advanced/Custom-Base-Entity.md
View page @
e6d34f0e
Sometimes you are trying to apply a model to something that is not an entity, or you want something that is a bit more
complex than the default
`Dummy`
. You can wrap your custom target with
`BaseEntity`
class.
complex than the default
`Dummy`
. You can wrap your custom target with
your own
`BaseEntity`
class.
```
java
public
class
CustomBaseEntity
implements
BaseEntity
<
CustomTarget
>
{
...
...
...
...