com.jetbrains.plugin.structure.jar.JarFileSystemProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-base Show documentation
Show all versions of structure-base Show documentation
Base library for parsing JetBrains plugins. Used by other JetBrains Plugins structure libraries.
The newest version!
package com.jetbrains.plugin.structure.jar
import java.nio.file.FileSystem
import java.nio.file.Path
interface JarFileSystemProvider {
@Throws(JarArchiveException::class)
fun getFileSystem(jarPath: Path): FileSystem
fun close(jarPath: Path)
}