diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-04 20:44:54 +0000 |
| commit | 8ae434c63e6382a8cb850551d947285f5fcb3c25 (patch) | |
| tree | 751b0b24cd86768d57e9338cf0718485f68a095e /sources/core/VSMessage.java | |
| parent | bb4eb6634485d05e9e8cff6497c60ef696a28eeb (diff) | |
restructured stuff
Diffstat (limited to 'sources/core/VSMessage.java')
| -rw-r--r-- | sources/core/VSMessage.java | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |
