jvmMain.com.bselzer.ktx.intent.JvmIntent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intent-jvm Show documentation
Show all versions of intent-jvm Show documentation
Based on Android intents.
The newest version!
package com.bselzer.ktx.intent
import java.awt.Desktop
internal abstract class JvmIntent {
protected val desktop: Desktop?
get() = if (Desktop.isDesktopSupported()) Desktop.getDesktop() else null
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy