List Element hinzufügen

main
Andreas Wurst 2025-06-17 10:10:34 +02:00
commit aa622e304d
1 changed files with 17 additions and 0 deletions

17
ListElement.java 100644
View File

@ -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;
}