/usr/lib/bouml/rose/6528.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 | class UmlBaseNcRelation
!!!75904.cpp!!! create(in kind : aRelationKind, inout start : UmlItem, inout end : UmlItem) : UmlNcRelation
UmlCom::send_cmd(start->_identifier, createCmd, aNcRelation,
kind, end->_identifier);
UmlNcRelation * result = (UmlNcRelation *) UmlBaseItem::read_();
if (result != 0)
start->reread_children_if_needed_();
return result;
!!!75904.java!!! create(in kind : aRelationKind, inout start : UmlItem, inout end : UmlItem) : UmlNcRelation
UmlCom.send_cmd(start.identifier_(), OnInstanceCmd.createCmd, anItemKind.aNcRelation,
kind, end.identifier_());
UmlNcRelation result = (UmlNcRelation) UmlBaseItem.read_();
if (result != null)
start.reread_children_if_needed_();
return result;
!!!76032.cpp!!! kind() : anItemKind
return aNcRelation;
!!!76032.java!!! kind() : anItemKind
return anItemKind.aNcRelation;
!!!76160.cpp!!! relationKind() : aRelationKind
read_if_needed_();
return _rel_kind;
!!!76160.java!!! relationKind() : aRelationKind
read_if_needed_();
return _rel_kind;
!!!76416.cpp!!! target() : UmlItem
read_if_needed_();
return _target;
!!!76416.java!!! target() : UmlItem
read_if_needed_();
return _target;
!!!76288.cpp!!! read_uml_() : void
UmlBaseItem::read_uml_();
_rel_kind = (aRelationKind) UmlCom::read_char();
_target = UmlBaseItem::read_();
!!!76288.java!!! read_uml_() : void
super.read_uml_();
_rel_kind = aRelationKind.fromInt(UmlCom.read_char());
_target = UmlBaseItem.read_();
!!!76544.cpp!!! UmlBaseNcRelation(in id : item_id, in n : string)
_target = 0;
|