docs: add description for class and method parameters

This commit is contained in:
Stefan Schmidt 2016-04-14 18:17:01 +02:00
parent 3c93a3268c
commit 5a3af92e5b
1 changed files with 8 additions and 2 deletions

View File

@ -2,14 +2,20 @@ type @extern Ecore_Cb: __undefined_type;
class Ecore.Job (Eo.Base)
{
[[Ecore Jobs are queued until the main loop dealt with the current event.
Jobs are processed by the main loop similarly to events. They also will
be executed in the order in which they were added.
]]
eo_prefix: ecore_job;
methods {
constructor {
[[Constructor.]]
legacy: null;
params {
@in func: Ecore_Cb;
@in data: const(void)*;
@in func: Ecore_Cb; [[Ecore job to be queued callback function.]]
@in data: const(void)*; [[Private data passed to callback function.]]
}
}
}