Class ListContainer<T>

  • All Implemented Interfaces:
    Container<T>

    public class ListContainer<T>
    extends java.lang.Object
    implements Container<T>
    • Constructor Summary

      Constructors 
      Constructor Description
      ListContainer()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addContent​(T content)  
      java.util.List<T> getContents()  
      boolean isEmpty()  
      boolean isFull()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface org.processmining.specpp.componenting.delegators.Container

        isNonEmpty
    • Constructor Detail

      • ListContainer

        public ListContainer()
    • Method Detail

      • addContent

        public void addContent​(T content)
        Specified by:
        addContent in interface Container<T>
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface Container<T>
      • isFull

        public boolean isFull()
        Specified by:
        isFull in interface Container<T>
      • getContents

        public java.util.List<T> getContents()