Skip to content

Instantly share code, notes, and snippets.

@fredgrott
Created September 6, 2016 18:27
Show Gist options
  • Save fredgrott/09c4b114d78c80393ea887c04d893d9e to your computer and use it in GitHub Desktop.
Save fredgrott/09c4b114d78c80393ea887c04d893d9e to your computer and use it in GitHub Desktop.

Original code developed by Robert LaThanh Modifications by Fred Grott, all under Apache License 2.0 Copyright (C) 2016

The Taggable Interface for the simple adapter

public interface Taggable {

 void setTag(@Nullable Object tag);
 @Nullable
 Object getTag();

}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment