diff options
| author | Paul Buetow <paul@buetow.org> | 2008-08-14 06:30:15 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-08-14 06:30:15 +0000 |
| commit | 3a8c6531a45bc72842f92c68afc5cae1a7ed92a9 (patch) | |
| tree | f7d5ea387871b2e1caa64ddeb01cad76b7bc101f /sources/utils | |
| parent | 286a28082bbbe386c992ae0b098a1efcf2660376 (diff) | |
final
Diffstat (limited to 'sources/utils')
| -rw-r--r-- | sources/utils/VS3Tupel.java (renamed from sources/utils/VSTupel.java) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sources/utils/VSTupel.java b/sources/utils/VS3Tupel.java index 87bd825..4d4c896 100644 --- a/sources/utils/VSTupel.java +++ b/sources/utils/VS3Tupel.java @@ -24,12 +24,12 @@ package utils; /** - * The class VSTupel, an object of this class represents a 3-Tupel of objects. + * The class VS3Tupel, an object of this class represents a 3-Tupel of objects. * Each object can have its own type. * * @author Paul C. Buetow */ -public final class VSTupel<A,B,C> { +public final class VS3Tupel<A,B,C> { /** The serial version uid */ private static final long serialVersionUID = 1L; @@ -49,7 +49,7 @@ public final class VSTupel<A,B,C> { * @param b the b * @param c the c */ - public VSTupel(A a, B b, C c) { + public VS3Tupel(A a, B b, C c) { this.a = a; this.b = b; this.c = c; |
