changed more stuff
This commit is contained in:
parent
cd9a49a19a
commit
29d3ec8268
8 changed files with 146 additions and 79 deletions
18
src/data/Group.java
Normal file
18
src/data/Group.java
Normal 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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue