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

helpers.UrlResourceBundle.kt Maven / Gradle / Ivy

The newest version!
package com.hexagonkt.helpers

import com.hexagonkt.serialization.parse
import java.net.URL

/**
 * [TODO](https://github.com/hexagonkt/hexagon/issues/271).
 *
 * @property url .
 */
abstract class UrlResourceBundle(val url: URL) : MapResourceBundle(url.parse()) {

    override fun getContents(): Array> =
        data
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy