diff --git a/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/InnerTableLinkEntity.kt b/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/InnerTableLinkEntity.kt index c847fd167e..6530602ff9 100644 --- a/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/InnerTableLinkEntity.kt +++ b/exposed-dao/src/main/kotlin/org/jetbrains/exposed/dao/InnerTableLinkEntity.kt @@ -15,14 +15,14 @@ import org.jetbrains.exposed.sql.ResultRow * * @param WID ID type of the [wrapped] entity instance. * @property wrapped The referenced (parent) entity whose unique ID value identifies this [InnerTableLinkEntity] instance. - * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithApproval + * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithData */ abstract class InnerTableLinkEntity>(val wrapped: Entity) : Entity(wrapped.id) { /** * Returns the initial column-property mapping for an [InnerTableLinkEntity] instance * before being flushed and inserted into the database. * - * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithApproval + * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithData */ abstract fun getInnerTableLinkValue(column: Column<*>): Any? } @@ -39,7 +39,7 @@ abstract class InnerTableLinkEntity>(val wrapped: Entity, out E : InnerTableLinkEntity>( table: IdTable @@ -48,7 +48,7 @@ abstract class InnerTableLinkEntityClass, out E : InnerTab * Creates a new [InnerTableLinkEntity] instance by using the provided [row] to both create the wrapped entity * and any additional columns. * - * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithApproval + * @sample org.jetbrains.exposed.sql.tests.shared.entities.ViaTests.ProjectWithData */ abstract override fun createInstance(entityId: EntityID, row: ResultRow?): E }