public interface Group
Modifier and Type | Method and Description |
---|---|
void |
addEntry(Entry entry)
Adds an Entry to this Group.
|
java.lang.String |
getComment()
Gets the comment for this Group
|
java.util.List<Entry> |
getEntries()
Gets all Entries of this Group.
|
java.lang.String |
getId()
Gets the id of this group.
|
void |
removeEntry(Entry entry)
Removes an Entry from this Group
|
void |
setComment(java.lang.String comment)
Sets this comment for this Group
|
void |
setId(java.lang.String id)
Sets the id of this group.
|
void setComment(java.lang.String comment)
comment
- the commentjava.lang.String getComment()
java.lang.String getId()
void setId(java.lang.String id)
id
- the new id of this Groupjava.util.List<Entry> getEntries()
void addEntry(Entry entry)
entry
- the Entry to be addedvoid removeEntry(Entry entry)
entry
- the Entry to be removed