From 9f0d5c8015f4504bc8400cbb4247f38d9df62768 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 24 May 2008 16:47:25 +0000 Subject: new protocol editor works. --- sources/utils/VSTupel.java | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 sources/utils/VSTupel.java (limited to 'sources/utils/VSTupel.java') diff --git a/sources/utils/VSTupel.java b/sources/utils/VSTupel.java new file mode 100644 index 0000000..f2c6f87 --- /dev/null +++ b/sources/utils/VSTupel.java @@ -0,0 +1,25 @@ +package utils; + +public final class VSTupel { + private A a; + private B b; + private C c; + + public VSTupel(A a, B b, C c) { + this.a = a; + this.b = b; + this.c = c; + } + + public A getA() { + return a; + } + + public B getB() { + return b; + } + + public C getC() { + return c; + } +} -- cgit v1.2.3