Interface Adder<T,​U>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void add​(T destination, U object)
      Adds the specified object to the specified destination.
    • Method Detail

      • add

        void add​(T destination,
                 U object)
        Adds the specified object to the specified destination. Implementors are responsible for how this will actually occur, the location of the added object etc.
        Parameters:
        destination - the destination to add the object to.
        object - the object to add.