com.jetbrains.plugin.structure.ide.layout.LayoutComponentLoader.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-ide Show documentation
Show all versions of structure-ide Show documentation
Library for resolving class files and resources of IntelliJ Platform IDEs.
package com.jetbrains.plugin.structure.ide.layout
import com.jetbrains.plugin.structure.intellij.resources.ResourceResolver
import com.jetbrains.plugin.structure.intellij.version.IdeVersion
import java.nio.file.Path
internal fun interface LayoutComponentLoader {
fun load(
pluginArtifactPath: Path,
descriptorName: String,
resourceResolver: ResourceResolver,
ideVersion: IdeVersion
): PluginWithArtifactPathResult
}