/usr/lib/bouml/html/6273.bodies is in bouml-plugouts-src 4.21-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | class UmlClassMember
!!!148098.cpp!!! annotation_constraint() : void
if (! javaAnnotations().isEmpty()) {
fw.write("<p> Java annotation(s) :<ul>");
writeq(javaAnnotations());
fw.write("</ul>");
}
if (! constraint().isEmpty()) {
fw.write("<p> Constraint :<ul>");
writeq(constraint());
fw.write("</ul>");
}
!!!148098.java!!! annotation_constraint() : void
String s = javaAnnotations();
if (s.length() != 0) {
fw.write("<p> Java annotation(s) :<ul>");
writeq(s);
fw.write("</ul>");
}
s = constraint();
if (s.length() != 0) {
fw.write("<p> Constraint :<ul>");
writeq(s);
fw.write("</ul>");
}
|