/usr/lib/bouml/deploy/134144.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 | class UmlBaseActivityRegion
!!!157056.cpp!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!157056.java!!! associatedDiagram() : UmlActivityDiagram
read_if_needed_();
return _assoc_diagram;
!!!157184.cpp!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : bool
UmlCom::send_cmd(_identifier, setAssocDiagramCmd, ((UmlBaseItem *) d)->_identifier);
if (UmlCom::read_bool()) {
_assoc_diagram = d;
return TRUE;
}
else
return FALSE;
!!!157184.java!!! set_AssociatedDiagram(in d : UmlActivityDiagram) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setAssocDiagramCmd, d.identifier_());
UmlCom.check();
_assoc_diagram = d;
!!!157312.cpp!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram *) UmlBaseItem::read_();
UmlBaseItem::read_uml_();
!!!157312.java!!! read_uml_() : void
_assoc_diagram = (UmlActivityDiagram) UmlBaseItem.read_();
super.read_uml_();
|