Initial commit

This commit is contained in:
ngb
2021-10-03 22:59:52 +02:00
commit 6559ef501d
13 changed files with 1223 additions and 0 deletions

13
SelectionListener.java Normal file
View File

@@ -0,0 +1,13 @@
/**
* Listener-INterface, um auf Änderungen der Auswahlboxen im GUI zu reagieren.
*/
public interface SelectionListener {
/**
* Wird aufgerufen, wenn sich die Auswahl ändert.
* @param pList Name der Auswahlbox
* @param pNewValue Neuer Wert
*/
public void selectionChanged(String pList, String pNewValue );
}