summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-11-11 09:15:24 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-11-11 09:15:24 +0100
commit124effc5244658b05b5df6f6265cb0aa4297a119 (patch)
treeecbd62dfb6bd6662eb1cdafc684fc84c36d7ded5
parentc588d49caa67071ef36fe107bb781c5abaf63358 (diff)
downloadefl-124effc5244658b05b5df6f6265cb0aa4297a119.tar.gz
docs: eio: finish up missing eo file docs in eio
-rw-r--r--src/lib/eio/efl_io_manager.eo16
-rw-r--r--src/lib/eio/eio_sentry.eo28
2 files changed, 22 insertions, 22 deletions
diff --git a/src/lib/eio/efl_io_manager.eo b/src/lib/eio/efl_io_manager.eo
index 94c72bc233..25756fadba 100644
--- a/src/lib/eio/efl_io_manager.eo
+++ b/src/lib/eio/efl_io_manager.eo
@@ -42,7 +42,7 @@ class Efl.Io.Manager (Efl.Loop_User)
xattr_ls {
[[Lists all extended attributes asynchronously.]]
params {
- @in path: string;[[Path we want to list entries for]]
+ @in path: string; [[Path we want to list entries for]]
}
return: future<uint64, const(array<string>)>; [[Extended attributes]]
}
@@ -60,17 +60,17 @@ class Efl.Io.Manager (Efl.Loop_User)
[[Retrieves or sets information of a given extended attribute.]]
set {
values {
- data: ptr(Eina.Binbuf);
- flags: Eina.Xattr.Flags;
+ data: ptr(Eina.Binbuf); [[Data to set as information]]
+ flags: Eina.Xattr.Flags; [[Extended attributes flags]]
}
- return: future<uint64>;
+ return: future<uint64>; [[Future for asynchronous set operation]]
}
get {
- return: future<Eina.Binbuf>;
+ return: future<Eina.Binbuf>; [[Information]]
}
keys {
- path: string;
- attribute: string;
+ path: string; [[File path]]
+ attribute: string; [[Attribute name]]
}
}
@@ -91,7 +91,7 @@ class Efl.Io.Manager (Efl.Loop_User)
@in file: ptr(Eina.File); [[Eina file handle]]
// Here we're just interested whether the promise was fullfilled or not. No value needed.
}
- return: future<int>;
+ return: future<int>; [[Close return code]]
}
}
}
diff --git a/src/lib/eio/eio_sentry.eo b/src/lib/eio/eio_sentry.eo
index 8948358c7c..9f2add7dec 100644
--- a/src/lib/eio/eio_sentry.eo
+++ b/src/lib/eio/eio_sentry.eo
@@ -15,29 +15,29 @@ class Eio.Sentry (Efl.Object)
add {
[[Adds a new path to the list of monitored paths.]]
params {
- @in path: string;
+ @in path: string; [[Path to monitor]]
}
- return : bool;
+ return : bool; [[$true on success, $false otherwise]]
}
del {
[[Removes the given path from the monitored list.]]
params {
- @in path: string;
+ @in path: string; [[Path to remove from monitoring]]
}
}
}
events {
- file,created: Eio.Sentry.Event;
- file,deleted: Eio.Sentry.Event;
- file,modified: Eio.Sentry.Event;
- file,closed: Eio.Sentry.Event;
- directory,created: Eio.Sentry.Event;
- directory,deleted: Eio.Sentry.Event;
- directory,modified: Eio.Sentry.Event;
- directory,closed: Eio.Sentry.Event;
- self,rename: Eio.Sentry.Event;
- self,deleted: Eio.Sentry.Event;
- error: Eio.Sentry.Event;
+ file,created: Eio.Sentry.Event; [[Called when a file was created]]
+ file,deleted: Eio.Sentry.Event; [[Called when a file was deleted]]
+ file,modified: Eio.Sentry.Event; [[Called when a file was modified]]
+ file,closed: Eio.Sentry.Event; [[Called when a file was closed]]
+ directory,created: Eio.Sentry.Event; [[Called when a directory was created]]
+ directory,deleted: Eio.Sentry.Event; [[Called when a directory was deleted]]
+ directory,modified: Eio.Sentry.Event; [[called when a directory was modified]]
+ directory,closed: Eio.Sentry.Event; [[Called when a directory was closed]]
+ self,rename: Eio.Sentry.Event; [[Called when the object was renamed]]
+ self,deleted: Eio.Sentry.Event; [[Called when the object was deleted]]
+ error: Eio.Sentry.Event; [[Called in case of an error]]
}
implements {