Package dk.gtz.graphedit.viewmodel
Class TipContainer
java.lang.Object
dk.gtz.graphedit.viewmodel.TipContainer
Represents a container of tips that can be shown to the user via the Tip-of-the-day system.
-
Constructor Summary
ConstructorsConstructorDescriptionTipContainer
(List<Tip> tips) Creates a new tip container with the given tips. -
Method Summary
-
Constructor Details
-
TipContainer
Creates a new tip container with the given tips.- Parameters:
tips
- A list of tips
-
-
Method Details
-
get
Gets the tip at the given index.- Parameters:
index
- The index of the tip to get- Returns:
- The tip at the given index
- Throws:
IndexOutOfBoundsException
- If the index is out of bounds
-
add
Adds a tip to the container.- Parameters:
tip
- The tip to add
-
merge
Merges the given container with this container. All tips from the provided container will be appended to this one.- Parameters:
container
- The container to merge with
-
size
public int size()Gets the number of tips in the container.- Returns:
- The number of tips in the container
-