mirror of
https://codeberg.org/qg-info-unterricht/zpg-graphentester.git
synced 2026-03-24 20:48:26 +01:00
17 lines
No EOL
323 B
Java
17 lines
No EOL
323 B
Java
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);
|
|
} |