hasExternalParentOf

abstract fun hasExternalParentOf(name: KClass<*>, vararg names: KClass<*>, indirectParents: Boolean = false): Boolean

Determines whether the declaration has at least one external parent of the specified KClass type.

Return

true if there is a matching declaration, false otherwise.

Parameters

name

the KClass type of the external parent to check.

names

the KClass types of the external parents to check.

indirectParents

specifies whether to include external parents defined in other files such as parent of the parent. If true, it includes only those external parents defined within our scope and those used by our declarations. For example:

// Android
class AppCompactActivity: Activity
interface Activity

// Project
class BaseActivity: AppCompactActivity() // externalParents(indirectParents = true) returns [AppCompactActivity]
class MyActivity: BaseActivity() // externalParents(indirectParents = true) returns [AppCompactActivity]

abstract fun hasExternalParentOf(names: Collection<KClass<*>>, indirectParents: Boolean = false): Boolean

Determines whether the declaration has at least one external parent of the specified KClass type.

Return

true if there is a matching declaration, false otherwise.

Parameters

names

the KClass types of the external parents to check.

indirectParents

specifies whether to include external parents defined in other files such as parent of the parent. If true, it includes only those external parents defined within our scope and those used by our declarations. For example:

// Android
class AppCompactActivity: Activity
interface Activity

// Project
class BaseActivity: AppCompactActivity() // externalParents(indirectParents = true) returns [AppCompactActivity]
class MyActivity: BaseActivity() // externalParents(indirectParents = true) returns [AppCompactActivity]