summaryrefslogtreecommitdiff
path: root/sources/utils/VSTupel.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-24 16:47:25 +0000
committerPaul Buetow <paul@buetow.org>2008-05-24 16:47:25 +0000
commit9f0d5c8015f4504bc8400cbb4247f38d9df62768 (patch)
tree5e5256f3ffe7810df3f873dbfeca86484b0629b6 /sources/utils/VSTupel.java
parent7040b1acc44805ab7208fa3975242c656cbc95a2 (diff)
new protocol editor works.
Diffstat (limited to 'sources/utils/VSTupel.java')
-rw-r--r--sources/utils/VSTupel.java25
1 files changed, 25 insertions, 0 deletions
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<A,B,C> {
+ 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;
+ }
+}