SimpleContext

class SimpleContext(var id: String) : Context

Constructors

Link copied to clipboard
constructor(id: String)

Properties

Link copied to clipboard
open override var id: String

May be null for a new context not yet saved.

Link copied to clipboard
open override val objects: List<Any>

Entries in the order they were added. The default instance of any type is the last one Objects are immutable and may not be removed.

Functions

Link copied to clipboard
open override fun addObject(value: Any)
Link copied to clipboard
open override fun bind(key: String, value: Any)
Link copied to clipboard
open fun infoString(verbose: Boolean?, indent: Int): String
Link copied to clipboard
open fun <T> last(clazz: Class<T>): T?
Link copied to clipboard
open override fun populate(blackboard: Blackboard)

Populate the given blackboard from the context.