Class PropertyListView<T>

    • Constructor Detail

      • PropertyListView

        public PropertyListView​(String id)
        Construct without model, assume bound externally.
        Parameters:
        id - Wicket id
      • PropertyListView

        public PropertyListView​(String id,
                                IModel<? extends List<T>> model)
        Construct with a model.
        Parameters:
        id - Wicket id
        model - wrapping a List
      • PropertyListView

        public PropertyListView​(String id,
                                List<T> list)
        Construct with a "small," unmodeled List. The object can not be detached and will reside in the session, but is convenient for lists of a limited size.
        Parameters:
        id - Wicket id
        list - unmodeled List
    • Method Detail