Ferreteria/v0.5/@cls/tEventNodeRender: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
No edit summary
Line 7: Line 7:
==About==
==About==
The idea for this family of traits ({{l/ver/class|tEventNodeBuild}}, {{l/ver/class|tEventNodeFigure}}, and {{l/ver/class|tEventNodeRender}}) is to create a standard model for classes to use when receiving their corresponding events ({{l/ver/class|cEventNodeBuild}}, {{l/ver/class|cEventNodeFigure}}, and {{l/ver/class|cEventNodeRender}}).
The idea for this family of traits ({{l/ver/class|tEventNodeBuild}}, {{l/ver/class|tEventNodeFigure}}, and {{l/ver/class|tEventNodeRender}}) is to create a standard model for classes to use when receiving their corresponding events ({{l/ver/class|cEventNodeBuild}}, {{l/ver/class|cEventNodeFigure}}, and {{l/ver/class|cEventNodeRender}}).
2022-07-15 I'm not sure there's actually any reason for these to exist.
==Specs==
==Specs==
* Source: {{l/ferreteria/code|layout/elem/event.php}}
* Source: {{l/ferreteria/code|layout/elem/event.php}}
==Method: Rendering==
==Method: Rendering==
* <syntaxhighlight lang=php inline>abstract public function OnRender(cEventNodeRender $oe) : void;</syntaxhighlight>
* <syntaxhighlight lang=php inline>abstract public function OnRender(cEventNodeRender $oe) : void;</syntaxhighlight>

Revision as of 00:36, 16 July 2022

Ferreteria trait ferret\tEventNodeRender
tEventNodeRender

This trait is not in use anywhere as of this writing.

About

The idea for this family of traits (tEventNodeBuild, tEventNodeFigure, and tEventNodeRender) is to create a standard model for classes to use when receiving their corresponding events (cEventNodeBuild, cEventNodeFigure, and cEventNodeRender).

2022-07-15 I'm not sure there's actually any reason for these to exist.

Specs

Method: Rendering

  • abstract public function OnRender(cEventNodeRender $oe) : void;