Freiwillige_Uebung/ListElement.java

18 lines
368 B
Java

/*
* 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;
}