Skip to content

Commit

Permalink
small fixes in javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
troy379 committed Feb 13, 2017
1 parent eddc40b commit 3b30ca3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Expand Up @@ -291,6 +291,8 @@ public OnDialogLongClickListener getOnLongItemClickListener() {

/**
* Register a callback to be invoked when item is long clicked.
*
* @param onLongItemClickListener on long click item callback
*/
public void setOnDialogLongClickListener(OnDialogLongClickListener<DIALOG> onLongItemClickListener) {
this.onLongItemClickListener = onLongItemClickListener;
Expand Down
Expand Up @@ -598,7 +598,7 @@ public interface OnMessageLongClickListener<MESSAGE extends IMessage> {

/**
* Configuration object for passing custom layouts and view holders into adapter.
* You need to pass it into {@link #MessagesListAdapter(String, HoldersConfig, ImageLoader)} to apply your changes.
* You need to pass it into {@link MessagesListAdapter#MessagesListAdapter(String, HoldersConfig, ImageLoader)} to apply your changes.
*/
public static class HoldersConfig {

Expand Down Expand Up @@ -733,13 +733,17 @@ public BaseMessageViewHolder(View itemView) {

/**
* Make message unselected
*
* @return weather is item selected.
*/
public boolean isSelected() {
return isSelected;
}

/**
* Getter for {@link #imageLoader}
*
* @return image loader interface.
*/
public ImageLoader getImageLoader() {
return imageLoader;
Expand Down

0 comments on commit 3b30ca3

Please sign in to comment.