/usr/lib/bouml/xmi2import/3968.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 UmlBaseSequenceDiagram
!!!42624.cpp!!! create(inout parent : UmlItem, in s : str) : UmlSequenceDiagram
return (UmlSequenceDiagram *) parent->create_(aSequenceDiagram, s);
!!!42624.java!!! create(inout parent : UmlItem, in s : str) : UmlSequenceDiagram
return (UmlSequenceDiagram) parent.create_(anItemKind.aSequenceDiagram, s);
!!!42752.cpp!!! kind() : anItemKind
return aSequenceDiagram;
!!!42752.java!!! kind() : anItemKind
return anItemKind.aSequenceDiagram;
!!!273152.cpp!!! definition() : UmlSequenceDiagramDefinition
if (_def == 0) {
UmlCom::send_cmd(_identifier, sideCmd);
(_def = new UmlSequenceDiagramDefinition())->read_();
}
return _def;
!!!273152.java!!! definition() : UmlSequenceDiagramDefinition
if (_def == null) {
UmlCom.send_cmd(identifier_(), OnInstanceCmd.sideCmd);
(_def = new UmlSequenceDiagramDefinition()).read_();
}
return _def;
!!!273280.cpp!!! unload(in rec : bool, in del : bool) : void
if (_def != 0) { delete _def; _def = 0; }
UmlBaseDiagram::unload(rec, del);
!!!273280.java!!! unload(in rec : bool, in del : bool) : void
_def = null;
super.unload(rec, del);
|