Progress towards a working pydoc implementation.

- Nodes are now passed to the documentation translator so that type information can be looked up and used in parameter comments.
- Class comments are now inserted as well as some method information,


git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10838 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Jamie Kirkpatrick 2008-09-12 11:17:39 +00:00
commit 0db7edfa63
11 changed files with 314 additions and 23 deletions

View file

@ -213,7 +213,7 @@ string translateEntity(DoxygenEntity &doxyEntity){
return "";
}
string JavaDocConverter:: convertToJavaDoc(list <DoxygenEntity> entityList){
string JavaDocConverter:: convertToJavaDoc(Node *n, list <DoxygenEntity> entityList){
entityList.sort(compare_DoxygenEntities);