Skip to content

Instantly share code, notes, and snippets.

@mibrahimdev
Created May 29, 2018 18:00
Show Gist options
  • Save mibrahimdev/4454ea8890346eafbf1f117777c7a199 to your computer and use it in GitHub Desktop.
Save mibrahimdev/4454ea8890346eafbf1f117777c7a199 to your computer and use it in GitHub Desktop.
/**
* A ViewModel used for the {@link ChronoActivity2}.
*/
public class ChronometerViewModel extends ViewModel {
@Nullable private Long mStartTime;
@Nullable
public Long getStartTime() {
return mStartTime;
}
public void setStartTime(final long startTime) {
this.mStartTime = startTime;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment