changed more stuff

This commit is contained in:
joss 2025-04-08 21:31:13 +02:00
parent cd9a49a19a
commit 29d3ec8268
8 changed files with 146 additions and 79 deletions

18
src/data/Group.java Normal file
View file

@ -0,0 +1,18 @@
package hsmw.jotto5.beleg.data;
import java.util.ArrayList;
/**
* Beschreibt eine Gruppe von DataObjects.
*
* Zwischen der Gruppe und ihrem "Inhalt" besteht eine m-zu-n-Beziehung:
* Ein DataObject kann in beliebig vielen Gruppen sein; genau so wie in
* einer Gruppe beliebig viele DataObjects sein können.
*/
public class Group extends DataObject {
public Group(String uid, String displayName) {
super(uid, displayName);
}
}