Git commit 0be9fcefce90d9a59f66dbee307ebb3b31c87fa4 by Yuri Chornoivan. Committed on 04/07/2013 at 04:06. Pushed by yurchor into branch 'master'.
Fix XML M +1 -0 doc/apiDatastructure.docbook M +9 -1 doc/apiGraphstructure.docbook M +2 -0 doc/apiLinkedListstructure.docbook http://commits.kde.org/rocs/0be9fcefce90d9a59f66dbee307ebb3b31c87fa4 diff --git a/doc/apiDatastructure.docbook b/doc/apiDatastructure.docbook index 1967365..d338d99 100644 --- a/doc/apiDatastructure.docbook +++ b/doc/apiDatastructure.docbook @@ -126,6 +126,7 @@ A pointer connects two data elements and can itself hold information by its prop <para>Remove this connection.</para> <funcsynopsis><funcprototype> <funcdef>void <function>remove()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> diff --git a/doc/apiGraphstructure.docbook b/doc/apiGraphstructure.docbook index cfc93b4..50b7623 100644 --- a/doc/apiGraphstructure.docbook +++ b/doc/apiGraphstructure.docbook @@ -44,6 +44,7 @@ A graph objects holds the information of a data structure of type "Graph". <para>Return list all nodes in the graph.</para> <funcsynopsis><funcprototype> <funcdef>array <function>nodes()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -55,6 +56,7 @@ A graph objects holds the information of a data structure of type "Graph". <para>Return list all nodes in the graph of specified type.</para> <funcsynopsis><funcprototype> <funcdef>array <function>nodes(type)</function></funcdef> + <paramdef>int <parameter><replaceable>type</replaceable></parameter></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -66,7 +68,7 @@ A graph objects holds the information of a data structure of type "Graph". <para>Return list all edges in the graph.</para> <funcsynopsis><funcprototype> <funcdef>array <function>edges()</function></funcdef> - + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -102,6 +104,7 @@ A graph objects holds the information of a data structure of type "Graph". <para>Create a new node of default type and return the created node.</para> <funcsynopsis><funcprototype> <funcdef>GraphNode <function>createNode()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -207,6 +210,7 @@ A node is the data element of a graph. <para>Return list all nodes connected to this node. This method respects if edges are directed.</para> <funcsynopsis><funcprototype> <funcdef>array <function>neighbors()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -218,6 +222,7 @@ A node is the data element of a graph. <para>Return a list of all edges (incoming and outgoing) of this node.</para> <funcsynopsis><funcprototype> <funcdef>array <function>edges()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -241,6 +246,7 @@ A node is the data element of a graph. <para>Return a list of incoming edges of this node.</para> <funcsynopsis><funcprototype> <funcdef>array <function>inEdges()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -264,6 +270,7 @@ A node is the data element of a graph. <para>Return a list of all outgoing edges of this node.</para> <funcsynopsis><funcprototype> <funcdef>array <function>outEdges()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -354,6 +361,7 @@ An Edge is the connection of two GraphNodes. Edges can be directed or undirected <para>Remove this connection.</para> <funcsynopsis><funcprototype> <funcdef>void <function>remove()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> diff --git a/doc/apiLinkedListstructure.docbook b/doc/apiLinkedListstructure.docbook index 4320295..c1a8998 100644 --- a/doc/apiLinkedListstructure.docbook +++ b/doc/apiLinkedListstructure.docbook @@ -29,6 +29,7 @@ A list objects holds the information of a data structure of type "Linked List". <para>Return head node of the list.</para> <funcsynopsis><funcprototype> <funcdef>ListNode <function>head()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem> @@ -64,6 +65,7 @@ A list objects holds the information of a data structure of type "Linked List". <para>Create a new node of default type and return the created node.</para> <funcsynopsis><funcprototype> <funcdef>ListNode <function>createNode()</function></funcdef> + <paramdef></paramdef> </funcprototype> </funcsynopsis> </listitem>
