Interface ListRowView<T>



  • public interface ListRowView<T>
    ListRowView is an interface to allow for the generic definition of a behaviour for List View elements
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void bind(T t)
      Bind is called to bind data from a model with the list view item itself
      View getView()
      Get the instance of a list item view to be presented in the list
    • Method Detail

      • bind

        void bind(T t)
        Bind is called to bind data from a model with the list view item itself
        Parameters:
        t - Type t of the model to be bound with the view item
      • getView

        View getView()
        Get the instance of a list item view to be presented in the list
        Returns:
        View instance to be used in the list