Interface IManagedTypeVisitor
-
public interface IManagedTypeVisitor
The interface is used to visit aIManagedType
.Provisional API: This interface is part of an interim API that is still under development and expected to change significantly before reaching stability. It is available at this early stage to solicit feedback from pioneering adopters on the understanding that any code that uses this API will almost certainly be broken (repeatedly) as the API evolves.
- Version:
- 2.3
- Author:
- Pascal Filion
- Since:
- 2.3
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(IEmbeddable embeddable)
Visits the givenIEmbeddable
object.void
visit(IEntity entity)
Visits the givenIEntity
object.void
visit(IMappedSuperclass mappedSuperclass)
Visits the givenIMappedSuperclass
object.
-
-
-
Method Detail
-
visit
void visit(IEmbeddable embeddable)
Visits the givenIEmbeddable
object.- Parameters:
embeddable
- The embeddable object to visit
-
visit
void visit(IEntity entity)
Visits the givenIEntity
object.- Parameters:
entity
- The entity object to visit
-
visit
void visit(IMappedSuperclass mappedSuperclass)
Visits the givenIMappedSuperclass
object.- Parameters:
mappedSuperclass
- The mapped superclass object to visit
-
-