Add prefix information for Java source root (KT-9167 in progress)

#KT-9167 In Progress
This commit is contained in:
Nikolay Krasko
2015-11-08 19:54:46 +03:00
committed by Nikolay Krasko
parent 77138ecdb7
commit c0739ef53c
12 changed files with 99 additions and 32 deletions
@@ -27,5 +27,7 @@ public interface Module {
public fun getClasspathRoots(): List<String>
public fun getJavaSourceRoots(): List<String>
public fun getJavaSourceRoots(): List<JavaRootPath>
}
data class JavaRootPath(val path: String, val packagePrefix: String? = null)