Jump to content

Extension:NetlabsClassTree

From NikiWiki
Revision as of 21:31, 15 August 2007 by Cla (talk | contribs) (New page: This extension adds a <ClassTree> tag that formts a simple list with information about classes and their methods into a Class Tree. == Usage == === Syntax === Object Class definitions can...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This extension adds a <ClassTree> tag that formts a simple list with information about classes and their methods into a Class Tree.

Usage

Syntax

Object Class definitions can be written in a simple list format, contained by the custom -ClassTree- tag. Here is a sample:

-ClassTree title="Api title"-
* class1:baseclass:This class implements base functionality for all classes implemented here.
** method1(int action)
** setValue(char * newvalue)
** queryValue( char* value, int maxsize)
* class2:class1:this is a subclass.
*** setValue(char * newvalue):this override modifies how the new value is being set.
-/ClassTree-