Skip to content

Instantly share code, notes, and snippets.

@jshvarts
Created July 1, 2017 23:21
Show Gist options
  • Save jshvarts/8d0d78c27eac6e54ced3341dc5c16982 to your computer and use it in GitHub Desktop.
Save jshvarts/8d0d78c27eac6e54ced3341dc5c16982 to your computer and use it in GitHub Desktop.
import android.arch.lifecycle.ViewModel;
public class ClickCounterViewModel extends ViewModel {
private int count;
public void setCount(int count) {
this.count = count;
}
public int getCount() {
return count;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment