summaryrefslogtreecommitdiff
path: root/plugins/kotlin/project-model/src/org/jetbrains/kotlin/idea/projectModel/KotlinModule.kt
blob: 1e2ef9f47b5e7d0255a9bc62b3d39345bfee5afb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package org.jetbrains.kotlin.idea.projectModel

import java.io.Serializable

typealias KotlinDependencyId = Long

interface KotlinModule : Serializable {
    val name: String
    val dependencies: Array<KotlinDependencyId>
    val isTestModule: Boolean
}