aboutsummaryrefslogtreecommitdiff
path: root/integration/src/main
diff options
context:
space:
mode:
authorSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-06-23 16:42:23 +0300
committerSimon Ogorodnik <Simon.Ogorodnik@jetbrains.com>2017-06-23 16:42:23 +0300
commit1121071276ca2ce0afeabf4d3e540d4d8103f311 (patch)
tree6499cd796a09ce2f097b522224cc3e0d1a4c6764 /integration/src/main
parentcb6928f9b823c7fde746f17da4834431de452c83 (diff)
downloaddokka-1121071276ca2ce0afeabf4d3e540d4d8103f311.tar.gz
dokka-1121071276ca2ce0afeabf4d3e540d4d8103f311.tar.bz2
dokka-1121071276ca2ce0afeabf4d3e540d4d8103f311.zip
Suppress output of android.R and other generated stuff in dokka-android
Diffstat (limited to 'integration/src/main')
-rw-r--r--integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt
index b28f0713..4c4d479f 100644
--- a/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt
+++ b/integration/src/main/kotlin/org/jetbrains/dokka/configuration.kt
@@ -38,6 +38,7 @@ interface DokkaConfiguration {
val externalDocumentationLinks: List<DokkaConfiguration.ExternalDocumentationLink>
val noStdlibLink: Boolean
val cacheRoot: String?
+ val suppressedFiles: List<String>
interface SourceRoot {
val path: String
@@ -96,7 +97,8 @@ data class SerializeOnlyDokkaConfiguration(override val moduleName: String,
override val perPackageOptions: List<DokkaConfiguration.PackageOptions>,
override val externalDocumentationLinks: List<DokkaConfiguration.ExternalDocumentationLink>,
override val noStdlibLink: Boolean,
- override val cacheRoot: String?) : DokkaConfiguration
+ override val cacheRoot: String?,
+ override val suppressedFiles: List<String>) : DokkaConfiguration
data class ExternalDocumentationLinkImpl(@CustomSerializer(UrlSerializer::class) override val url: URL,