/usr/lib/bouml/cpp_utilities/139136.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 | class UmlBaseAccessVariableValueAction
!!!175488.cpp!!! variable() : UmlItem
read_if_needed_();
return _variable;
!!!175488.java!!! variable() : UmlItem
read_if_needed_();
return _variable;
!!!175616.cpp!!! set_Variable(in v : UmlItem) : bool
UmlCom::send_cmd(_identifier, setDefCmd, (v == 0) ? (void *) v : ((UmlBaseItem *) v)->_identifier);
if (UmlCom::read_bool()) {
_variable = v;
return TRUE;
}
else
return FALSE;
!!!175616.java!!! set_Variable(in v : UmlItem) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setDefCmd, (v == null) ? (long) 0 : v.identifier_());
UmlCom.check();
_variable = v;
!!!175744.cpp!!! read_uml_() : void
UmlBaseActivityAction::read_uml_();
_variable = UmlBaseItem::read_();
!!!175744.java!!! read_uml_() : void
super.read_uml_();
_variable = UmlBaseItem.read_();
|