![JAR search and dependency download from the Maven repository](/logo.png)
com.github.roroche.eoplantumlbuilder.urls.Urls.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eo-plantuml-builder Show documentation
Show all versions of eo-plantuml-builder Show documentation
Kotlin library to build PlantUML diagrams
The newest version!
package com.github.roroche.eoplantumlbuilder.urls
import java.net.URL
/**
* Interface representing Urls inside the project.
*/
interface Urls {
/**
* @return The list of URL.
*/
fun list(): List
/**
* Convenient class to wrap Urls.
*
* @property origin The Urls to be decorated.
*/
abstract class Wrap(
private val origin: Urls
) : Urls by origin
/**
* Simple class with a [List] or [URL].
*
* @property urls The [List] or [URL].
*/
class Simple(
private val urls: List
) : Urls {
override fun list(): List = urls
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy