/usr/lib/bouml/xmi2import/155520.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 | class UmlBaseCollaborationDiagramDefinition
!!!273792.cpp!!! read_() : void
QPtrDict<UmlClassInstanceReference> instances;
unsigned n;
unsigned rank;
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);
for (rank = 0; rank != n; rank += 1) {
UmlCollaborationMessage * m = new UmlCollaborationMessage();
_messages.insert(rank, m);
m->read_(instances);
}
_messages.setAutoDelete(TRUE);
!!!273792.java!!! read_() : void
Hashtable instances;
int n;
int rank;
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 UmlCollaborationMessage[n];
for (rank = 0; rank != n; rank += 1) {
UmlCollaborationMessage m = new UmlCollaborationMessage();
_messages[rank] = m;
m.read_(instances);
}
|