aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/DokkaBootstrapImpl.kt
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2017-02-24 11:33:17 +0100
committerDmitry Jemerov <yole@jetbrains.com>2017-02-24 11:40:16 +0100
commitbfd615dde13ef6ebbfaca6b042f263a57c11018c (patch)
tree10f91003d6bee78c236ae86b4671864a591689f7 /core/src/main/kotlin/DokkaBootstrapImpl.kt
parentedb0d90fbc44f611d806a06a12f1d8280e274b8e (diff)
downloaddokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.tar.gz
dokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.tar.bz2
dokka-bfd615dde13ef6ebbfaca6b042f263a57c11018c.zip
Option to skip declarations in root package from generated documentation (they can't be imported anyway)
Diffstat (limited to 'core/src/main/kotlin/DokkaBootstrapImpl.kt')
-rw-r--r--core/src/main/kotlin/DokkaBootstrapImpl.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/src/main/kotlin/DokkaBootstrapImpl.kt b/core/src/main/kotlin/DokkaBootstrapImpl.kt
index 5f3fc7b3..8038089f 100644
--- a/core/src/main/kotlin/DokkaBootstrapImpl.kt
+++ b/core/src/main/kotlin/DokkaBootstrapImpl.kt
@@ -42,6 +42,7 @@ class DokkaBootstrapImpl : DokkaBootstrap {
outputDir: String,
format: String,
includeNonPublic: Boolean,
+ includeRootPackage: Boolean,
reportUndocumented: Boolean,
skipEmptyPackages: Boolean,
skipDeprecated: Boolean,
@@ -59,6 +60,7 @@ class DokkaBootstrapImpl : DokkaBootstrap {
outputDir,
format,
includeNonPublic,
+ includeRootPackage,
reportUndocumented,
skipEmptyPackages,
skipDeprecated,