mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
32b812c05c
Summary: This diff adds some basic tests that ensure all of the e2e test components can compile with the interface is implemented (we also have these tests for cxx) Reviewed By: JoshuaGross, mdvacca Differential Revision: D16378756 fbshipit-source-id: d0c6dc976c74f6a388068e66b9a2135bc4ce4652
44 lines
1.2 KiB
Java
44 lines
1.2 KiB
Java
package com.facebook.react.uimanager;
|
|
|
|
import android.view.ViewGroup;
|
|
import com.facebook.react.viewmanagers.FloatPropsNativeComponentDelegate;
|
|
import com.facebook.react.viewmanagers.FloatPropsNativeComponentInterface;
|
|
|
|
public class FloatPropsNativeComponentViewManager extends SimpleViewManager<ViewGroup>
|
|
implements FloatPropsNativeComponentInterface<ViewGroup> {
|
|
|
|
public static final String REACT_CLASS = "FloatPropsNativeComponentView";
|
|
|
|
@Override
|
|
public String getName() {
|
|
return REACT_CLASS;
|
|
}
|
|
|
|
private void test() {
|
|
FloatPropsNativeComponentDelegate delegate = new FloatPropsNativeComponentDelegate<ViewGroup>();
|
|
}
|
|
|
|
@Override
|
|
public ViewGroup createViewInstance(ThemedReactContext context) {
|
|
throw new IllegalStateException();
|
|
}
|
|
|
|
@Override
|
|
public void setBlurRadius(ViewGroup view, Float value) {}
|
|
|
|
@Override
|
|
public void setBlurRadius2(ViewGroup view, Float value) {}
|
|
|
|
@Override
|
|
public void setBlurRadius3(ViewGroup view, Float value) {}
|
|
|
|
@Override
|
|
public void setBlurRadius4(ViewGroup view, Float value) {}
|
|
|
|
@Override
|
|
public void setBlurRadius5(ViewGroup view, Float value) {}
|
|
|
|
@Override
|
|
public void setBlurRadius6(ViewGroup view, Float value) {}
|
|
}
|