-
- All Implemented Interfaces:
public abstract class PresenterSelector
-
-
Field Summary
Fields Modifier and Type Field Description private final Array<Presenter>presenters
-
Constructor Summary
Constructors Constructor Description PresenterSelector()
-
Method Summary
Modifier and Type Method Description abstract Array<Presenter>getPresenters()Returns an array of all possible presenters. abstract PresentergetPresenter(Object item)Returns a presenter for the given item. -
-
Method Detail
-
getPresenters
abstract Array<Presenter> getPresenters()
Returns an array of all possible presenters. The returned array should not be modified.
-
getPresenter
abstract Presenter getPresenter(Object item)
Returns a presenter for the given item.
-
-
-
-