/usr/lib/bouml/deploy/147712.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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | class UmlBaseSequenceDiagramDefinition
!!!213888.cpp!!! read_() : void
QPtrDict<UmlClassInstanceReference> instances;
unsigned n;
unsigned rank;
n = UmlCom::read_unsigned();
_fragments.resize(n);
for (rank = 0; rank != n; rank += 1) {
UmlFragment * f = new UmlFragment();
_fragments.insert(rank, f);
f->read_();
}
_fragments.setAutoDelete(TRUE);
UmlBaseFragment::compute_container_(_fragments);
n = UmlCom::read_unsigned();
_instances.resize(n);
for (rank = 0; rank != n; rank += 1) {
UmlClassInstanceReference * i = new UmlClassInstanceReference();
_instances.insert(rank, i);
instances.insert((void *) UmlCom::read_unsigned(), i);
i->read_();
}
_instances.setAutoDelete(TRUE);
n = UmlCom::read_unsigned();
_messages.resize(n);
if (n != 0) {
for (rank = 0; rank != n; rank += 1) {
UmlSequenceMessage * m = new UmlSequenceMessage();
_messages.insert(rank, m);
m->read_(instances, _fragments);
}
::qsort(_messages.data(), 0, n - 1);
_messages.setAutoDelete(TRUE);
}
n = _fragments.count();
for (rank = 0; rank != n; rank += 1)
_fragments.at(rank)->read_covered_(instances);
while (UmlCom::read_bool()) {
QCString s = UmlCom::read_string();
int x = (int) UmlCom::read_unsigned();
int y = (int) UmlCom::read_unsigned();
int w = (int) UmlCom::read_unsigned();
int h = (int) UmlCom::read_unsigned();
UmlFragmentCompartment * cp = UmlBaseFragment::get_container_(x, y, w, h, _fragments);
if (cp != 0) cp->add_text_(s);
}
while (UmlCom::read_bool()) {
QCString s = UmlCom::read_string();
int x = (int) UmlCom::read_unsigned();
int y = (int) UmlCom::read_unsigned();
int w = (int) UmlCom::read_unsigned();
int h = (int) UmlCom::read_unsigned();
UmlFragmentCompartment * cp = UmlBaseFragment::get_container_(x, y, w, h, _fragments);
if (cp != 0) cp->add_cont_(s, y + h/2);
}
!!!213888.java!!! read_() : void
Hashtable instances;
int n;
int rank;
n = UmlCom.read_unsigned();
_fragments = new UmlFragment[n];
for (rank = 0; rank != n; rank += 1) {
UmlFragment f = new UmlFragment();
_fragments[rank] = f;
f.read_();
}
UmlBaseFragment.compute_container_(_fragments);
n = UmlCom.read_unsigned();
_instances = new UmlClassInstanceReference[n];
instances = new Hashtable((n == 0) ? 1 : n);
for (rank = 0; rank != n; rank += 1) {
UmlClassInstanceReference i = new UmlClassInstanceReference();
_instances[rank] = i;
instances.put(new Integer(UmlCom.read_unsigned()), i);
i.read_();
}
n = UmlCom.read_unsigned();
_messages = new UmlSequenceMessage[n];
for (rank = 0; rank != n; rank += 1) {
UmlSequenceMessage m = new UmlSequenceMessage();
_messages[rank] = m;
m.read_(instances, _fragments);
}
Arrays.sort(_messages);
n = _fragments.length;
for (rank = 0; rank != n; rank += 1)
_fragments[rank].read_covered_(instances);
while (UmlCom.read_bool()) {
String s = UmlCom.read_string();
int x = (int) UmlCom.read_unsigned();
int y = (int) UmlCom.read_unsigned();
int w = (int) UmlCom.read_unsigned();
int h = (int) UmlCom.read_unsigned();
UmlFragmentCompartment cp = UmlBaseFragment.get_container_(x, y, w, h, _fragments);
if (cp != null) cp.add_text_(s);
}
while (UmlCom.read_bool()) {
String s = UmlCom.read_string();
int x = (int) UmlCom.read_unsigned();
int y = (int) UmlCom.read_unsigned();
int w = (int) UmlCom.read_unsigned();
int h = (int) UmlCom.read_unsigned();
UmlFragmentCompartment cp = UmlBaseFragment.get_container_(x, y, w, h, _fragments);
if (cp != null) cp.add_cont_(s, y + h/2);
}
|