mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Update java prop file names to include ViewManager
Summary: Changes the java props class and file names to include "ViewManager" as in: - ExampleViewManagerInterface - ExampleViewManagerDelegate Reviewed By: JoshuaGross, makovkastar Differential Revision: D16418965 fbshipit-source-id: f8b2f8fe4145c0ada9dc7c5234fcc41935783374
This commit is contained in:
committed by
Facebook Github Bot
parent
ac21f04532
commit
e9af5726c5
+5
-5
@@ -1,11 +1,11 @@
|
||||
package com.facebook.react.uimanager;
|
||||
|
||||
import android.view.ViewGroup;
|
||||
import com.facebook.react.viewmanagers.IntegerPropNativeComponentDelegate;
|
||||
import com.facebook.react.viewmanagers.IntegerPropNativeComponentInterface;
|
||||
import com.facebook.react.viewmanagers.IntegerPropNativeComponentViewManagerDelegate;
|
||||
import com.facebook.react.viewmanagers.IntegerPropNativeComponentViewManagerInterface;
|
||||
|
||||
public class IntegerPropNativeComponentViewManager extends SimpleViewManager<ViewGroup>
|
||||
implements IntegerPropNativeComponentInterface<ViewGroup> {
|
||||
implements IntegerPropNativeComponentViewManagerInterface<ViewGroup> {
|
||||
|
||||
public static final String REACT_CLASS = "IntegerPropNativeComponentView";
|
||||
|
||||
@@ -15,8 +15,8 @@ public class IntegerPropNativeComponentViewManager extends SimpleViewManager<Vie
|
||||
}
|
||||
|
||||
private void test() {
|
||||
IntegerPropNativeComponentDelegate delegate =
|
||||
new IntegerPropNativeComponentDelegate<ViewGroup>();
|
||||
IntegerPropNativeComponentViewManagerDelegate delegate =
|
||||
new IntegerPropNativeComponentViewManagerDelegate<ViewGroup>();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user