diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-12-07 12:22:07 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-12-07 12:22:07 +0100 |
| commit | c95abc31d62e296db4f1b537e3de440dd40defd1 (patch) | |
| tree | 45417635579e5a611aaee111be631ccceba78fed /Java-Kompendium/kap22/2/GenericClass.java | |
| parent | 5eded28b16a67fb3ef6bd1cce5526d4dc2de39ab (diff) | |
| download | book-exercises-c95abc31d62e296db4f1b537e3de440dd40defd1.tar.gz | |
Finish Java Kompendium book
Diffstat (limited to 'Java-Kompendium/kap22/2/GenericClass.java')
| -rw-r--r-- | Java-Kompendium/kap22/2/GenericClass.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Java-Kompendium/kap22/2/GenericClass.java b/Java-Kompendium/kap22/2/GenericClass.java new file mode 100644 index 0000000..0c659eb --- /dev/null +++ b/Java-Kompendium/kap22/2/GenericClass.java @@ -0,0 +1,7 @@ +public class GenericClass<T> { + public T value; + + public GenericClass(T value) { + this.value = value; + } +} |
