ProjektGraph/OurApplication/OurDrawArea.java

60 lines
1.2 KiB
Java
Raw Normal View History

2024-07-02 19:13:30 +00:00
package OurApplication;
import graph.*;
2024-07-03 17:41:46 +00:00
import graph.Graph;
2024-07-02 19:13:30 +00:00
import logging.LogElementList;
import visualisation.DrawArea;
import visualizationElements.*;
import java.awt.*;
2024-07-02 22:46:21 +00:00
import java.util.Random;
2024-07-02 19:13:30 +00:00
import java.util.Vector;
/**
* This class provides an example for using visualization.DrawArea.
* @see logging.Algorithm
@author MSch<EFBFBD>fer
* DHBW Stuttgart/Campus Horb AI2008<br>
* <br>
*/
public class OurDrawArea extends DrawArea{
private static final long serialVersionUID = 1L;
private visualizationElements.Graph currentGraph;
2024-07-03 17:41:46 +00:00
2024-07-02 19:13:30 +00:00
/**
* Standard constructor.
*/
public OurDrawArea() {
super();
}
/**
* Creates a test draw area and sets the specified log list.
* @param logList the draw area's log list test log elements.
* @param drawAreaName The display name over the draw area.
*/
public OurDrawArea(LogElementList<OurLogElement> logList, String drawAreaName){
super(logList, drawAreaName);
}
2024-07-03 17:41:46 +00:00
public void setCurrentGraph(visualizationElements.Graph graph) {
2024-07-03 17:41:46 +00:00
this.currentGraph = graph;
}
2024-07-02 19:13:30 +00:00
/**
* Draws a visualization element.
*/
2024-07-02 22:46:21 +00:00
public void draw(Graphics g) {
2024-07-02 19:13:30 +00:00
2024-07-03 17:41:46 +00:00
OurLogElement logElement = (OurLogElement) logList.get();
logElement.getGraph().draw(g);
2024-07-02 19:13:30 +00:00
}
2024-07-03 17:41:46 +00:00
2024-07-02 19:13:30 +00:00
}