summaryrefslogtreecommitdiff
path: root/sources/core/VSMessageStub.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-06-12 21:19:36 +0300
committerPaul Buetow <paul@buetow.org>2025-06-12 21:19:36 +0300
commit5c5f252d5c7a2bdfefd4fbe54a7ae64537a64874 (patch)
tree1a4741441c7463cd3b5c97cca98fbfd1bc91519f /sources/core/VSMessageStub.java
parentea4f22311b639561856f37c8ac872af2cd9d55dd (diff)
Restructure project to use Maven exclusively and bump to v1.0.1-SNAPSHOT
- Remove legacy Ant build system (build.xml, sources/ directory) - Migrate to Maven-only build with standard directory structure - Add comprehensive Maven documentation and JAVA_HOME setup for Fedora - Update pom.xml with exec plugin and bump version to 1.0.1-SNAPSHOT - Add CLAUDE.md for development guidance - Update README.md with detailed build/run/clean instructions 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Diffstat (limited to 'sources/core/VSMessageStub.java')
-rw-r--r--sources/core/VSMessageStub.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/sources/core/VSMessageStub.java b/sources/core/VSMessageStub.java
deleted file mode 100644
index 95a515b..0000000
--- a/sources/core/VSMessageStub.java
+++ /dev/null
@@ -1,30 +0,0 @@
-package core;
-
-/**
- * An object of this class represents a message stub. A message stub allows
- * to run the init method on a VSMessage object. The init method should be
- * hidden by the protocol programming API.
- *
- * @author Paul C. Buetow
- */
-public class VSMessageStub {
- /** The message */
- private VSMessage message;
-
- /**
- * The constructor of the message stub. Creates a new message stub object.
- *
- * @param message the message
- */
- public VSMessageStub(VSMessage message) {
- this.message = message;
- }
-
- /* (non-Javadoc)
- * @see core.VSMessage#init(VSInternalProcess, java.util.String, boolean)
- */
- public void init(VSInternalProcess process, String protocolClassname,
- boolean isServerMessage) {
- message.init(process, protocolClassname, isServerMessage);
- }
-}