All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.com.bselzer.ktx.intent.JvmIntent.kt Maven / Gradle / Ivy

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