/usr/lib/bouml/html/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 27 28 | class UmlBaseAddVariableValueAction
!!!180096.cpp!!! create(inout parent : UmlItem, inout s : str) : UmlAddVariableValueAction
return (UmlAddVariableValueAction *) parent->create_(anAddVariableValueAction, s);
!!!180096.java!!! create(inout parent : UmlItem, inout s : str) : UmlAddVariableValueAction
return (UmlAddVariableValueAction) parent.create_(anItemKind.anAddVariableValueAction, s);
!!!180224.cpp!!! kind() : anItemKind
return anAddVariableValueAction;
!!!180224.java!!! kind() : anItemKind
return anItemKind.anAddVariableValueAction;
!!!180608.cpp!!! isReplaceAll() : bool
read_if_needed_();
return _replace_all;
!!!180608.java!!! isReplaceAll() : bool
read_if_needed_();
return _replace_all;
!!!180736.cpp!!! set_isReplaceAll(in v : bool) : bool
return set_it_(_replace_all, v, setFlagCmd);
!!!180736.java!!! set_isReplaceAll(in v : bool) : bool
UmlCom.send_cmd(identifier_(), OnInstanceCmd.setFlagCmd, (v) ? (byte) 1 : (byte) 0);
UmlCom.check();
_replace_all = v;
!!!180864.cpp!!! read_uml_() : void
UmlBaseAccessVariableValueAction::read_uml_();
_replace_all = UmlCom::read_bool();
!!!180864.java!!! read_uml_() : void
super.read_uml_();
_replace_all = UmlCom.read_bool();
|