import OurApplication.*; import graph.EdgeMarking; import graph.MarkedEdge; import graph.MarkedVertex; import graph.VertexMarking; import visualisation.*; import logging.*; import visualisation.TextArea; import javax.swing.*; import java.awt.*; public class Main { public static void main(String[] args){ JFrame t = new JFrame("Hallo"); JPanel contentPane = new JPanel(new GridLayout()); t.setSize(900, 900); t.setContentPane(contentPane); LogElementListlogList=new LogElementList(); OurParameterArea parameterArea=new OurParameterArea(); OurDrawArea drawArea=new OurDrawArea(logList,"visualizationTest"); OurTextArea textArea=new OurTextArea(logList); OurAlgorithm algorithm=new OurAlgorithm(parameterArea); OurLegendArea legendArea=new OurLegendArea(); HybridWindow test = new HybridWindow(drawArea,textArea,parameterArea,algorithm,logList,legendArea); test.init(); contentPane.add(test); t.setVisible(true); } }