package testApplication;
import logging.LogElementList;
import logging.NewLogElement;
import visualization.HybridWindow;
/**
* This class provides an example for using visualization.HybridWindow.
* Overwriting the constructor is necessary to run as an applet.
* For running as an application overwriting the constructor is not necessary
* @see visualization.HybridWindow
* @see testApplication.TestApplication
* @author MSch�fer
* DHBW Stuttgart/Campus Horb AI2008
*
*/
public class TestHybridWindow extends HybridWindow{
/**
* Overwritten standard constructor.
* Creates a TestUpHybridWindow with
* TestParameterArea,SumUpLegendArea, TestDrawArea, TestTextArea,
* TestAlgorithm and a LogElementList of TestLogElements.
*/
public TestHybridWindow() {
super();
logList=new LogElementList();
parameterArea=new TestParameterArea();
drawArea=new TestDrawArea(logList,"visualization");
textArea=new TestTextArea(logList);
legendArea=new TestLegendArea();
algorithm=new TestAlgorithm((TestParameterArea)parameterArea);
}
}