Interface Decorator
-
- All Implemented Interfaces:
public interface DecoratorDecorator interface used to decorate the view holder.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceDecorator.TypeThe type of the decorator.
-
Method Summary
Modifier and Type Method Description abstract <T extends MessageListItem> Unitdecorate(BaseMessageItemViewHolder<T> viewHolder, T data)Decorates the view holder. abstract Decorator.TypegetType()The type of the decorator. -
-
Method Detail
-
decorate
abstract <T extends MessageListItem> Unit decorate(BaseMessageItemViewHolder<T> viewHolder, T data)
Decorates the view holder.
-
getType
abstract Decorator.Type getType()
The type of the decorator.
-
-
-
-