From d11819cd3b85590691c4eea96bac8177fb2ee114 Mon Sep 17 00:00:00 2001 From: Vadim Mishenev Date: Tue, 26 Nov 2024 23:11:55 +0200 Subject: [PATCH] Update external link URL to stdlib (#3938) --- docs/topics/runners/dokka-cli.md | 8 +- docs/topics/runners/dokka-gradle.md | 4 +- docs/topics/runners/dokka-maven.md | 2 +- .../dokka/it/cli/CliIntegrationTest.kt | 4 +- .../-menu-item/-menu-item.html | 2 +- .../-menu-item/index.html | 10 +- .../-menu-item/is-important.html | 2 +- .../-menu-item/label.html | 2 +- .../-menu-item/on-click.html | 2 +- .../org.dokka.it.android.kmp.core/index.html | 2 +- .../-integration-test-activity/index.html | 404 +++++++++--------- .../demo/-greeter/-greeter.html | 2 +- .../demo/-greeter/index.html | 6 +- .../demo/-greeter/name.html | 2 +- .../-dokka -gradle -example/demo/index.html | 4 +- .../-dokka -gradle -example/demo/main.html | 2 +- .../-kakapo/description.html | 2 +- .../-kakapo/index.html | 2 +- .../-kea/description.html | 2 +- .../foo.example.module.kea/-kea/index.html | 2 +- .../demo/-greeter/-greeter.html | 2 +- .../demo/-greeter/index.html | 6 +- .../demo/-greeter/name.html | 2 +- .../custom-format-example/demo/index.html | 4 +- .../html/custom-format-example/demo/main.html | 2 +- .../demo/-my-java-application/index.html | 2 +- .../demo/-my-java-application/main.html | 2 +- .../javadoc-example/javadoc/demo/Greeter.html | 4 +- .../javadoc/demo/HelloWorldKt.html | 6 +- .../demo/-greeter/greet.html | 2 +- .../demo/-greeter/index.html | 2 +- .../demo/-hello-world-kt/index.html | 2 +- .../demo/-hello-world-kt/main.html | 2 +- .../async-with-delay.html | 2 +- .../org.kotlintestmpp.coroutines/index.html | 4 +- .../org.kotlintestmpp.coroutines/name.html | 2 +- .../get-current-date.html | 2 +- .../org.kotlintestmpp.date/get-date.html | 2 +- .../org.kotlintestmpp.date/index.html | 4 +- .../-java-annotation/aliases.html | 2 +- .../-java-annotation/index.html | 6 +- .../org.kotlintestmpp/[js]my-extension.html | 2 +- .../org.kotlintestmpp/[jvm]my-extension.html | 2 +- .../org.kotlintestmpp/index.html | 6 +- .../print-pointer-raw-value.html | 2 +- .../start-connection-pipeline.html | 2 +- .../demo/-greeter/-greeter.html | 2 +- .../demo/-greeter/index.html | 6 +- .../demo/-greeter/name.html | 2 +- .../demo/index.html | 4 +- .../demo/main.html | 2 +- .../javadoc/demo/Greeter.html | 4 +- .../javadoc/demo/HelloWorldKt.html | 6 +- .../src/main/kotlin/DokkaBasePlugin.kt | 2 +- .../parameters/DokkaSourceSetSpecTest.kt | 2 +- .../maven/ExternalDocumentationLinkBuilder.kt | 4 +- .../test/sample/SampleRewriterTest.kt | 8 +- .../dokka/testApi/testRunner/TestRunner.kt | 4 +- .../jetbrains/dokka/defaultExternalLinks.kt | 2 +- .../DefaultExternalLocationProviderTest.kt | 2 +- .../Dokka010ExternalLocationProviderTest.kt | 2 +- .../MultiModuleLinkingTest.kt | 2 +- .../test/kotlin/signatures/SignatureTest.kt | 4 +- .../javadoc/location/JavadocLocationTest.kt | 6 +- .../MultiplatformConfiguredCheckerTest.kt | 6 +- 65 files changed, 306 insertions(+), 306 deletions(-) diff --git a/docs/topics/runners/dokka-cli.md b/docs/topics/runners/dokka-cli.md index 9607dcf1d1..b1cc978838 100644 --- a/docs/topics/runners/dokka-cli.md +++ b/docs/topics/runners/dokka-cli.md @@ -737,8 +737,8 @@ Below you can see all possible configuration options applied at the same time. "packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list" }, { - "url": "https://kotlinlang.org/api/latest/jvm/stdlib/", - "packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list" + "url": "https://kotlinlang.org/api/core/kotlin-stdlib/", + "packageListUrl": "https://kotlinlang.org/api/core/kotlin-stdlib/package-list" } ], "perPackageOptions": [ @@ -802,8 +802,8 @@ Below you can see all possible configuration options applied at the same time. "packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list" }, { - "url": "https://kotlinlang.org/api/latest/jvm/stdlib/", - "packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list" + "url": "https://kotlinlang.org/api/core/kotlin-stdlib/", + "packageListUrl": "https://kotlinlang.org/api/core/kotlin-stdlib/package-list" } ], "perPackageOptions": [ diff --git a/docs/topics/runners/dokka-gradle.md b/docs/topics/runners/dokka-gradle.md index 4b279e46ff..ef6b6f1c50 100644 --- a/docs/topics/runners/dokka-gradle.md +++ b/docs/topics/runners/dokka-gradle.md @@ -1438,7 +1438,7 @@ tasks.withType().configureEach { } externalDocumentationLink { - url.set(URL("https://kotlinlang.org/api/latest/jvm/stdlib/")) + url.set(URL("https://kotlinlang.org/api/core/kotlin-stdlib/")) packageListUrl.set( rootProject.projectDir.resolve("stdlib.package.list").toURL() ) @@ -1517,7 +1517,7 @@ tasks.withType(DokkaTask.class) { } externalDocumentationLink { - url.set(new URL("https://kotlinlang.org/api/latest/jvm/stdlib/")) + url.set(new URL("https://kotlinlang.org/api/core/kotlin-stdlib/")) packageListUrl.set( file("stdlib.package.list").toURL() ) diff --git a/docs/topics/runners/dokka-maven.md b/docs/topics/runners/dokka-maven.md index 3e8947e265..508eb767f3 100644 --- a/docs/topics/runners/dokka-maven.md +++ b/docs/topics/runners/dokka-maven.md @@ -622,7 +622,7 @@ Below you can see all the possible configuration options applied at the same tim - https://kotlinlang.org/api/latest/jvm/stdlib/ + https://kotlinlang.org/api/core/kotlin-stdlib/ file:/${project.basedir}/stdlib.package.list diff --git a/dokka-integration-tests/cli/src/cliIntegrationTest/kotlin/org/jetbrains/dokka/it/cli/CliIntegrationTest.kt b/dokka-integration-tests/cli/src/cliIntegrationTest/kotlin/org/jetbrains/dokka/it/cli/CliIntegrationTest.kt index 9a4caedf91..ad6f77e92a 100644 --- a/dokka-integration-tests/cli/src/cliIntegrationTest/kotlin/org/jetbrains/dokka/it/cli/CliIntegrationTest.kt +++ b/dokka-integration-tests/cli/src/cliIntegrationTest/kotlin/org/jetbrains/dokka/it/cli/CliIntegrationTest.kt @@ -344,8 +344,8 @@ class CliIntegrationTest : AbstractCliIntegrationTest() { "packageListUrl": "https://docs.oracle.com/javase/8/docs/api/package-list" }, { - "url": "https://kotlinlang.org/api/latest/jvm/stdlib/", - "packageListUrl": "https://kotlinlang.org/api/latest/jvm/stdlib/package-list" + "url": "https://kotlinlang.org/api/core/", + "packageListUrl": "https://kotlinlang.org/api/core/package-list" } """.trimIndent(), globalPerPackageOptions = """ diff --git a/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/-menu-item.html b/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/-menu-item.html index e32a60d0af..639303106c 100644 --- a/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/-menu-item.html +++ b/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/-menu-item.html @@ -65,7 +65,7 @@

MenuItem

-
constructor(label: String, imageVector: ImageVector, onClick: () -> Unit, isImportant: Boolean)
+
constructor(label: String, imageVector: ImageVector, onClick: () -> Unit, isImportant: Boolean)
@@ -115,7 +115,7 @@

Properties

@@ -130,7 +130,7 @@

Properties

- +
@@ -145,7 +145,7 @@

Properties

-
val onClick: () -> Unit
+
val onClick: () -> Unit
diff --git a/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/is-important.html b/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/is-important.html index 2898008a56..9b2169e475 100644 --- a/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/is-important.html +++ b/dokka-integration-tests/gradle/projects/it-android-compose/expectedData/html/core/org.dokka.it.android.kmp.core/-menu-item/is-important.html @@ -65,7 +65,7 @@

isImportant

- +
-
data class MenuItem(val label: String, val imageVector: ImageVector, val onClick: () -> Unit, val isImportant: Boolean)
+
data class MenuItem(val label: String, val imageVector: ImageVector, val onClick: () -> Unit, val isImportant: Boolean)
diff --git a/dokka-integration-tests/gradle/projects/it-android/expectedData/html/it-android/it.android/-integration-test-activity/index.html b/dokka-integration-tests/gradle/projects/it-android/expectedData/html/it-android/it.android/-integration-test-activity/index.html index 7caf414534..b9ada6bf94 100644 --- a/dokka-integration-tests/gradle/projects/it-android/expectedData/html/it-android/it.android/-integration-test-activity/index.html +++ b/dokka-integration-tests/gradle/projects/it-android/expectedData/html/it-android/it.android/-integration-test-activity/index.html @@ -133,7 +133,7 @@

Functions

-
open override fun bindIsolatedService(p0: Intent, p1: Int, p2: String, p3: Executor, p4: ServiceConnection): Boolean
+
open override fun bindIsolatedService(p0: Intent, p1: Int, p2: String, p3: Executor, p4: ServiceConnection): Boolean
@@ -148,7 +148,7 @@

Functions

-
open override fun bindService(p0: Intent, p1: ServiceConnection, p2: Int): Boolean
open override fun bindService(p0: Intent, p1: Int, p2: Executor, p3: ServiceConnection): Boolean
+
open override fun bindService(p0: Intent, p1: ServiceConnection, p2: Int): Boolean
open override fun bindService(p0: Intent, p1: Int, p2: Executor, p3: ServiceConnection): Boolean
@@ -163,7 +163,7 @@

Functions

-
open override fun checkCallingOrSelfPermission(p0: String): Int
+
open override fun checkCallingOrSelfPermission(p0: String): Int
@@ -178,7 +178,7 @@

Functions

-
open override fun checkCallingOrSelfUriPermission(p0: Uri, p1: Int): Int
+
open override fun checkCallingOrSelfUriPermission(p0: Uri, p1: Int): Int
@@ -193,7 +193,7 @@

Functions

-
open override fun checkCallingPermission(p0: String): Int
+
open override fun checkCallingPermission(p0: String): Int
@@ -208,7 +208,7 @@

Functions

-
open override fun checkCallingUriPermission(p0: Uri, p1: Int): Int
+
open override fun checkCallingUriPermission(p0: Uri, p1: Int): Int
@@ -223,7 +223,7 @@

Functions

-
open override fun checkPermission(p0: String, p1: Int, p2: Int): Int
+
open override fun checkPermission(p0: String, p1: Int, p2: Int): Int
@@ -238,7 +238,7 @@

Functions

-
open override fun checkSelfPermission(p0: String): Int
+
open override fun checkSelfPermission(p0: String): Int
@@ -253,7 +253,7 @@

Functions

-
open override fun checkUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int): Int
open override fun checkUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int): Int
+
open override fun checkUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int): Int
open override fun checkUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int): Int
@@ -328,7 +328,7 @@

Functions

-
open override fun createContextForSplit(p0: String): Context
+
open override fun createContextForSplit(p0: String): Context
@@ -373,7 +373,7 @@

Functions

-
open override fun createPackageContext(p0: String, p1: Int): Context
+
open override fun createPackageContext(p0: String, p1: Int): Context
@@ -388,7 +388,7 @@

Functions

- +
@@ -403,7 +403,7 @@

Functions

-
open override fun databaseList(): Array<String>
+
open override fun databaseList(): Array<String>
@@ -418,7 +418,7 @@

Functions

-
open override fun deleteDatabase(p0: String): Boolean
+
open override fun deleteDatabase(p0: String): Boolean
@@ -433,7 +433,7 @@

Functions

-
open override fun deleteFile(p0: String): Boolean
+
open override fun deleteFile(p0: String): Boolean
@@ -448,7 +448,7 @@

Functions

-
open override fun deleteSharedPreferences(p0: String): Boolean
+
open override fun deleteSharedPreferences(p0: String): Boolean
@@ -463,7 +463,7 @@

Functions

- +
@@ -493,7 +493,7 @@

Functions

- +
@@ -508,7 +508,7 @@

Functions

-
open override fun dispatchKeyEvent(p0: KeyEvent): Boolean
+
open override fun dispatchKeyEvent(p0: KeyEvent): Boolean
@@ -523,7 +523,7 @@

Functions

-
open override fun dispatchKeyShortcutEvent(p0: KeyEvent): Boolean
+
open override fun dispatchKeyShortcutEvent(p0: KeyEvent): Boolean
@@ -538,7 +538,7 @@

Functions

@@ -553,7 +553,7 @@

Functions

-
open override fun dispatchTouchEvent(p0: MotionEvent): Boolean
+
open override fun dispatchTouchEvent(p0: MotionEvent): Boolean
@@ -568,7 +568,7 @@

Functions

- +
@@ -583,7 +583,7 @@

Functions

-
open override fun dump(@NonNull p0: String, @Nullable p1: FileDescriptor?, @NonNull p2: PrintWriter, @Nullable p3: Array<String>?)
+
open override fun dump(@NonNull p0: String, @Nullable p1: FileDescriptor?, @NonNull p2: PrintWriter, @Nullable p3: Array<String>?)
@@ -598,7 +598,7 @@

Functions

-
open override fun enforceCallingOrSelfPermission(p0: String, p1: String?)
+
open override fun enforceCallingOrSelfPermission(p0: String, p1: String?)
@@ -613,7 +613,7 @@

Functions

-
open override fun enforceCallingOrSelfUriPermission(p0: Uri, p1: Int, p2: String)
+
open override fun enforceCallingOrSelfUriPermission(p0: Uri, p1: Int, p2: String)
@@ -628,7 +628,7 @@

Functions

-
open override fun enforceCallingPermission(p0: String, p1: String?)
+
open override fun enforceCallingPermission(p0: String, p1: String?)
@@ -643,7 +643,7 @@

Functions

-
open override fun enforceCallingUriPermission(p0: Uri, p1: Int, p2: String)
+
open override fun enforceCallingUriPermission(p0: Uri, p1: Int, p2: String)
@@ -658,7 +658,7 @@

Functions

-
open override fun enforcePermission(p0: String, p1: Int, p2: Int, p3: String?)
+
open override fun enforcePermission(p0: String, p1: Int, p2: Int, p3: String?)
@@ -673,7 +673,7 @@

Functions

-
open override fun enforceUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int, p4: String)
open override fun enforceUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int, p6: String?)
+
open override fun enforceUriPermission(p0: Uri, p1: Int, p2: Int, p3: Int, p4: String)
open override fun enforceUriPermission(p0: Uri?, p1: String?, p2: String?, p3: Int, p4: Int, p5: Int, p6: String?)
@@ -688,7 +688,7 @@

Functions

@@ -703,7 +703,7 @@

Functions

-
open override fun fileList(): Array<String>
+
open override fun fileList(): Array<String>
@@ -718,7 +718,7 @@

Functions

-
open override fun <T : View> findViewById(@IdRes p0: Int): T
+
open override fun <T : View> findViewById(@IdRes p0: Int): T
@@ -748,7 +748,7 @@

Functions

-
open fun finishActivity(p0: Int)
+
open fun finishActivity(p0: Int)
@@ -763,7 +763,7 @@

Functions

- +
@@ -958,7 +958,7 @@

Functions

- +
@@ -973,7 +973,7 @@

Functions

@@ -1018,7 +1018,7 @@

Functions

-
fun getColor(p0: Int): Int
+
fun getColor(p0: Int): Int
@@ -1033,7 +1033,7 @@

Functions

@@ -1123,7 +1123,7 @@

Functions

-
open override fun getDatabasePath(p0: String): File
+
open override fun getDatabasePath(p0: String): File
@@ -1168,7 +1168,7 @@

Functions

-
open override fun getDir(p0: String, p1: Int): File
+
open override fun getDir(p0: String, p1: Int): File
@@ -1183,7 +1183,7 @@

Functions

- +
@@ -1228,7 +1228,7 @@

Functions

-
open override fun getExternalCacheDirs(): Array<File>
+
open override fun getExternalCacheDirs(): Array<File>
@@ -1243,7 +1243,7 @@

Functions

-
open override fun getExternalFilesDir(p0: String?): File?
+
open override fun getExternalFilesDir(p0: String?): File?
@@ -1258,7 +1258,7 @@

Functions

-
open override fun getExternalFilesDirs(p0: String): Array<File>
+
open override fun getExternalFilesDirs(p0: String): Array<File>
@@ -1273,7 +1273,7 @@

Functions

-
open override fun getExternalMediaDirs(): Array<File>
+
open override fun getExternalMediaDirs(): Array<File>
@@ -1318,7 +1318,7 @@

Functions

-
open override fun getFileStreamPath(p0: String): File
+
open override fun getFileStreamPath(p0: String): File
@@ -1363,7 +1363,7 @@

Functions

@@ -1378,7 +1378,7 @@

Functions

@@ -1438,7 +1438,7 @@

Functions

- +
@@ -1483,7 +1483,7 @@

Functions

@@ -1558,7 +1558,7 @@

Functions

-
open override fun getObbDirs(): Array<File>
+
open override fun getObbDirs(): Array<File>
@@ -1588,7 +1588,7 @@

Functions

-
open override fun getOpPackageName(): String
+
open override fun getOpPackageName(): String
@@ -1603,7 +1603,7 @@

Functions

-
open override fun getPackageCodePath(): String
+
open override fun getPackageCodePath(): String
@@ -1633,7 +1633,7 @@

Functions

-
open override fun getPackageName(): String
+
open override fun getPackageName(): String
@@ -1648,7 +1648,7 @@

Functions

-
open override fun getPackageResourcePath(): String
+
open override fun getPackageResourcePath(): String
@@ -1693,7 +1693,7 @@

Functions

@@ -1723,7 +1723,7 @@

Functions

@@ -1783,7 +1783,7 @@

Functions

-
open override fun getSharedPreferences(p0: String, p1: Int): SharedPreferences
+
open override fun getSharedPreferences(p0: String, p1: Int): SharedPreferences
@@ -1798,7 +1798,7 @@

Functions

-
fun getString(p0: Int): String
fun getString(p0: Int, vararg p1: Any): String
+
fun getString(p0: Int): String
fun getString(p0: Int, vararg p1: Any): String
@@ -1873,7 +1873,7 @@

Functions

-
open override fun getSystemService(p0: String): Any
fun <T : Any> getSystemService(p0: Class<T>): T
+
open override fun getSystemService(p0: String): Any
fun <T : Any> getSystemService(p0: Class<T>): T
@@ -1888,7 +1888,7 @@

Functions

-
open override fun getSystemServiceName(p0: Class<*>): String?
+
open override fun getSystemServiceName(p0: Class<*>): String?
@@ -1903,7 +1903,7 @@

Functions

-
open fun getTaskId(): Int
+
open fun getTaskId(): Int
@@ -1918,7 +1918,7 @@

Functions

- +
@@ -1948,7 +1948,7 @@

Functions

@@ -1963,7 +1963,7 @@

Functions

- +
@@ -2008,7 +2008,7 @@

Functions

@@ -2038,7 +2038,7 @@

Functions

- +
@@ -2053,7 +2053,7 @@

Functions

- +
@@ -2098,7 +2098,7 @@

Functions

-
open override fun grantUriPermission(p0: String, p1: Uri, p2: Int)
+
open override fun grantUriPermission(p0: String, p1: Uri, p2: Int)
@@ -2113,7 +2113,7 @@

Functions

- +
@@ -2143,7 +2143,7 @@

Functions

@@ -2158,7 +2158,7 @@

Functions

@@ -2173,7 +2173,7 @@

Functions

- +
@@ -2188,7 +2188,7 @@

Functions

-
open fun isDestroyed(): Boolean
+
open fun isDestroyed(): Boolean
@@ -2203,7 +2203,7 @@

Functions

-
open override fun isDeviceProtectedStorage(): Boolean
+
open override fun isDeviceProtectedStorage(): Boolean
@@ -2218,7 +2218,7 @@

Functions

-
open fun isFinishing(): Boolean
+
open fun isFinishing(): Boolean
@@ -2233,7 +2233,7 @@

Functions

-
open fun isImmersive(): Boolean
+
open fun isImmersive(): Boolean
@@ -2248,7 +2248,7 @@

Functions

@@ -2263,7 +2263,7 @@

Functions

@@ -2278,7 +2278,7 @@

Functions

@@ -2293,7 +2293,7 @@

Functions

-
open override fun isRestricted(): Boolean
+
open override fun isRestricted(): Boolean
@@ -2308,7 +2308,7 @@

Functions

-
open fun isTaskRoot(): Boolean
+
open fun isTaskRoot(): Boolean
@@ -2323,7 +2323,7 @@

Functions

@@ -2338,7 +2338,7 @@

Functions

@@ -2353,7 +2353,7 @@

Functions

-
fun managedQuery(p0: Uri, p1: Array<String>, p2: String, p3: Array<String>, p4: String): Cursor
+
fun managedQuery(p0: Uri, p1: Array<String>, p2: String, p3: Array<String>, p4: String): Cursor
@@ -2368,7 +2368,7 @@

Functions

-
open override fun moveDatabaseFrom(p0: Context, p1: String): Boolean
+
open override fun moveDatabaseFrom(p0: Context, p1: String): Boolean
@@ -2383,7 +2383,7 @@

Functions

-
open override fun moveSharedPreferencesFrom(p0: Context, p1: String): Boolean
+
open override fun moveSharedPreferencesFrom(p0: Context, p1: String): Boolean
@@ -2398,7 +2398,7 @@

Functions

- +
@@ -2413,7 +2413,7 @@

Functions

-
open fun navigateUpTo(p0: Intent): Boolean
+
open fun navigateUpTo(p0: Intent): Boolean
@@ -2428,7 +2428,7 @@

Functions

@@ -2443,7 +2443,7 @@

Functions

@@ -2488,7 +2488,7 @@

Functions

-
open fun onActivityReenter(p0: Int, p1: Intent)
+
open fun onActivityReenter(p0: Int, p1: Intent)
@@ -2578,7 +2578,7 @@

Functions

@@ -2638,7 +2638,7 @@

Functions

@@ -2668,7 +2668,7 @@

Functions

- +
@@ -2683,7 +2683,7 @@

Functions

-
open override fun onCreatePanelMenu(p0: Int, @NonNull p1: Menu): Boolean
+
open override fun onCreatePanelMenu(p0: Int, @NonNull p1: Menu): Boolean
@@ -2698,7 +2698,7 @@

Functions

-
open override fun onCreatePanelView(p0: Int): View?
+
open override fun onCreatePanelView(p0: Int): View?
@@ -2728,7 +2728,7 @@

Functions

- +
@@ -2743,7 +2743,7 @@

Functions

-
open override fun onCreateView(@NonNull p0: String, @NonNull p1: Context, @NonNull p2: AttributeSet): View?
open override fun onCreateView(@Nullable p0: View?, @NonNull p1: String, @NonNull p2: Context, @NonNull p3: AttributeSet): View?
+
open override fun onCreateView(@NonNull p0: String, @NonNull p1: Context, @NonNull p2: AttributeSet): View?
open override fun onCreateView(@Nullable p0: View?, @NonNull p1: String, @NonNull p2: Context, @NonNull p3: AttributeSet): View?
@@ -2788,7 +2788,7 @@

Functions

@@ -2803,7 +2803,7 @@

Functions

@@ -2818,7 +2818,7 @@

Functions

-
open override fun onKeyDown(p0: Int, p1: KeyEvent): Boolean
+
open override fun onKeyDown(p0: Int, p1: KeyEvent): Boolean
@@ -2833,7 +2833,7 @@

Functions

-
open override fun onKeyLongPress(p0: Int, p1: KeyEvent): Boolean
+
open override fun onKeyLongPress(p0: Int, p1: KeyEvent): Boolean
@@ -2848,7 +2848,7 @@

Functions

-
open override fun onKeyMultiple(p0: Int, p1: Int, p2: KeyEvent): Boolean
+
open override fun onKeyMultiple(p0: Int, p1: Int, p2: KeyEvent): Boolean
@@ -2863,7 +2863,7 @@

Functions

-
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
+
open fun onKeyShortcut(p0: Int, p1: KeyEvent): Boolean
@@ -2878,7 +2878,7 @@

Functions

-
open override fun onKeyUp(p0: Int, p1: KeyEvent): Boolean
+
open override fun onKeyUp(p0: Int, p1: KeyEvent): Boolean
@@ -2938,7 +2938,7 @@

Functions

-
override fun onMenuItemSelected(p0: Int, @NonNull p1: MenuItem): Boolean
+
override fun onMenuItemSelected(p0: Int, @NonNull p1: MenuItem): Boolean
@@ -2953,7 +2953,7 @@

Functions

-
open override fun onMenuOpened(p0: Int, p1: Menu): Boolean
+
open override fun onMenuOpened(p0: Int, p1: Menu): Boolean
@@ -2968,7 +2968,7 @@

Functions

@@ -2983,7 +2983,7 @@

Functions

-
open fun onNavigateUp(): Boolean
+
open fun onNavigateUp(): Boolean
@@ -2998,7 +2998,7 @@

Functions

@@ -3013,7 +3013,7 @@

Functions

@@ -3043,7 +3043,7 @@

Functions

-
open override fun onPanelClosed(p0: Int, @NonNull p1: Menu)
+
open override fun onPanelClosed(p0: Int, @NonNull p1: Menu)
@@ -3058,7 +3058,7 @@

Functions

@@ -3073,7 +3073,7 @@

Functions

@@ -3088,7 +3088,7 @@

Functions

@@ -3133,7 +3133,7 @@

Functions

@@ -3148,7 +3148,7 @@

Functions

-
open override fun onPreparePanel(p0: Int, @Nullable p1: View?, @NonNull p2: Menu): Boolean
+
open override fun onPreparePanel(p0: Int, @Nullable p1: View?, @NonNull p2: Menu): Boolean
@@ -3208,7 +3208,7 @@

Functions

@@ -3238,7 +3238,7 @@

Functions

-
open override fun onRequestPermissionsResult(p0: Int, @NonNull p1: Array<String>, @NonNull p2: IntArray)
+
open override fun onRequestPermissionsResult(p0: Int, @NonNull p1: Array<String>, @NonNull p2: IntArray)
@@ -3268,7 +3268,7 @@

Functions

@@ -3283,7 +3283,7 @@

Functions

@@ -3313,7 +3313,7 @@

Functions

-
open override fun onSearchRequested(): Boolean
open override fun onSearchRequested(p0: SearchEvent?): Boolean
+
open override fun onSearchRequested(): Boolean
open override fun onSearchRequested(p0: SearchEvent?): Boolean
@@ -3388,7 +3388,7 @@

Functions

@@ -3403,7 +3403,7 @@

Functions

@@ -3418,7 +3418,7 @@

Functions

- +
@@ -3433,7 +3433,7 @@

Functions

@@ -3448,7 +3448,7 @@

Functions

-
open override fun onTrimMemory(p0: Int)
+
open override fun onTrimMemory(p0: Int)
@@ -3508,7 +3508,7 @@

Functions

-
open override fun onWindowFocusChanged(p0: Boolean)
+
open override fun onWindowFocusChanged(p0: Boolean)
@@ -3523,7 +3523,7 @@

Functions

@@ -3568,7 +3568,7 @@

Functions

-
open override fun openFileInput(p0: String): FileInputStream
+
open override fun openFileInput(p0: String): FileInputStream
@@ -3583,7 +3583,7 @@

Functions

-
open override fun openFileOutput(p0: String, p1: Int): FileOutputStream
+
open override fun openFileOutput(p0: String, p1: Int): FileOutputStream
@@ -3613,7 +3613,7 @@

Functions

@@ -3628,7 +3628,7 @@

Functions

-
open fun overridePendingTransition(p0: Int, p1: Int)
+
open fun overridePendingTransition(p0: Int, p1: Int)
@@ -3748,7 +3748,7 @@

Functions

-
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter): Intent?
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter, p2: Int): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?, p4: Int): Intent?
+
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter): Intent?
open override fun registerReceiver(p0: BroadcastReceiver?, p1: IntentFilter, p2: Int): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?): Intent?
open override fun registerReceiver(p0: BroadcastReceiver, p1: IntentFilter, p2: String?, p3: Handler?, p4: Int): Intent?
@@ -3763,7 +3763,7 @@

Functions

- +
@@ -3778,7 +3778,7 @@

Functions

-
fun removeDialog(p0: Int)
+
fun removeDialog(p0: Int)
@@ -3853,7 +3853,7 @@

Functions

- +
@@ -3883,7 +3883,7 @@

Functions

@@ -3898,7 +3898,7 @@

Functions

@@ -3913,7 +3913,7 @@

Functions

-
fun <T : View> requireViewById(p0: Int): T & Any
+
fun <T : View> requireViewById(p0: Int): T & Any
@@ -3928,7 +3928,7 @@

Functions

-
open override fun revokeUriPermission(p0: Uri, p1: Int)
open override fun revokeUriPermission(p0: String, p1: Uri, p2: Int)
+
open override fun revokeUriPermission(p0: Uri, p1: Int)
open override fun revokeUriPermission(p0: String, p1: Uri, p2: Int)
@@ -3958,7 +3958,7 @@

Functions

-
open override fun sendBroadcast(p0: Intent)
open override fun sendBroadcast(p0: Intent, p1: String?)
+
open override fun sendBroadcast(p0: Intent)
open override fun sendBroadcast(p0: Intent, p1: String?)
@@ -3973,7 +3973,7 @@

Functions

-
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle)
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?)
+
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle)
open override fun sendBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?)
@@ -3988,7 +3988,7 @@

Functions

-
open override fun sendOrderedBroadcast(p0: Intent, p1: String?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: BroadcastReceiver?, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
+
open override fun sendOrderedBroadcast(p0: Intent, p1: String?)
open override fun sendOrderedBroadcast(p0: Intent, p1: String?, p2: BroadcastReceiver?, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
@@ -4003,7 +4003,7 @@

Functions

-
open override fun sendOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?, p3: BroadcastReceiver, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
+
open override fun sendOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: String?, p3: BroadcastReceiver, p4: Handler?, p5: Int, p6: String?, p7: Bundle?)
@@ -4048,7 +4048,7 @@

Functions

-
open override fun sendStickyOrderedBroadcast(p0: Intent, p1: BroadcastReceiver, p2: Handler?, p3: Int, p4: String?, p5: Bundle?)
+
open override fun sendStickyOrderedBroadcast(p0: Intent, p1: BroadcastReceiver, p2: Handler?, p3: Int, p4: String?, p5: Bundle?)
@@ -4063,7 +4063,7 @@

Functions

-
open override fun sendStickyOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: BroadcastReceiver, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
+
open override fun sendStickyOrderedBroadcastAsUser(p0: Intent, p1: UserHandle, p2: BroadcastReceiver, p3: Handler?, p4: Int, p5: String?, p6: Bundle?)
@@ -4108,7 +4108,7 @@

Functions

-
open override fun setContentView(p0: View)
open override fun setContentView(@LayoutRes p0: Int)
open override fun setContentView(p0: View, p1: ViewGroup.LayoutParams)
+
open override fun setContentView(p0: View)
open override fun setContentView(@LayoutRes p0: Int)
open override fun setContentView(p0: View, p1: ViewGroup.LayoutParams)
@@ -4123,7 +4123,7 @@

Functions

- +
@@ -4168,7 +4168,7 @@

Functions

- +
@@ -4183,7 +4183,7 @@

Functions

- +
@@ -4198,7 +4198,7 @@

Functions

@@ -4213,7 +4213,7 @@

Functions

- +
@@ -4228,7 +4228,7 @@

Functions

@@ -4243,7 +4243,7 @@

Functions

-
open fun setImmersive(p0: Boolean)
+
open fun setImmersive(p0: Boolean)
@@ -4258,7 +4258,7 @@

Functions

@@ -4318,7 +4318,7 @@

Functions

-
fun setProgress(p0: Int)
+
fun setProgress(p0: Int)
@@ -4333,7 +4333,7 @@

Functions

@@ -4348,7 +4348,7 @@

Functions

@@ -4363,7 +4363,7 @@

Functions

@@ -4378,7 +4378,7 @@

Functions

- +
@@ -4393,7 +4393,7 @@

Functions

-
fun setResult(p0: Int)
fun setResult(p0: Int, p1: Intent)
+
fun setResult(p0: Int)
fun setResult(p0: Int, p1: Intent)
@@ -4408,7 +4408,7 @@

Functions

@@ -4423,7 +4423,7 @@

Functions

- +
@@ -4453,7 +4453,7 @@

Functions

-
open fun setSupportProgress(p0: Int)
+
open fun setSupportProgress(p0: Int)
@@ -4468,7 +4468,7 @@

Functions

@@ -4483,7 +4483,7 @@

Functions

@@ -4498,7 +4498,7 @@

Functions

@@ -4528,7 +4528,7 @@

Functions

-
open fun setTheme(p0: Resources.Theme?)
open override fun setTheme(@StyleRes p0: Int)
+
open fun setTheme(p0: Resources.Theme?)
open override fun setTheme(@StyleRes p0: Int)
@@ -4543,7 +4543,7 @@

Functions

-
open fun setTitle(p0: CharSequence)
open fun setTitle(p0: Int)
+
open fun setTitle(p0: CharSequence)
open fun setTitle(p0: Int)
@@ -4558,7 +4558,7 @@

Functions

-
open fun setTitleColor(p0: Int)
+
open fun setTitleColor(p0: Int)
@@ -4573,7 +4573,7 @@

Functions

-
open fun setTurnScreenOn(p0: Boolean)
+
open fun setTurnScreenOn(p0: Boolean)
@@ -4588,7 +4588,7 @@

Functions

-
open fun setVisible(p0: Boolean)
+
open fun setVisible(p0: Boolean)
@@ -4603,7 +4603,7 @@

Functions

@@ -4618,7 +4618,7 @@

Functions

- +
@@ -4648,7 +4648,7 @@

Functions

@@ -4663,7 +4663,7 @@

Functions

@@ -4678,7 +4678,7 @@

Functions

-
open fun showAssist(p0: Bundle): Boolean
+
open fun showAssist(p0: Bundle): Boolean
@@ -4693,7 +4693,7 @@

Functions

-
fun showDialog(p0: Int)
fun showDialog(p0: Int, p1: Bundle): Boolean
+
fun showDialog(p0: Int)
fun showDialog(p0: Int, p1: Bundle): Boolean
@@ -4723,7 +4723,7 @@

Functions

@@ -4738,7 +4738,7 @@

Functions

-
open override fun startActivities(p0: Array<Intent>)
open override fun startActivities(p0: Array<Intent>, p1: Bundle)
+
open override fun startActivities(p0: Array<Intent>)
open override fun startActivities(p0: Array<Intent>, p1: Bundle)
@@ -4768,7 +4768,7 @@

Functions

-
open override fun startActivityForResult(p0: Intent, p1: Int)
open override fun startActivityForResult(p0: Intent, p1: Int, @Nullable p2: Bundle?)
+
open override fun startActivityForResult(p0: Intent, p1: Int)
open override fun startActivityForResult(p0: Intent, p1: Int, @Nullable p2: Bundle?)
@@ -4783,7 +4783,7 @@

Functions

-
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int)
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int, p3: Bundle?)
+
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int)
open fun startActivityFromChild(p0: Activity, p1: Intent, p2: Int, p3: Bundle?)
@@ -4798,7 +4798,7 @@

Functions

@@ -4813,7 +4813,7 @@

Functions

- +
@@ -4843,7 +4843,7 @@

Functions

-
open override fun startInstrumentation(p0: ComponentName, p1: String?, p2: Bundle?): Boolean
+
open override fun startInstrumentation(p0: ComponentName, p1: String?, p2: Bundle?): Boolean
@@ -4858,7 +4858,7 @@

Functions

-
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int)
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int, p5: Bundle?)
+
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int)
open override fun startIntentSender(p0: IntentSender, p1: Intent?, p2: Int, p3: Int, p4: Int, p5: Bundle?)
@@ -4873,7 +4873,7 @@

Functions

-
open override fun startIntentSenderForResult(p0: IntentSender, p1: Int, @Nullable p2: Intent?, p3: Int, p4: Int, p5: Int)
open override fun startIntentSenderForResult(p0: IntentSender, p1: Int, @Nullable p2: Intent?, p3: Int, p4: Int, p5: Int, @Nullable p6: Bundle?)
+
open override fun startIntentSenderForResult(p0: IntentSender, p1: Int, @Nullable p2: Intent?, p3: Int, p4: Int, p5: Int)
open override fun startIntentSenderForResult(p0: IntentSender, p1: Int, @Nullable p2: Intent?, p3: Int, p4: Int, p5: Int, @Nullable p6: Bundle?)
@@ -4888,7 +4888,7 @@

Functions

-
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int)
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int, p7: Bundle?)
+
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int)
open fun startIntentSenderFromChild(p0: Activity, p1: IntentSender, p2: Int, p3: Intent, p4: Int, p5: Int, p6: Int, p7: Bundle?)
@@ -4903,7 +4903,7 @@

Functions

-
open fun startIntentSenderFromFragment(@NonNull p0: Fragment, p1: IntentSender, p2: Int, @Nullable p3: Intent?, p4: Int, p5: Int, p6: Int, @Nullable p7: Bundle?)
+
open fun startIntentSenderFromFragment(@NonNull p0: Fragment, p1: IntentSender, p2: Int, @Nullable p3: Intent?, p4: Int, p5: Int, p6: Int, @Nullable p7: Bundle?)
@@ -4963,7 +4963,7 @@

Functions

@@ -4993,7 +4993,7 @@

Functions

-
open fun startSearch(p0: String?, p1: Boolean, p2: Bundle?, p3: Boolean)
+
open fun startSearch(p0: String?, p1: Boolean, p2: Bundle?, p3: Boolean)
@@ -5083,7 +5083,7 @@

Functions

-
open override fun stopService(p0: Intent): Boolean
+
open override fun stopService(p0: Intent): Boolean
@@ -5098,7 +5098,7 @@

Functions

-
open override fun superDispatchKeyEvent(p0: KeyEvent): Boolean
+
open override fun superDispatchKeyEvent(p0: KeyEvent): Boolean
@@ -5173,7 +5173,7 @@

Functions

@@ -5188,7 +5188,7 @@

Functions

@@ -5218,7 +5218,7 @@

Functions

-
open fun takeKeyEvents(p0: Boolean)
+
open fun takeKeyEvents(p0: Boolean)
@@ -5233,7 +5233,7 @@

Functions

-
open fun triggerSearch(p0: String, p1: Bundle?)
+
open fun triggerSearch(p0: String, p1: Bundle?)
@@ -5323,7 +5323,7 @@

Functions

-
open override fun updateServiceGroup(p0: ServiceConnection, p1: Int, p2: Int)
+
open override fun updateServiceGroup(p0: ServiceConnection, p1: Int, p2: Int)
@@ -5338,7 +5338,7 @@

Functions

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/-greeter.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/-greeter.html index 01dc966b7d..70beaf416c 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/-greeter.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/-greeter.html @@ -68,7 +68,7 @@

Greeter

-
constructor(name: String)(source)
+
constructor(name: String)(source)
@@ -103,7 +103,7 @@

Properties

-

The name of the person to be greeted.

+

The name of the person to be greeted.

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/name.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/name.html index c2a58cdad1..95ab5cdeea 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/name.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/-greeter/name.html @@ -68,7 +68,7 @@

name

- +
-
class Greeter(val name: String)

This class supports greeting people by name.

+
class Greeter(val name: String)

This class supports greeting people by name.

@@ -103,7 +103,7 @@

Functions

-
fun main(args: Array<String>)
+
fun main(args: Array<String>)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/main.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/main.html index 903f50a166..80b2f47d46 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/main.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/basic-gradle-example/html/-dokka -gradle -example/demo/main.html @@ -68,7 +68,7 @@

main

-
fun main(args: Array<String>)(source)
+
fun main(args: Array<String>)(source)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/composite-build-example/html/kea/foo.example.module.kea/-kea/description.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/composite-build-example/html/kea/foo.example.module.kea/-kea/description.html index 15e4342beb..045b5681e2 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/composite-build-example/html/kea/foo.example.module.kea/-kea/description.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/composite-build-example/html/kea/foo.example.module.kea/-kea/description.html @@ -65,7 +65,7 @@

description

- +
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/-greeter.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/-greeter.html index 4f8ec54ecf..9d47b4f0b1 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/-greeter.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/-greeter.html @@ -70,7 +70,7 @@

Greeter

-
constructor(name: String)
+
constructor(name: String)
@@ -105,7 +105,7 @@

Properties

-

The name of the person to be greeted.

+

The name of the person to be greeted.

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/name.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/name.html index 380d68b398..5ba5f51a57 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/name.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/-greeter/name.html @@ -70,7 +70,7 @@

name

- +
-
class Greeter(val name: String)

This class supports greeting people by name.

+
class Greeter(val name: String)

This class supports greeting people by name.

@@ -104,7 +104,7 @@

Functions

-
fun main(args: Array<String>)
+
fun main(args: Array<String>)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/main.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/main.html index 422fc3ced4..439b7ba431 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/main.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/custom-styling-example/html/custom-format-example/demo/main.html @@ -70,7 +70,7 @@

main

-
fun main(args: Array<String>)
+
fun main(args: Array<String>)
-
public static void main(Array<String> args)
+
public static void main(Array<String> args)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/java-example/html/my-java-application/demo/-my-java-application/main.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/java-example/html/my-java-application/demo/-my-java-application/main.html index 2eec3b2c91..e80efd1211 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/java-example/html/my-java-application/demo/-my-java-application/main.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/java-example/html/my-java-application/demo/-my-java-application/main.html @@ -65,7 +65,7 @@

main

-
public static void main(Array<String> args)(source)
+
public static void main(Array<String> args)(source)
-
public final Unit greet()

Prints the greeting to the standard output.

+
public final Unit greet()

Prints the greeting to the standard output.

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/index.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/index.html index 8435de866b..e3aab4d920 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/index.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/index.html @@ -84,7 +84,7 @@

Functions

-
public final static Unit main(Array<String> args)
+
public final static Unit main(Array<String> args)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/main.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/main.html index b2257ba796..f1f60453c8 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/main.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-as-java-example/html/kotlin-as-java-example/demo/-hello-world-kt/main.html @@ -68,7 +68,7 @@

main

-
public final static Unit main(Array<String> args)
+
public final static Unit main(Array<String> args)
@@ -104,7 +104,7 @@

Functions

-
fun CoroutineDispatcher.name(): String

Common coroutine extension

+
fun CoroutineDispatcher.name(): String

Common coroutine extension

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp.coroutines/name.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp.coroutines/name.html index 47089b85de..e9e1ed42ca 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp.coroutines/name.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp.coroutines/name.html @@ -68,7 +68,7 @@

name

-
fun CoroutineDispatcher.name(): String

Common coroutine extension

+
fun CoroutineDispatcher.name(): String

Common coroutine extension

@@ -104,7 +104,7 @@

Functions

-

Common date util function

+

Common date util function

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/-java-annotation/aliases.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/-java-annotation/aliases.html index 1e8c37e8cf..27f4f01bdb 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/-java-annotation/aliases.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/-java-annotation/aliases.html @@ -70,7 +70,7 @@

aliases

-
abstract fun aliases(): Array<String>
+
abstract fun aliases(): Array<String>
@@ -139,7 +139,7 @@

Functions

-
abstract fun equals(p: Any): Boolean
+
abstract fun equals(p: Any): Boolean
@@ -156,7 +156,7 @@

Functions

-
abstract fun hashCode(): Int
+
abstract fun hashCode(): Int
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/[js]my-extension.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/[js]my-extension.html index 4f0a04a982..baa477711b 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/[js]my-extension.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/[js]my-extension.html @@ -70,7 +70,7 @@

myExtension<
-

Extension declared in JS source set

+

Extension declared in JS source set

-

Extension declared in JVM source set

+

Extension declared in JVM source set

@@ -159,7 +159,7 @@

Functions

-

Low-level Linux function

+

Low-level Linux function

@@ -193,7 +193,7 @@

Functions

-
fun CoroutineScope.startConnectionPipeline(input: String): Job

Extension declared in JVM source set

+
fun CoroutineScope.startConnectionPipeline(input: String): Job

Extension declared in JVM source set

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/print-pointer-raw-value.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/print-pointer-raw-value.html index a1702fdc67..08c3989951 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/print-pointer-raw-value.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/kotlin-multiplatform-example/html/dokka-multiplatform-example/org.kotlintestmpp/print-pointer-raw-value.html @@ -70,7 +70,7 @@

printPointer
-

Low-level Linux function

+

Low-level Linux function

@@ -103,7 +103,7 @@

Properties

-

The name of the person to be greeted.

+

The name of the person to be greeted.

diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/-greeter/name.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/-greeter/name.html index 9ffcae0b67..24b23c96f1 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/-greeter/name.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/-greeter/name.html @@ -68,7 +68,7 @@

name

- +
-
class Greeter(val name: String)

This class supports greeting people by name.

+
class Greeter(val name: String)

This class supports greeting people by name.

@@ -102,7 +102,7 @@

Functions

-
fun main(args: Array<String>)
+
fun main(args: Array<String>)
diff --git a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/main.html b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/main.html index a8ed961c17..432ff59971 100644 --- a/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/main.html +++ b/dokka-integration-tests/gradle/src/testExampleProjects/expectedData/exampleProjects/library-publishing-example/html/dokka-library-publishing-example/demo/main.html @@ -68,7 +68,7 @@

main

-
fun main(args: Array<String>)
+
fun main(args: Array<String>)