Class TipContainer

java.lang.Object
dk.gtz.graphedit.viewmodel.TipContainer

public class TipContainer extends Object
Represents a container of tips that can be shown to the user via the Tip-of-the-day system.
  • Constructor Details

    • TipContainer

      public TipContainer(List<Tip> tips)
      Creates a new tip container with the given tips.
      Parameters:
      tips - A list of tips
  • Method Details

    • get

      public Tip get(int index)
      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

      public void add(Tip tip)
      Adds a tip to the container.
      Parameters:
      tip - The tip to add
    • merge

      public void merge(TipContainer container)
      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