1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00
This commit is contained in:
Cedric Beust 2016-03-17 22:07:19 +04:00
parent 5277d76ae8
commit f806c18303

View file

@ -3,7 +3,8 @@ package com.beust.kobalt.api
import java.util.*
/**
* Actors that have one config object per project can use this helper class.
* Actors that have one config object per project can implement `IConfigActor` by delegating to
* `ConfigActor`. Then they can easily add and look up configurations per project.
*/
interface IConfigActor<T> {
val configurations : HashMap<String, T>