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

17
graph/Hilfe.java Normal file
View file

@ -0,0 +1,17 @@
package graph;
public interface Hilfe {
public abstract void loescheAlles();
public abstract void append(String text);
public void indentMore() ;
public void indentLess() ;
public void setGraphPlotter(GraphPlotter gp);
public void setReviewAllowed(boolean a);
}