package testApplication; import logging.LogElementList; import visualization.TextArea; /** * This class provides an example for using visualization.TextArea. * Constructors and print() method have been overwritten. * @see visualization.TextArea * @author MSchäfer * DHBW Stuttgart/Campus Horb AI2008
*
*/ public class TestTextArea extends TextArea{ private static final long serialVersionUID = 1L; /** * Standard constructor. */ public TestTextArea() { super(); } /** * Extended constructor. * Sets LogElementList of TestLogElements as log list. * @param logList the text area's log element list. */ public TestTextArea(LogElementListlogList){ super(logList); } /** * Textual output of a log element. * No output. */ public boolean print(){ return true; } }