First Commit (Fobi)

This commit is contained in:
Frank Schiebel 2021-07-12 14:04:20 +02:00
commit 2bff291a51
336 changed files with 88781 additions and 0 deletions

16
graph/GraphElement.java Normal file
View file

@ -0,0 +1,16 @@
package graph;
/**
* Die Klasse GraphElement ist eine Oberklasse von Knoten und Kanten.
* Sie ist nur für die interne Verarbeitung wichtig.
*
* @author Thomas Schaller
* @version v1.1
*/
public abstract class GraphElement implements Comparable<GraphElement>
{
public abstract int compareTo(GraphElement e);
public abstract String getStatus();
public abstract void setStatus(String status);
}