Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 3.14 KB

File metadata and controls

32 lines (23 loc) · 3.14 KB

subkt / myaa.subkt.tasks / BaseContext

BaseContext

abstract class BaseContext : AbstractContext (source)

Simple base implementation of a Velocity AbstractContext.

Constructors

Name Summary
<init> BaseContext()
Simple base implementation of a Velocity AbstractContext.

Functions

Name Summary
doGet abstract fun doGet(key: String): Any?
internalContainsKey open fun internalContainsKey(key: String?): Boolean
internalGet open fun internalGet(key: String): Any?
internalGetKeys open fun internalGetKeys(): Nothing
internalPut open fun internalPut(key: String, value: Any?): Any?
internalRemove open fun internalRemove(key: String?): Any?

Inheritors

Name Summary
ClosureContext inner class ClosureContext<T> : BaseContext
AbstractContext implementation for getting properties in a ValueClosure context.
SubContext inner class SubContext : BaseContext
AbstractContext implementation for getting properties in a Subs context.
TaskContext class TaskContext : BaseContext
AbstractContext implementation for getting properties in a task context.