parsing fixes, helped behaviour of normal text descriptions in comments

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-cherylfoil@10788 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Cheryl Foil 2008-08-18 16:08:51 +00:00
commit 719abc61cc
6 changed files with 100 additions and 45 deletions

View file

@ -44,6 +44,8 @@ class JAVA:public Language {
bool global_variable_flag; // Flag for when wrapping a global variable
bool old_variable_names; // Flag for old style variable names in the intermediary class
bool member_func_flag; // flag set when wrapping a member function
bool doxygen_javadoc_flag; //flag for converting found doxygen to javadoc
bool comment_creation_chatter; //flag for getting information about where comments were created in java.cxx
String *imclass_name; // intermediary class name
String *module_class_name; // module class name
@ -90,8 +92,6 @@ class JAVA:public Language {
return p;
}
/* DOXYGEN TO JAVADOC globals */
bool doxygen_javadoc_flag; //flag for converting found doxygen to javadoc
bool comment_creation_chatter; //flag for getting information about where comments were created in java.cxx
//TODO make this bool a command line option
DoxygenTranslator doxyTranslator;
@ -124,6 +124,7 @@ public:
global_variable_flag(false),
old_variable_names(false),
member_func_flag(false),
doxygen_javadoc_flag(true),
comment_creation_chatter(false),
imclass_name(NULL),
module_class_name(NULL),
@ -213,7 +214,6 @@ public:
virtual void main(int argc, char *argv[]) {
doxygen_javadoc_flag = true;
SWIG_library_directory("java");
// Look for certain command line options