Thank you Albert for your email.
Please, find attached 2 files: one with the line break, one without it.
Using
doxygen NoLineBreak.java
and
doxygen WithLineBreak.java
I get different outputs.
I could reproduce this on two computers (mac with doxygen 1.8.9.1 and
linux with doxygen 1.8.7).
Is this the intended behavior of doxygen?
Is there a way to get the same output (without altering the code)?
Cheers.
Frédéric
Le 02/04/2015 18:51, Albert a écrit :
Frédéric,
Would be useful to have a small project (can be just one Java class with
some initializations as indicated by you) and a Doxyfile to reproduce
your problem.
Albert
On Thu, Apr 2, 2015 at 9:04 AM, Frédéric Darboux
<[email protected]
<mailto:[email protected]>> wrote:
Hello,
We noticed two different behaviors of doxygen 1.8.9.1 for java:
- if the initialization in the java code only needs one line such as
public static final BitSet FOLLOW_11_in_expr80 = new BitSet(new
long[] { 0x000007FFFFFF4960L });
we get in the documentation:
final BitSet parser.FormulaParser.FOLLOW_11_in_expr80 = new
BitSet(new long[] { 0x000007FFFFFF4960L }) [static]
- if the initialization in the java code is defined with two lines
such as
public static final BitSet FOLLOW_11_in_expr80 = new BitSet(
new long[] { 0x000007FFFFFF4960L });
we get in the documentation:
final BitSet parser.FormulaParser.FOLLOW_11_in_expr80 [static]
Initial value:
= new BitSet(
newlong[] { 0x000007FFFFFF4960L })
The only difference is one line break.
We are wondering if it is the intended behavior.
Is there a way to get the same output format in the documentation?
Cheers.
Frédéric
--
.......................................................
UR Science du Sol
INRA
2163 Avenue de la Pomme de Pin
CS 40001 - Ardon
F-45075 Orléans Cedex 2
France
Ph:+33 2 38 41 48 23 <tel:%2B33%202%2038%2041%2048%2023>
Fax:+33 2 38 41 78 69 <tel:%2B33%202%2038%2041%2078%2069>
Email:<[email protected]>
<mailto:[email protected]>
WebPage:<http://tinyurl.com/DarbouxInraFr>
<http://tinyurl.com/DarbouxInraFr>
Lab.:<http://www.val-de-loire.inra.fr/ur-sols/>
<http://www.val-de-loire.inra.fr/ur-sols/>
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website,
sponsored
by Intel and developed in partnership with Slashdot Media, is your
hub for all
things parallel software development, from weekly thought leadership
blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Doxygen-users mailing list
[email protected]
<mailto:[email protected]>
https://lists.sourceforge.net/lists/listinfo/doxygen-users
--
.......................................................
UR Science du Sol
INRA
2163 Avenue de la Pomme de Pin
CS 40001 - Ardon
F-45075 Orléans Cedex 2
France
Ph: +33 2 38 41 48 23
Fax: +33 2 38 41 78 69
Email: <[email protected]>
WebPage: <http://tinyurl.com/DarbouxInraFr>
Lab.: <http://www.val-de-loire.inra.fr/ur-sols/>
public class FormulaParser {
public static final BitSet FOLLOW = new BitSet(new long[] { 0x0000000000000002L });
}
public class FormulaParser {
public static final BitSet FOLLOW = new BitSet(
new long[] { 0x0000000000000002L });
}
------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Doxygen-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/doxygen-users