From aa622e304d48c12c596d3dda10704721ebfae7ce Mon Sep 17 00:00:00 2001 From: Andreas Wurst <1720808@stud.hs-mannheim.de> Date: Tue, 17 Jun 2025 10:10:34 +0200 Subject: [PATCH] =?UTF-8?q?List=20Element=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ListElement.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ListElement.java diff --git a/ListElement.java b/ListElement.java new file mode 100644 index 0000000..c74f244 --- /dev/null +++ b/ListElement.java @@ -0,0 +1,17 @@ +/* + * Created on 21.11.2003 + * + * To change the template for this generated file go to + * Window>Preferences>Java>Code Generation>Code and Comments + */ + +/** + * @author klaus + * + * To change the template for this generated type comment go to + * Window>Preferences>Java>Code Generation>Code and Comments + */ +public class ListElement { + int content; + ListElement next; +}