From 8ae434c63e6382a8cb850551d947285f5fcb3c25 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 4 Aug 2008 20:44:54 +0000 Subject: restructured stuff --- sources/core/VSMessage.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sources/core/VSMessage.java') diff --git a/sources/core/VSMessage.java b/sources/core/VSMessage.java index 1f1ad5b..388f3d0 100644 --- a/sources/core/VSMessage.java +++ b/sources/core/VSMessage.java @@ -57,7 +57,7 @@ public class VSMessage extends VSPrefs { private VSPrefs prefs; /** A reference to the process who sent this message. */ - private VSProcess sendingProcess; + private VSInternalProcess sendingProcess; /** The vector time of the sending process after sending. The receiver * process will use this vector time in order to update the local vector @@ -93,7 +93,7 @@ public class VSMessage extends VSPrefs { * @param protocolClassname The classname of the protocol this message. * @param isServerMessage Sets if the message has been sent by a server. */ - public void init(VSProcess process, String protocolClassname, + void init(VSInternalProcess process, String protocolClassname, boolean isServerMessage) { this.sendingProcess = process; this.protocolClassname = protocolClassname; @@ -136,7 +136,7 @@ public class VSMessage extends VSPrefs { * * @return The process which sent this message. */ - public VSProcess getSendingProcess() { + public VSInternalProcess getSendingProcess() { return sendingProcess; } -- cgit v1.2.3