summaryrefslogtreecommitdiff
path: root/sources/protocols/implementations/VSBasicMulticast.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-29 14:07:34 +0000
committerPaul Buetow <paul@buetow.org>2008-05-29 14:07:34 +0000
commit6d1e772d75e1fcdd033787273de1f882a0624f57 (patch)
tree319228579fbecc8bd22061fc7824ff358e1be734 /sources/protocols/implementations/VSBasicMulticast.java
parentc9c76b1ef56707834c7b26342031cb3de8f72369 (diff)
reliable and basic multicast initial.
Diffstat (limited to 'sources/protocols/implementations/VSBasicMulticast.java')
-rw-r--r--sources/protocols/implementations/VSBasicMulticast.java85
1 files changed, 0 insertions, 85 deletions
diff --git a/sources/protocols/implementations/VSBasicMulticast.java b/sources/protocols/implementations/VSBasicMulticast.java
deleted file mode 100644
index 08209cc..0000000
--- a/sources/protocols/implementations/VSBasicMulticast.java
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * VS is (c) 2008 by Paul C. Buetow
- * vs@dev.buetow.org
- */
-package protocols.implementations;
-
-import protocols.VSAbstractProtocol;
-import core.VSMessage;
-
-/**
- * The Class VSBasicMulticastProtocol.
- */
-public class VSBasicMulticastProtocol extends VSAbstractProtocol {
- /** The serial version uid */
- private static final long serialVersionUID = 1L;
-
- /**
- * Instantiates a new dummy protocol.
- */
- public VSBasicMulticastProtocol() {
- super(VSAbstractProtocol.HAS_ON_CLIENT_START);
- setClassname(getClass().toString());
- }
-
- /* (non-Javadoc)
- * @see events.VSAbstractProtocol#onClientInit()
- */
- public void onClientInit() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onClientReset()
- */
- public void onClientReset() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onClientStart()
- */
- public void onClientStart() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onClientRecv(core.VSMessage)
- */
- public void onClientRecv(VSMessage recvMessage) {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onClientSchedule()
- */
- public void onClientSchedule() {
- }
-
- /* (non-Javadoc)
- * @see events.VSAbstractProtocol#onServerInit()
- */
- public void onServerInit() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onServerReset()
- */
- public void onServerReset() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onServerRecv(core.VSMessage)
- */
- public void onServerRecv(VSMessage recvMessage) {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#onServerSchedule()
- */
- public void onServerSchedule() {
- }
-
- /* (non-Javadoc)
- * @see protocols.VSAbstractProtocol#toString()
- */
- public String toString() {
- return super.toString();
- }
-}