Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stfalconaleks/62b2d8214cef6a5a367fe7cce007dfb5 to your computer and use it in GitHub Desktop.
Save stfalconaleks/62b2d8214cef6a5a367fe7cce007dfb5 to your computer and use it in GitHub Desktop.
public final ObservableField<String> field = new ObservableField<String>() {
@Override
public String get() {
// TODO: your logic
return super.get();
}
@Override
public void set(String value) {
// TODO: your logic
super.set(value);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment