/usr/lib/bouml/xmi2import/146434.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 | class UmlClassInstance
!!!238338.cpp!!! init() : void
declareFct("ownedMember", "uml:InstanceSpecification", &importIt);
declareFct("packagedElement", "uml:InstanceSpecification", &importIt);
!!!238210.cpp!!! importIt(inout in : FileIn, inout token : Token, inout where : UmlItem) : void
where = where->container(aWriteVariableValueAction, token, in);
if (where != 0) {
QCString s = token.valueOf("name");
UmlWriteVariableValueAction * a = create(where, s);
if (a == 0)
in.error("cannot create write variable value action '"
+ s + "' in '" + where->name() + "'");
a->addItem(token.xmiId(), in);
a->import_it(in, token);
}
|