Decorator

interface Decorator<out C : Any>

Interface for the Decorator design pattern implementation in the Wow framework. Decorators wrap objects to add additional functionality while maintaining the same interface. This interface provides a standard way to access the wrapped (decorated) object.

Parameters

C

the type of the component being decorated

Inheritors

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
abstract val delegate: C

The original component being decorated. This provides access to the wrapped object for delegation or inspection.