summaryrefslogtreecommitdiff
path: root/docs/SERIALIZATION_NOTES.txt
diff options
context:
space:
mode:
authorPaul Buetow (centauri) <puppet@mx.buetow.org>2015-05-23 21:59:43 +0100
committerPaul Buetow (centauri) <puppet@mx.buetow.org>2015-05-23 21:59:43 +0100
commit9fc2fc3ccdedf1b7e48f8dfb618ca6cb6a2a662e (patch)
tree0fa92fe4e75cb53ffbf7eb56b5455eb9457bb06c /docs/SERIALIZATION_NOTES.txt
parentf7873669a43421331e14b8921ebdaa8af4393bd5 (diff)
parent32749241efc1f5f70056d74a90237388f57ea350 (diff)
Merge remote-tracking branch 'remotes/github/packages' into packagespackages
Diffstat (limited to 'docs/SERIALIZATION_NOTES.txt')
-rw-r--r--docs/SERIALIZATION_NOTES.txt40
1 files changed, 0 insertions, 40 deletions
diff --git a/docs/SERIALIZATION_NOTES.txt b/docs/SERIALIZATION_NOTES.txt
deleted file mode 100644
index 44ad0a4..0000000
--- a/docs/SERIALIZATION_NOTES.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-VSSerialize
- prefs(=VSPrefs).serialize
- writeObject(...)
- simulator(=VSSimulator).serialize
- simulatorCanvas(=VSSimulatorCanvas).serialize
- writeObject(numProcesses)
- for (porcess : processes) process(=VSProcess).serialize {
- super(=VSPrefs).serialize
- writeObject(processID)
- writeObject(numProtocolsToReset)
- for (protocol : protocolsToReset) {
- writeObject(protocolClassname)
- protocol(=VSAbstractProtocol).serialize
- super(=VSAbstractEvent).serialize
- super(=VSPrefs).serialize
- s.o.
- writeObject(id)
- writeObject(eventShortname)
- writeObject(eventClassname)
- writeObject(hasOnServerStart)
- }
- }
- taskManager(=VSTaskManager).serialize
- writeObject(numTasks)
- for (task : tasks) task(=VSTask).serialize
- writeObject(eventClassname)
- event(=VSAbstractEvent).serialize
- s.o.
- writeObject(eventID)
- writeObject(processNum)
- writeObject(taskNum)
- writeObject(taskTime)
- writeObject(isGlobalTimed)
- writeObject(isProgrammed)
-
-VSProtocolEvent.serialize
- super(=VSAbstractEvent).serialize
- writeObject(protocolClassname)
- writeObject(isClientProtocol)
- writeObject(isProtocolActivation)