/usr/lib/bouml/GlobalChange/8193.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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | class UmlArtifact
!!!190722.cpp!!! change(inout ctx : Context) : void
if (ctx.onArtifact() && ctx.match_stereotype(stereotype())) {
if (ctx.cpp()) {
const QCString & h = cppHeader();
if (!h.isEmpty() && ctx.match(h)) {
if (!set_CppHeader(ctx.replace(h)))
ctx.err();
}
const QCString & c = cppSource();
if (!h.isEmpty() && ctx.match(c)) {
if (!set_CppSource(ctx.replace(c)))
ctx.err();
}
}
if (ctx.java()) {
const QCString & c = javaSource();
if (!c.isEmpty() && ctx.match(c)) {
if (!set_JavaSource(ctx.replace(c)))
ctx.err();
}
}
if (ctx.php()) {
const QCString & c = phpSource();
if (!c.isEmpty() && ctx.match(c)) {
if (!set_PhpSource(ctx.replace(c)))
ctx.err();
}
}
if (ctx.python()) {
const QCString & c = pythonSource();
if (!c.isEmpty() && ctx.match(c)) {
if (!set_PythonSource(ctx.replace(c)))
ctx.err();
}
}
if (ctx.idl()) {
const QCString & c = idlSource();
if (!c.isEmpty() && ctx.match(c)) {
if (!set_IdlSource(ctx.replace(c)))
ctx.err();
}
}
}
|