Matthias,
Did that fix help you. I tried your suggestion and I still have the summary and other 
frames generated incorrectly.
Vaidhy

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 3:13 AM
To: [EMAIL PROTECTED]
Subject: RE: jxr-plugin fails if '_' in packagename


The problem is in the class org.apache.maven.jxr.pacman.JavaFileImpl. The
used StreamTokenizer has to be extended by '_' as a word character:

   private StreamTokenizer getTokenizer() throws IOException
   {
      ...
      stok.commentChar('*');
      stok.wordChars('_', '_');  // add here the underscore character as
an word character
      ...
   }

Regards, Matthias


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to