static LiveValue mapLiveValue_f0(final F0 f, final Class type, final LiveValue lv) { ret new LiveValue() { public Class getType() { ret type; } public B get() { ret callF(f); } public void onChange(Runnable l) { lv.onChange(l); } public void removeChangeListener(Runnable l) { lv.removeChangeListener(l); } }; } static LiveValue mapLiveValue_f0(LiveValue lv, Class type, F0 f) { ret mapLiveValue_f0(f, type, lv); }